/* FrateZone marketing site — brand tokens mirrored from src/styles.css */

:root {
  --fz-blue-50:  #E6F1F9;
  --fz-blue-100: #C3DCEE;
  --fz-blue-200: #87BADE;
  --fz-blue-500: #0F75BD;
  --fz-blue-700: #0B588E;
  --fz-blue-900: #083B5F;

  --fz-orange-50:  #FEF4E8;
  --fz-orange-100: #FDE4C7;
  --fz-orange-200: #FBCA8E;
  --fz-orange-500: #F7941D;
  --fz-orange-700: #B96F16;
  --fz-orange-900: #7C4A0F;

  --fz-gray-50:  #F5F6F7;
  --fz-gray-100: #E8EAED;
  --fz-gray-300: #C7CBD1;
  --fz-gray-500: #8A9099;
  --fz-gray-700: #4B535C;
  --fz-gray-900: #1E242B;

  --fz-status-green: #1D9E75;
  --fz-status-amber: #F7941D;
  --fz-status-red:   #E24B4A;

  --display: "Poppins", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;

  --shell: 1180px;
  --radius: 10px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--fz-gray-900);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; margin: 0; }
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.35rem); }
h3 { font-size: 1.15rem; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
a { color: var(--fz-blue-500); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

:focus-visible { outline: 2px solid var(--fz-orange-500); outline-offset: 3px; border-radius: 4px; }

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- eyebrow: the recurring structural device ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fz-blue-500);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
}
.eyebrow::after { content: ""; flex: 1; height: 1px; background: var(--fz-gray-100); }
.eyebrow--onblue { color: var(--fz-blue-200); }
.eyebrow--onblue::after { background: rgba(255,255,255,.16); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { display: none; }

/* ---------- nav ---------- */
.nav { border-bottom: 1px solid var(--fz-gray-100); background: rgba(255,255,255,.92); backdrop-filter: blur(8px); position: sticky; top: 0; z-index: 40; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav__brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--fz-gray-900); }
.nav__brand:hover { text-decoration: none; }
.nav__mark { width: 26px; height: 26px; border-radius: 50%; background: var(--fz-blue-500); position: relative; flex: none; }
.nav__mark::after { content: ""; position: absolute; inset: 7px 3px auto auto; width: 8px; height: 8px; border-radius: 50%; background: var(--fz-orange-500); }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { color: var(--fz-gray-700); font-size: 14.5px; font-weight: 500; }
.nav__links a:hover { color: var(--fz-blue-500); text-decoration: none; }
.nav__links a[aria-current="page"] { color: var(--fz-blue-500); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
@media (max-width: 900px) { .nav__links { display: none; } }

/* mobile nav (hamburger) */
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: 6px; flex-direction: column; gap: 5px; flex: none; }
.nav__toggle-bar { display: block; width: 22px; height: 2px; background: var(--fz-gray-900); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav__mobile { display: none; flex-direction: column; padding: 6px 24px 16px; border-top: 1px solid var(--fz-gray-100); background: rgba(255,255,255,.98); }
.nav__mobile a { color: var(--fz-gray-900); font-size: 15px; font-weight: 500; padding: 12px 0; border-bottom: 1px solid var(--fz-gray-50); }
.nav__mobile a:last-child { border-bottom: 0; }
.nav__mobile a:hover { color: var(--fz-blue-500); text-decoration: none; }
.nav__mobile a[aria-current="page"] { color: var(--fz-blue-500); }
@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__cta { margin-left: auto; }
  .nav__cta .link-quiet { display: none; }
  .nav.is-open .nav__mobile { display: flex; }
  .nav.is-open .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav__toggle-bar:nth-child(2) { opacity: 0; }
  .nav.is-open .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--body); font-weight: 600; font-size: 14.5px; padding: 11px 20px; border-radius: var(--radius); border: 1px solid transparent; cursor: pointer; transition: transform .12s ease, background .15s ease; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--fz-orange-500); color: var(--fz-orange-900); }
.btn--primary:hover { background: var(--fz-orange-200); }
.btn--blue { background: var(--fz-blue-500); color: #fff; }
.btn--blue:hover { background: var(--fz-blue-700); }
.btn--ghost { border-color: var(--fz-gray-300); color: var(--fz-gray-900); background: #fff; }
.btn--ghost:hover { border-color: var(--fz-blue-500); color: var(--fz-blue-500); }
.btn--onblue { border-color: rgba(255,255,255,.35); color: #fff; background: transparent; }
.btn--onblue:hover { background: rgba(255,255,255,.1); }
.btn--lg { padding: 14px 26px; font-size: 15.5px; }
.btn--full { width: 100%; }
.link-quiet { color: var(--fz-gray-700); font-size: 14.5px; font-weight: 500; }

/* ---------- hero ---------- */
.hero { background: var(--fz-blue-900); color: #fff; }
.hero__grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: 56px; align-items: center; padding-top: 84px; padding-bottom: 76px; }
.hero h1 { color: #fff; }
.hero__lede { color: var(--fz-blue-100); font-size: 1.08rem; max-width: 46ch; margin-top: 18px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero__fine { font-family: var(--mono); font-size: 11.5px; color: var(--fz-blue-200); margin-top: 16px; letter-spacing: .02em; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; padding-bottom: 56px; } }

/* ---------- the signature: live shipment panel ---------- */
.panel { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.14); border-radius: 16px; padding: 16px; }
.panel__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.panel__ref { font-family: var(--mono); font-size: 12px; color: var(--fz-blue-100); letter-spacing: .04em; }
.pill { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px; letter-spacing: .02em; white-space: nowrap; }
.pill--green { background: rgba(29,158,117,.18); color: #7EDCBB; }
.pill--red { background: rgba(226,75,74,.18); color: #F5A9A8; }
.pill--transit { background: var(--fz-blue-500); color: #fff; display: inline-flex; align-items: center; gap: 5px; }
.pill--delayed { background: var(--fz-orange-500); color: var(--fz-orange-900); display: inline-flex; align-items: center; gap: 5px; }
.panel__map { margin: 14px 0 12px; border-radius: 10px; background: var(--fz-blue-700); overflow: hidden; }
.panel__map svg { display: block; width: 100%; height: auto; }
.panel__foot { display: flex; justify-content: space-between; gap: 12px; font-family: var(--mono); font-size: 11px; color: var(--fz-blue-200); }

.vessel { animation: sail 9s ease-in-out infinite alternate; }
@keyframes sail { from { transform: translateX(0); } to { transform: translateX(9px); } }

/* ---------- trust bar ---------- */
.trust { border-bottom: 1px solid var(--fz-gray-100); background: var(--fz-gray-50); }
.trust__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 0; flex-wrap: wrap; }
.trust__label { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--fz-gray-500); }
.trust__logos { display: flex; gap: 30px; flex-wrap: wrap; }
.trust__logos span { font-family: var(--display); font-weight: 600; font-size: 14px; color: var(--fz-gray-500); }

/* ---------- sections ---------- */
.section { padding: 88px 0; }
.section--tint { background: var(--fz-gray-50); border-block: 1px solid var(--fz-gray-100); }
.section--blue { background: var(--fz-blue-900); color: #fff; }
.section--blue h2, .section--blue h3 { color: #fff; }
.section--blue p { color: var(--fz-blue-100); }
.section__head { max-width: 62ch; margin-bottom: 44px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__head--center .eyebrow::after { display: none; }
.section__head p { color: var(--fz-gray-700); font-size: 1.05rem; margin-top: 14px; }

.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 680px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card { background: #fff; border: 1px solid var(--fz-gray-100); border-radius: 14px; padding: 26px; }
.card--flat { background: var(--fz-gray-50); border-color: transparent; }
.card__icon { width: 38px; height: 38px; border-radius: 9px; background: var(--fz-blue-50); color: var(--fz-blue-500); display: grid; place-items: center; margin-bottom: 16px; }
.card__icon svg { width: 19px; height: 19px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--fz-gray-700); font-size: 14.6px; margin: 0; }
.card--blue { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); }
.card--blue p { color: var(--fz-blue-100); }

/* numbered steps — order carries meaning here */
.step { display: flex; gap: 18px; }
.step__n { font-family: var(--mono); font-size: 12px; color: var(--fz-orange-700); background: var(--fz-orange-50); border-radius: 8px; width: 32px; height: 32px; display: grid; place-items: center; flex: none; font-weight: 600; }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--fz-gray-700); font-size: 14.6px; margin: 0; }

/* chokepoint strip */
.choke { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); border-radius: 12px; overflow: hidden; }
.choke__cell { background: var(--fz-blue-900); padding: 18px; }
.choke__name { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--fz-blue-200); }
.choke__status { display: flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 14px; font-weight: 500; color: #fff; }
.dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.dot--green { background: var(--fz-status-green); }
.dot--amber { background: var(--fz-status-amber); }
.dot--red { background: var(--fz-status-red); }

/* ---------- pricing ---------- */
.packs { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 14px; align-items: stretch; }
@media (max-width: 1050px) { .packs { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .packs { grid-template-columns: 1fr; } }
.pack { border: 1px solid var(--fz-gray-100); border-radius: 14px; padding: 24px 20px; display: flex; flex-direction: column; background: #fff; position: relative; }
.pack--pop { border: 2px solid var(--fz-orange-500); }
.pack__badge { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--fz-orange-500); color: var(--fz-orange-900); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.pack__name { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--fz-gray-500); }
.pack__price { font-family: var(--display); font-size: 1.9rem; font-weight: 600; letter-spacing: -0.03em; margin-top: 12px; }
.pack__qty { font-size: 14px; color: var(--fz-gray-900); margin-top: 2px; }
.pack__unit { font-family: var(--mono); font-size: 11.5px; color: var(--fz-gray-500); margin-top: 4px; }
.pack__save { align-self: flex-start; margin-top: 12px; font-size: 11.5px; font-weight: 600; color: var(--fz-status-green); background: rgba(29,158,117,.1); padding: 3px 8px; border-radius: 6px; }
.pack__spacer { flex: 1; min-height: 20px; }

.included { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 16px; margin-top: 36px; }
.included div { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--fz-gray-700); }
.included svg { width: 17px; height: 17px; color: var(--fz-blue-500); flex: none; }

/* ---------- faq ---------- */
.faq { border-top: 1px solid var(--fz-gray-100); }
.faq details { border-bottom: 1px solid var(--fz-gray-100); padding: 20px 0; }
.faq summary { cursor: pointer; font-family: var(--display); font-weight: 600; font-size: 1.02rem; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--fz-blue-500); font-weight: 400; font-size: 1.35rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 12px 0 0; color: var(--fz-gray-700); font-size: 15px; max-width: 74ch; }

/* ---------- quote ---------- */
.quote { max-width: 62ch; margin: 0 auto; text-align: center; }
.quote blockquote { font-family: var(--display); font-weight: 500; font-size: clamp(1.2rem, 2.1vw, 1.6rem); line-height: 1.45; letter-spacing: -0.02em; margin: 0; }
.quote cite { display: block; margin-top: 18px; font-style: normal; font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--fz-gray-500); }

/* ---------- closing cta ---------- */
.cta { background: var(--fz-blue-500); color: #fff; text-align: center; padding: 84px 0; }
.cta h2 { color: #fff; }
.cta p { color: var(--fz-blue-50); max-width: 48ch; margin: 14px auto 30px; }

/* ---------- forms ---------- */
.form { display: grid; gap: 16px; max-width: 520px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: 15px; padding: 11px 13px; border: 1px solid var(--fz-gray-300); border-radius: var(--radius); background: #fff; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--fz-blue-500); outline: none; box-shadow: 0 0 0 3px var(--fz-blue-50); }
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- footer ---------- */
.footer { background: var(--fz-gray-900); color: var(--fz-gray-300); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { font-size: 12px; font-family: var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--fz-gray-500); font-weight: 500; margin-bottom: 16px; }
.footer p { font-size: 14px; line-height: 1.7; color: var(--fz-gray-300); max-width: 40ch; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: var(--fz-gray-300); font-size: 14px; }
.footer a:hover { color: #fff; }
.footer__brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 600; color: #fff; margin-bottom: 14px; }
.footer__bar { border-top: 1px solid rgba(255,255,255,.09); padding: 20px 0; font-size: 12.5px; color: var(--fz-gray-500); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- misc page bits ---------- */
.page-head { background: var(--fz-blue-900); color: #fff; padding: 76px 0 68px; }
.page-head h1 { color: #fff; max-width: 20ch; }
.page-head p { color: var(--fz-blue-100); max-width: 58ch; font-size: 1.05rem; margin-top: 16px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.prose p { color: var(--fz-gray-700); max-width: 66ch; }
.rolelist { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.rolelist li { display: flex; gap: 10px; font-size: 14.8px; color: var(--fz-gray-700); }
.rolelist svg { width: 17px; height: 17px; color: var(--fz-status-green); flex: none; margin-top: 4px; }
.stat { font-family: var(--display); font-size: 2.2rem; font-weight: 600; letter-spacing: -.03em; color: var(--fz-blue-500); }
.stat + p { font-size: 14px; color: var(--fz-gray-700); margin-top: 4px; }

/* ---------- corrections ---------- */

/* logo sizing — the wordmark carries a tagline, it needs room */
.nav__logo { height: 46px; width: auto; display: block; }
.footer__logo { height: 46px; width: auto; display: block; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 18px; }
@media (max-width: 520px) { .nav__logo { height: 34px; } }
.nav__inner { height: 80px; }

/* text on the blue sections — these must beat .section__head p */
.section--blue .section__head p,
.section--blue p { color: var(--fz-blue-100); }
.section--blue .eyebrow { color: var(--fz-blue-200); }
.section--blue .eyebrow::after { background: rgba(255,255,255,.18); }
.section--blue .note { color: var(--fz-blue-200); }
.page-head .eyebrow { color: var(--fz-blue-200); }
.page-head .eyebrow::after { background: rgba(255,255,255,.18); }

/* cards whose CTA must sit on a common baseline */
.card--stack { display: flex; flex-direction: column; }
.card--stack .card__spacer { flex: 1; min-height: 22px; }

/* footer social */
.footer__social { display: inline-flex; align-items: center; gap: 9px; }
.footer__social svg { width: 17px; height: 17px; flex: none; }
.footer__social:hover { text-decoration: none; }

/* 404 */
.page-head--center { text-align: center; }
.page-head--center h1 { margin-inline: auto; }
.page-head--center p { margin-inline: auto; }
.page-head__actions { display: flex; justify-content: center; margin-top: 28px; }

/* logo scale — matches the live site's optical size */
.nav__inner { height: 92px; }
.nav__logo { width: 200px; height: auto; }
.footer__logo { width: 200px; height: auto; margin-bottom: 20px; }
@media (max-width: 900px) { .nav__inner { height: 76px; } .nav__logo { width: 158px; } }

/* logo: slightly smaller, more breathing room above and below */
.nav__inner { height: 104px; }
.nav__logo { width: 168px; height: auto; padding: 6px 0; }
.footer__logo { width: 168px; height: auto; margin-bottom: 20px; }
@media (max-width: 900px) { .nav__inner { height: 84px; } .nav__logo { width: 140px; } }

/* ---------- trust bar: real logos ---------- */
.trust__label { text-align: center; margin: 0 0 22px; }
.trust__logos { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.logo-chip { display: inline-flex; align-items: center; justify-content: center; height: 62px; padding: 0 8px; background: #fff; border: 1px solid var(--fz-gray-100); border-radius: 12px; }
.logo-chip img { height: 62px; width: auto; display: block; }
@media (max-width: 640px) { .logo-chip, .logo-chip img { height: 50px; } }

/* ---------- testimonials ---------- */
.tgrid { gap: 20px; }
.tcard { background: #fff; border: 1px solid var(--fz-gray-100); border-radius: 16px; padding: 28px; margin: 0; display: flex; flex-direction: column; }
.tcard blockquote { margin: 0 0 18px; font-family: var(--display); font-weight: 500; font-size: 15.5px; line-height: 1.5; letter-spacing: -0.01em; color: var(--fz-gray-900); }
.tcard blockquote::before { content: "\201C"; color: var(--fz-orange-500); font-family: var(--display); font-weight: 600; margin-right: 2px; }
.tcard blockquote::after { content: "\201D"; color: var(--fz-orange-500); font-family: var(--display); font-weight: 600; margin-left: 1px; }
.tcard figcaption { margin-top: auto; display: flex; flex-direction: column; gap: 3px; padding-top: 6px; border-top: 1px solid var(--fz-gray-100); }
.trole { font-family: var(--display); font-weight: 500; font-size: 13px; color: var(--fz-gray-600); line-height: 1.35; }
.torg { font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--fz-gray-900); line-height: 1.35; }
.tname { font-family: var(--mono); font-size: 11px; letter-spacing: .03em; color: var(--fz-gray-400); line-height: 1.4; }

/* ---------- logo marquee (white band) ---------- */
.marquee { background: #fff; padding: 64px 0 68px; border-bottom: 1px solid var(--fz-gray-100); overflow: hidden; }
.marquee__title { text-align: center; color: var(--fz-blue-900); font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 44px; }
.marquee__viewport { position: relative; width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; align-items: center; gap: 76px; width: max-content; animation: marquee 30s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: running; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; gap: 48px 76px; } .marquee__viewport { mask-image: none; -webkit-mask-image: none; } }
.mchip { flex: none; display: flex; align-items: center; justify-content: center; height: 58px; }
.mchip img { height: 58px; width: auto; display: block; }
.mchip--dark { background: #3C4159; border-radius: 12px; padding: 8px 20px; height: 62px; }
.mchip--dark img { height: 46px; }
@media (max-width: 640px) { .mchip, .mchip img { height: 46px; } .mchip--dark { height: 50px; } .mchip--dark img { height: 36px; } .marquee__track { gap: 52px; } }

/* RW wordmark reads too large at equal height — scale it down to sit with the others */
.mchip--rw img { height: 30px; }
@media (max-width: 640px) { .mchip--rw img { height: 24px; } }
/* =========================================================================
   INSIGHTS — article + index typography.
   Appended by the insights project. Everything above this line is a copy of
   the marketing site's inline <style> block; do not hand-edit it, re-copy it
   (see tools/sync-css.py).
   ========================================================================= */

.fz-breadcrumb { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--fz-blue-200); margin-bottom: 20px; }
.fz-breadcrumb a { color: var(--fz-blue-200); text-decoration: none; }
.fz-breadcrumb a:hover { color: #fff; }
.fz-breadcrumb span { opacity: .5; margin: 0 6px; }

.fz-post-meta { font-family: var(--mono); font-size: 12px; letter-spacing: .06em; color: var(--fz-blue-100); margin-top: 18px; }
.fz-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 20px 0 0; }
.fz-tags li { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--fz-blue-100); border: 1px solid rgba(255,255,255,.24); border-radius: 999px; padding: 5px 11px; }

/* article body
   Container is 760px because that is the width every inline chart declares for
   itself (max-width:760px on the <figure>). Prose is held to a 66ch measure
   inside it; figures override back to the full 760. */
.fz-post-body { max-width: 760px; margin: 0 auto; }
/* Prose spans the full 760px so its right edge lines up with the chart figures,
   which all declare max-width:760px. Previously prose was held to a 66ch
   measure (~610px), leaving the text ending ~150px short of every chart's right
   edge. */
.fz-post-body > * { max-width: 100%; }
.fz-post-body p { color: var(--fz-gray-700); font-size: 1.05rem; line-height: 1.72; margin: 0 0 24px; }
.fz-post-body h2 { font-family: var(--display); font-size: 1.6rem; line-height: 1.3; color: var(--fz-gray-900); margin: 52px 0 18px; }
.fz-post-body h3 { font-family: var(--display); font-size: 1.22rem; color: var(--fz-gray-900); margin: 38px 0 14px; }
.fz-post-body ul, .fz-post-body ol { color: var(--fz-gray-700); line-height: 1.72; margin: 0 0 24px; padding-left: 22px; }
.fz-post-body li { margin-bottom: 10px; }
.fz-post-body a { color: var(--fz-blue-500); text-underline-offset: 3px; }
.fz-post-body a:hover { color: var(--fz-blue-700); }
.fz-post-body strong { color: var(--fz-gray-900); }
.fz-post-body blockquote { border-left: 3px solid var(--fz-orange-500); margin: 32px 0; padding: 4px 0 4px 22px; color: var(--fz-gray-900); font-size: 1.1rem; }
.fz-post-body hr { border: 0; border-top: 1px solid var(--fz-gray-100); margin: 44px 0; }
.fz-post-body img { max-width: 100%; height: auto; border-radius: var(--radius); }

/* Inline chart figures.
   They are fully self-styled (inline CSS, their own padding and background), so
   the ONLY things applied here are the outer frame and the spacing.
   Do NOT style their inner elements. An earlier `figure > div` border rule drew
   a box around every top-level div — which, in charts built from several
   top-level divs (accent bar, eyebrow, title, subtitle, source), boxed each
   fragment separately. The frame belongs on the figure itself. */
.fz-post-body > figure {
  margin: 40px 0 48px;
  max-width: 100%;              /* beats the 66ch prose measure above */
  border: 1px solid var(--fz-gray-100);
  border-radius: var(--radius);
  overflow: hidden;
}

.fz-post-hero { margin: 0 0 40px; }
.fz-post-hero img { width: 100%; height: auto; border-radius: var(--radius); }

/* end-of-article CTA */
.fz-post-cta { max-width: 66ch; margin: 64px auto 0; background: var(--fz-blue-900); color: #fff; border-radius: var(--radius); padding: 36px; }
.fz-post-cta h2 { font-family: var(--display); color: #fff; margin: 0 0 10px; font-size: 1.35rem; }
.fz-post-cta p { color: var(--fz-blue-100); margin: 0 0 22px; }

/* index listing — image on top, text below */
.fz-insight-featured {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; align-items: stretch;
  text-decoration: none; border: 1px solid var(--fz-gray-100); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 44px; background: #fff;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.fz-insight-featured:hover { border-color: var(--fz-blue-200); box-shadow: 0 10px 34px rgba(8,59,95,.10); transform: translateY(-2px); }
.fz-insight-featured__media { background: var(--fz-gray-50); overflow: hidden; }
.fz-insight-featured__media img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; display: block; }
.fz-insight-featured__body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.fz-insight-featured h2 { font-family: var(--display); font-size: 1.55rem; line-height: 1.28; color: var(--fz-gray-900); margin: 0 0 14px; }
.fz-insight-featured p { color: var(--fz-gray-700); margin: 0 0 20px; line-height: 1.65; }

.fz-insight-featured time, .fz-insight-card time {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--fz-blue-500); display: block; margin-bottom: 12px;
}
.fz-readmore { font-family: var(--mono); font-size: 12px; letter-spacing: .08em; color: var(--fz-orange-700); }

.fz-insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.fz-insight-card {
  display: flex; flex-direction: column; text-decoration: none; background: #fff;
  border: 1px solid var(--fz-gray-100); border-radius: var(--radius); overflow: hidden;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.fz-insight-card:hover { border-color: var(--fz-blue-200); box-shadow: 0 10px 34px rgba(8,59,95,.10); transform: translateY(-2px); }
.fz-insight-card__media { background: var(--fz-gray-50); aspect-ratio: 16 / 9; overflow: hidden; }
.fz-insight-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fz-insight-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.fz-insight-card h3 { font-family: var(--display); font-size: 1.05rem; line-height: 1.35; color: var(--fz-gray-900); margin: 0 0 10px; }
.fz-insight-card p { color: var(--fz-gray-700); font-size: .92rem; line-height: 1.6; margin: 0; }

/* fallback when a post has no featured image */
.fz-insight-noimg { width: 100%; height: 100%; min-height: 200px; background: linear-gradient(135deg, var(--fz-blue-900), var(--fz-blue-700)); }

@media (max-width: 900px) {
  .fz-insight-grid { grid-template-columns: repeat(2, 1fr); }
  .fz-insight-featured { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .fz-insight-grid { grid-template-columns: 1fr; }
  .fz-post-body h2 { font-size: 1.35rem; }
  .fz-post-cta { padding: 26px; }
}
