/* =========================================================================
   Telco QA Hub — "editorial journal on warm cream paper"
   Warm cream canvas · two-blue system (ink-navy weight + electric cobalt
   action) · sans headlines with a serif-italic accent phrase (the signature)
   · cream hairline borders · 16px cards · 100px pill buttons · flat, no glow.
   ========================================================================= */

:root {
  --canvas:  #f6f3f1;
  --paper:   #ffffff;
  --cream:   #f0e9e1;   /* warm hairline borders — never gray */
  --navy:    #0c1754;   /* editorial weight: headings, dark cards, footer */
  --cobalt:  #2545ff;   /* the one action color */
  --cobalt-ink:#1c37d6;
  --accent-blue-deep:#4657a4;
  --accent-blue-light:#687cf0;
  --charcoal:#171417;
  --graphite:#222222;
  --stone:   #6d6a6d;
  --smoke:   #cccccc;
  --lavender:#eaebf8;

  --font-sans:    "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: "Manrope", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-serif:   "Source Serif 4", Georgia, "Times New Roman", serif;

  --wrap: 1200px;
  --pad: clamp(20px, 5vw, 40px);
  --gap: clamp(76px, 9vw, 116px);
  --ease: cubic-bezier(0.33, 0, 0.2, 1);
  --spring: cubic-bezier(0.32, 0.72, 0, 1);

  /* Vertical rhythm scale — one value per relationship, applied site-wide */
  --rhythm-eyebrow: 20px;   /* eyebrow / pill → heading */
  --rhythm-lead:    22px;   /* heading → lead paragraph */
  --rhythm-actions: 28px;   /* lead → buttons / bullet list */
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--canvas);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.ital {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 1.16em;
  line-height: 0.88;
  color: transparent;
  letter-spacing: -0.025em;
  background: linear-gradient(110deg, var(--accent-blue-deep) 0%, var(--accent-blue-light) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.skip-link { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 100px; }
.skip-link:focus { left: 12px; top: 12px; }

/* =========================================================================
   Type
   ========================================================================= */
.eyebrow { font-family: var(--font-sans); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--charcoal); }
.eyebrow--ruled {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-bottom: var(--rhythm-eyebrow);
  color: var(--accent-blue-deep);
  text-align: center;
}
.eyebrow--ruled::before,
.eyebrow--ruled::after {
  content: "";
  width: 44px;
  height: 1.5px;
  flex: 0 0 44px;
  background: var(--accent-blue-deep);
}
.display { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.4rem, 5.4vw, 4rem); line-height: 1.06; letter-spacing: -0.025em; color: var(--charcoal); text-wrap: balance; }
.h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 3.8vw, 3rem); line-height: 1.1; letter-spacing: -0.025em; color: var(--charcoal); text-wrap: balance; }
.h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; line-height: 1.2; letter-spacing: -0.02em; text-wrap: balance; }
.lead { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.6; color: var(--graphite); text-wrap: pretty; }
/* Tabular figures so digits align in columns across all data displays */
.stat__num, .calc-table, .savings-result, .gauge__val b, .vetting-evidence__score b, .quality-signal { font-variant-numeric: tabular-nums; }
.section__lead-ital { font-family: var(--font-serif); font-style: italic; font-weight: 600; }

/* =========================================================================
   Buttons — pills, cobalt is the only fill
   ========================================================================= */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5em; font-family: var(--font-sans); font-size: 15px; font-weight: 500; line-height: 1; white-space: nowrap; border-radius: 100px; padding: 14px 28px; border: 1.5px solid transparent; transition: transform 0.35s var(--spring), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.35s var(--spring); }
.btn:active { transform: scale(0.97); }
/* Keyboard-visible focus ring on all primary controls */
a:focus-visible, button:focus-visible, .btn:focus-visible { outline: 2px solid var(--cobalt); outline-offset: 3px; }
.btn--cobalt { background: var(--cobalt); color: #fff; box-shadow: 0 8px 20px rgba(37,69,255,0.28); }
.btn--cobalt:hover { background: var(--cobalt-ink); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(37,69,255,0.32); }
.btn--ghost { background: transparent; color: var(--graphite); border-color: var(--cream); }
.btn--ghost:hover { border-color: var(--charcoal); }
.btn--onnavy { background: #fff; color: var(--navy); }
.btn--onnavy:hover { transform: translateY(-1px); background: var(--lavender); box-shadow: 0 12px 26px rgba(12,23,84,0.2); }
.btn--ghostnavy { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--ghostnavy:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* =========================================================================
   Nav
   ========================================================================= */
.site-header { position: sticky; top: 0; z-index: 40; background: var(--canvas); }
.header__inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.wordmark { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.03em; color: var(--navy); }
.wordmark__dot { width: 11px; height: 11px; border-radius: 9999px; background: var(--cobalt); flex-shrink: 0; }
.wordmark__mark { width: 1.3em; height: 1.3em; flex-shrink: 0; }
.wordmark__img { height: 34px; width: auto; display: block; }
.site-footer .wordmark__img { height: 34px; }
.nav { display: flex; gap: 4px; margin: 0 auto; }
.nav a { font-size: 16px; font-weight: 500; color: var(--graphite); padding: 8px 16px; border-radius: 100px; transition: background 0.2s var(--ease); }
.nav a:hover { background: rgba(12,23,84,0.06); }
.header__actions { display: flex; align-items: center; gap: 10px; }
.header__actions .login { font-size: 14px; font-weight: 500; color: var(--graphite); padding: 8px 12px; }
.header__actions .login:hover { color: var(--charcoal); }

.nav-toggle { display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 5px; margin-left: auto; border-radius: 100px; }
.nav-toggle span { display: block; height: 2px; width: 22px; background: var(--charcoal); margin-inline: auto; transition: transform 0.25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-nav { display: none; flex-direction: column; gap: 2px; padding: 8px var(--pad) 22px; background: var(--canvas); border-bottom: 1px solid var(--cream); }
.mobile-nav a { font-size: 16px; font-weight: 500; padding: 12px 8px; border-radius: 100px; }
.mobile-nav a:hover { background: rgba(12,23,84,0.06); }
.mobile-nav .btn { margin-top: 12px; border-radius: 100px; padding: 14px 28px; font-size: 15px; }
.mobile-nav.open { display: flex; }

/* =========================================================================
   Hero
   ========================================================================= */
.hero { padding-top: clamp(40px, 6vw, 72px); padding-bottom: var(--gap); overflow-x: clip; }
.hero__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 3.5vw, 54px); align-items: center; }
.hero .eyebrow { display: block; margin-bottom: var(--rhythm-eyebrow); }
.hero__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.6rem, 5.6vw, 4.4rem); line-height: 1.06; letter-spacing: -0.028em; color: var(--charcoal); text-wrap: balance; }
.hero__title .ital { font-size: 1.16em; line-height: 0.88; }
.hero__lead { margin: var(--rhythm-lead) 0 0; max-width: 44ch; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: var(--rhythm-actions); align-items: center; }
.hero__proof { display: flex; align-items: center; flex-wrap: nowrap; gap: 16px; margin-top: var(--rhythm-actions); }
.hero__proof li { display: inline-flex; align-items: center; gap: 7px; color: #555158; font-size: 12.5px; font-weight: 600; line-height: 1.25; white-space: nowrap; }
.hero__proof li::before { content: "✓"; width: 18px; height: 18px; flex: 0 0 18px; display: grid; place-items: center; border-radius: 50%; background: var(--accent-blue-deep); color: #fff; font-size: 11px; font-weight: 700; line-height: 1; }
.link-how { font-size: 15px; font-weight: 500; color: var(--navy); display: inline-flex; align-items: center; gap: 7px; transition: color 0.2s var(--ease); }
.link-how span { transition: transform 0.35s var(--spring); }
.link-how:hover { color: var(--cobalt); }
.link-how:hover span { transform: translateX(4px); }
.pill-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--lavender); color: var(--navy); font-size: 13px; font-weight: 600; border-radius: 100px; padding: 7px 15px; margin-bottom: var(--rhythm-eyebrow); }
.pill-eyebrow .d { width: 7px; height: 7px; border-radius: 9999px; background: #22a565; }

/* =========================================================================
   Hero visual — embedded QA pod, animated to dock into the sprint
   ========================================================================= */
.hero-viz { position: relative; width: 100%; min-width: 0; min-height: 590px; margin-right: 0; isolation: isolate; }

/* Muted gradient geometry from the approved mockup. */
.hviz-blob { position: absolute; z-index: 0; width: 460px; height: 340px; border-radius: 54px; opacity: 0.74; filter: saturate(0.82); }
.hviz-blob::after { content: ""; position: absolute; inset: -38px; border-radius: inherit; background: inherit; filter: blur(48px); opacity: 0.18; z-index: -1; }
.hviz-blob--indigo { top: 5%; left: 12%; background: linear-gradient(145deg, #0c1754 0%, #2545ff 49%, #9aa9e8 100%); transform: rotate(-8deg); clip-path: polygon(23% 0, 100% 10%, 84% 100%, 3% 88%, 0 37%); }
.hviz-blob--green { bottom: 3%; right: 6%; background: linear-gradient(145deg, #14663f 0%, #22a565 52%, #a7d9c0 100%); transform: rotate(7deg); clip-path: polygon(10% 10%, 91% 0, 100% 34%, 78% 100%, 0 88%); }

/* Bordered sprint window and slim navy offset layer. */
.hviz-board { position: absolute; top: 50%; left: auto; right: 0; transform: translateY(-50%); width: min(76%, 570px); min-height: 430px; background: #fff; border: 2px solid var(--navy); border-radius: 24px; box-shadow: 12px 14px 0 -1px var(--navy), 0 32px 55px rgba(12,23,84,0.12); padding: 22px 26px; z-index: 2; animation: hvizBoard 0.7s cubic-bezier(.22,.75,.25,1) both; }
.hviz-board__head { display: flex; align-items: center; gap: 12px; padding-bottom: 17px; border-bottom: 1px solid var(--cream); }
.hviz-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; flex-shrink: 0; }
.hviz-grid i { width: 6px; height: 6px; border-radius: 50%; background: var(--cobalt); display: block; }
.hviz-board__title { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--navy); }
.hviz-board__tag { margin-left: auto; display: inline-flex; align-items: center; font-size: 11.5px; font-weight: 600; color: #16845c; border: 1px solid rgba(45,178,125,.38); background: rgba(45,178,125,.05); border-radius: 100px; padding: 5px 12px; white-space: nowrap; animation: hvizTag 0.5s ease 0.85s both; }

.hviz-board__body { margin-top: 17px; padding: 18px 18px 8px; min-height: 290px; border: 1px solid #e7e8f1; border-radius: 17px; }
.hviz-toolbar { height: 10px; width: 34%; border-radius: 100px; background: #e6e7ee; margin-bottom: 28px; animation: hvizContent 0.55s var(--ease) 0.8s both; }
.hviz-cols { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.hviz-col { display: flex; flex-direction: column; gap: 23px; padding: 0 18px; border-left: 1px solid #e7e7ee; }
.hviz-col:first-child { border-left: 0; }
.hviz-row { display: flex; align-items: center; gap: 9px; animation: hvizContent 0.5s var(--ease) both; }
.hviz-row:nth-child(1) { animation-delay: 0.9s; }
.hviz-row:nth-child(2) { animation-delay: 1.0s; }
.hviz-row:nth-child(3) { animation-delay: 1.1s; }
.hviz-row:nth-child(4) { animation-delay: 1.2s; }
.hviz-row:nth-child(5) { animation-delay: 1.3s; }
.hviz-dot { width: 9px; height: 9px; border-radius: 50%; background: #cfd2dd; flex-shrink: 0; }
.hviz-bar { height: 7px; border-radius: 100px; background: #e9e9eb; flex: 1; }
.hviz-bar.m { flex: 0 0 78%; }
.hviz-bar.s { flex: 0 0 58%; }

.hviz-board__foot { display: flex; justify-content: center; padding-top: 16px; }
.hviz-active { display: inline-flex; align-items: center; gap: 7px; min-width: 184px; justify-content: center; font-size: 12.5px; font-weight: 600; color: var(--navy); background: #f0f1ff; border-radius: 100px; padding: 8px 15px; animation: hvizActive 0.5s ease 0.95s both; }
.hviz-active svg { width: 15px; height: 15px; color: var(--cobalt); }

/* Specialist cards: clean rounded rectangles that slide in once and dock. */
.hviz-spec { --from-x: -74px; --fx: 0px; --fy: -9px; position: absolute; z-index: 4; display: flex; align-items: center; gap: 13px; min-width: 194px; padding: 16px 18px; background: #fff; border: 1.25px solid rgba(12,23,84,.72); border-radius: 17px; box-shadow: 0 15px 30px rgba(12,23,84,.13); animation: hvizDock 0.85s var(--spring) var(--dock-delay, 0s) both, hvizSpecFloat var(--float-dur, 5.4s) ease-in-out var(--float-delay, 3s) infinite; }
.hviz-spec--tr, .hviz-spec--br { --from-x: 74px; }
.hviz-spec__ic { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.hviz-spec__ic svg { width: 23px; height: 23px; }
.hviz-spec__ic--blue { background: #eff1ff; color: var(--cobalt); }
.hviz-spec__ic--lav { background: #eff1ff; color: var(--cobalt); }
.hviz-spec__ic--mint { background: #e9f7f0; color: #16845c; }
.hviz-spec b { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--navy); display: block; line-height: 1; }
/* Two real skeleton lines (in normal flow) so the card content centers evenly */
.hviz-skel { display: flex; flex-direction: column; gap: 6px; margin-top: 9px; }
.hviz-skel::before, .hviz-skel::after { content: ""; display: block; height: 7px; border-radius: 100px; }
.hviz-skel::before { width: 78px; background: #e2e3eb; }
.hviz-skel::after { width: 54px; background: #ececf1; }
.hviz-spec--tl { top: 24%; left: -18px; --dock-delay: 1.7s; --float-delay: 2.55s; --float-dur: 5.4s; --fx: -5px; --fy: -7px; }
.hviz-spec--tr { top: 27%; right: -96px; --dock-delay: 2.05s; --float-delay: 2.9s; --float-dur: 6s; --fx: 6px; --fy: -6px; }
.hviz-spec--bl { top: 64%; left: 6px; --dock-delay: 2.4s; --float-delay: 3.25s; --float-dur: 5s; --fx: -4px; --fy: -13px; }
.hviz-spec--br { top: 61%; right: -84px; --dock-delay: 2.75s; --float-delay: 3.6s; --float-dur: 5.6s; --fx: 5px; --fy: -10px; }

/* Status dots: grey = in progress, red = stuck. EVERY line — including the stuck red ones —
   is removed only after its dot turns green (done), then a fresh line scrolls in. Varied
   per-line durations desync them, so lines appear & disappear at random-feeling intervals. */
.hviz-col:nth-child(2) .hviz-row:nth-child(1) .hviz-dot,
.hviz-col:nth-child(2) .hviz-row:nth-child(3) .hviz-dot,
.hviz-col:nth-child(3) .hviz-row:nth-child(3) .hviz-dot { background: #ef4444; }
/* grey → green → disappears → new grey line */
.hviz-col:nth-child(1) .hviz-row:nth-child(2) .hviz-dot,
.hviz-col:nth-child(3) .hviz-row:nth-child(2) .hviz-dot { animation: hvizWorkDot var(--wd, 8s) ease-in-out var(--wdelay, 0s) infinite; }
/* stuck red → green → disappears → new stuck line */
.hviz-col:nth-child(2) .hviz-row:nth-child(1) .hviz-dot,
.hviz-col:nth-child(2) .hviz-row:nth-child(3) .hviz-dot,
.hviz-col:nth-child(3) .hviz-row:nth-child(3) .hviz-dot { animation: hvizStuckDot var(--wd, 8s) ease-in-out var(--wdelay, 0s) infinite; }
/* bars scroll with their dots */
.hviz-col:nth-child(1) .hviz-row:nth-child(2) .hviz-bar,
.hviz-col:nth-child(3) .hviz-row:nth-child(2) .hviz-bar,
.hviz-col:nth-child(2) .hviz-row:nth-child(1) .hviz-bar,
.hviz-col:nth-child(2) .hviz-row:nth-child(3) .hviz-bar,
.hviz-col:nth-child(3) .hviz-row:nth-child(3) .hviz-bar { animation: hvizWorkBar var(--wd, 8s) ease-in-out var(--wdelay, 0s) infinite; }
/* per-line timing — different durations & offsets so they never line up */
.hviz-col:nth-child(1) .hviz-row:nth-child(2) .hviz-dot,
.hviz-col:nth-child(1) .hviz-row:nth-child(2) .hviz-bar { --wd: 7.6s; --wdelay: 2s; }
.hviz-col:nth-child(3) .hviz-row:nth-child(2) .hviz-dot,
.hviz-col:nth-child(3) .hviz-row:nth-child(2) .hviz-bar { --wd: 9.4s; --wdelay: 4.6s; }
.hviz-col:nth-child(2) .hviz-row:nth-child(1) .hviz-dot,
.hviz-col:nth-child(2) .hviz-row:nth-child(1) .hviz-bar { --wd: 8.2s; --wdelay: 3.1s; }
.hviz-col:nth-child(2) .hviz-row:nth-child(3) .hviz-dot,
.hviz-col:nth-child(2) .hviz-row:nth-child(3) .hviz-bar { --wd: 10.2s; --wdelay: 6.4s; }
.hviz-col:nth-child(3) .hviz-row:nth-child(3) .hviz-dot,
.hviz-col:nth-child(3) .hviz-row:nth-child(3) .hviz-bar { --wd: 8.8s; --wdelay: 5.3s; }
@keyframes hvizWorkDot {
  0%, 38% { background: #cfd2dd; opacity: 1; transform: translateY(0); }
  46%, 56% { background: #22a565; opacity: 1; transform: translateY(0); }
  66% { background: #22a565; opacity: 0; transform: translateY(-13px); }
  67% { background: #cfd2dd; opacity: 0; transform: translateY(13px); }
  78%, 100% { background: #cfd2dd; opacity: 1; transform: translateY(0); }
}
@keyframes hvizStuckDot {
  0%, 38% { background: #ef4444; opacity: 1; transform: translateY(0); }
  46%, 56% { background: #22a565; opacity: 1; transform: translateY(0); }
  66% { background: #22a565; opacity: 0; transform: translateY(-13px); }
  67% { background: #ef4444; opacity: 0; transform: translateY(13px); }
  78%, 100% { background: #ef4444; opacity: 1; transform: translateY(0); }
}
@keyframes hvizWorkBar {
  0%, 56% { opacity: 1; transform: translateY(0); }
  66% { opacity: 0; transform: translateY(-13px); }
  67% { opacity: 0; transform: translateY(13px); }
  78%, 100% { opacity: 1; transform: translateY(0); }
}

/* Entry-only one-shots — end in the visible state and hold it (animation-fill: both) */
@keyframes hvizBoard { from { opacity:0; translate:0 12px; scale:.985; } to { opacity:1; translate:0 0; scale:1; } }
@keyframes hvizContent { from { opacity:0; transform: translateY(6px); } to { opacity:1; transform: translateY(0); } }
/* Per-card float — baseline is the docked position; drifts diagonally, out of sync */
@keyframes hvizSpecFloat { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(var(--fx), var(--fy)); } }
@keyframes hvizDock { from { opacity:0; transform:translateX(var(--from-x)) scale(.95); } to { opacity:1; transform:translateX(0) scale(1); } }
@keyframes hvizTag { from { opacity:0; translate:0 -4px; } to { opacity:1; translate:0 0; } }
@keyframes hvizActive { from { opacity:0; scale:.97; } to { opacity:1; scale:1; } }

@media (prefers-reduced-motion: reduce) {
  .hero-viz, .hviz-board, .hviz-board__tag, .hviz-active, .hviz-spec, .hviz-toolbar, .hviz-row, .hviz-dot, .hviz-bar { animation: none; opacity: 1; transform: none; translate: none; scale: 1; }
  .footer-email:hover::before { animation: none; opacity: 0.4; background-position: 50% 0; }
}
@media (max-width: 1100px) {
  .hero-viz { min-width: 0; min-height: 500px; margin-right: 0; }
  .hviz-blob { width: 340px; height: 300px; }
  .hviz-board { left: 50%; right: auto; transform: translate(-50%, -50%); width: min(82%, 450px); }
  .hviz-spec { min-width: 176px; padding: 14px 15px; }
  .hviz-spec--tr, .hviz-spec--br { right: 0; }
}
@media (max-width: 560px) {
  .hero-viz { min-height: 390px; }
  .hviz-spec { display: none; }
  .hviz-board { width: min(92%, 350px); min-height: 350px; padding: 18px; }
  .hviz-board__body { min-height: 220px; padding-inline: 8px; }
  .hviz-board__title { white-space: nowrap; }
  .hviz-board__tag { font-size: 9.5px; padding: 4px 8px; }
  .hviz-col { padding-inline: 8px; }
  .hviz-blob { width: 250px; height: 230px; }
}

/* product dashboard mockup + tilted card behind */
.mockstack { position: relative; }
.mock-behind { position: absolute; inset: 7px 0 -9px 0; background: var(--navy); border-radius: 16px; transform: rotate(-1.2deg); }
.mock { position: relative; background: var(--paper); border-radius: 16px; box-shadow: 0 4px 24px rgba(12,23,84,0.08); padding: 26px; }
.mock__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mock__title { font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: -0.02em; color: var(--navy); }
.pill-badge { background: var(--lavender); color: var(--navy); font-size: 12px; font-weight: 500; border-radius: 16px; padding: 4px 12px; }
.mock__row { display: flex; align-items: center; gap: 20px; }
.gauge { flex-shrink: 0; position: relative; width: 108px; height: 108px; }
.gauge__val { position: absolute; inset: 0; display: grid; place-items: center; flex-direction: column; }
.gauge__val b { font-family: var(--font-display); font-weight: 600; font-size: 28px; color: var(--navy); letter-spacing: -0.03em; line-height: 1; }
.gauge__val small { font-size: 10.5px; color: var(--stone); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 3px; }
.chart { flex: 1; }
.chart svg { width: 100%; height: 84px; }
.mock__metrics { margin-top: 20px; border-top: 1px solid var(--cream); }
.metric { display: flex; align-items: center; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--cream); font-size: 14px; }
.metric:last-child { border-bottom: 0; }
.metric__dot { width: 8px; height: 8px; border-radius: 9999px; flex-shrink: 0; }
.metric__dot--g { background: #22a565; } .metric__dot--o { background: #e8940f; } .metric__dot--r { background: #e5484d; }
.metric__label { color: var(--graphite); }
.metric__val { margin-left: auto; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--navy); }

/* Vetting — interactive evidence trail */
.vetting-viz { position: relative; width: min(94%, 620px); min-width: 0; justify-self: end; padding: 8px 0; isolation: isolate; }
.vetting-viz__behind { display: none; }
.vetting-viz__panel { position: relative; height: 400px; min-height: 400px; padding: 24px; overflow: hidden; border: 2px solid var(--navy); border-radius: 18px; background: #fff; box-shadow: 12px 14px 0 -1px var(--navy), 0 32px 55px rgba(12,23,84,0.12); }
.vetting-viz__head { display: flex; min-height: 32px; align-items: center; justify-content: space-between; gap: 20px; color: var(--navy); }
.vetting-viz__head div { display: flex; flex-direction: column; gap: 4px; }
.vetting-viz__head strong { font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: -.02em; }
.vetting-viz__head div span { font-size: 12px; color: var(--stone); }
.vetting-viz__status { padding: 6px 12px; border: 0; border-radius: 999px; background: var(--lavender); color: var(--navy); font-size: 10.5px; font-weight: 600; line-height: 1; }
.vetting-trail { --active-stage: 0; position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 30px -3px 24px; }
.vetting-trail__line { position: absolute; top: 19px; left: 12.5%; right: 12.5%; height: 3px; border-radius: 100px; background: #e7e8f1; overflow: hidden; }
.vetting-trail__line::after { content: ""; position: absolute; inset: 0 auto 0 0; height: 100%; width: calc(var(--active-stage, 0) / 3 * 100%); background: linear-gradient(90deg, #2545ff, #4b7bff 55%, #22a565); border-radius: inherit; transition: width 1s linear; }
.vetting-trail__pulse { position: absolute; z-index: 2; top: 16px; left: calc(12.5% + (var(--active-stage) * 25%)); width: 9px; height: 9px; border: 2px solid #fff; border-radius: 50%; background: linear-gradient(135deg, var(--cobalt), #22a565); box-shadow: 0 0 12px rgba(37,69,255,.5); transform: translateX(-50%); transition: left 1s linear; pointer-events: none; }
.vetting-stage { position: relative; z-index: 3; display: flex; min-width: 0; flex-direction: column; align-items: center; gap: 10px; padding: 0 4px; color: var(--charcoal); text-align: center; }
.vetting-stage > span:last-child { font-size: 10.5px; font-weight: 500; line-height: 1.25; }
.vetting-stage__node { width: 40px; height: 40px; display: grid; place-items: center; border: 1.5px solid var(--cobalt); border-radius: 50%; background: #fff; color: var(--cobalt); font-size: 14px; font-weight: 700; transition: border-color .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease); }
.vetting-stage:hover .vetting-stage__node { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(37,69,255,.14); }
.vetting-stage.is-complete .vetting-stage__node { background: #fff; color: var(--cobalt); }
.vetting-stage.is-active .vetting-stage__node { border-color: #22a565; color: #22a565; box-shadow: 0 0 0 7px rgba(34,165,101,.08), 0 0 0 13px rgba(34,165,101,.045); animation: vettingGlowIn .3s var(--ease) both, vettingNodePulse 2.2s ease-in-out .3s infinite; }
.vetting-stage:focus-visible { outline: 2px solid rgba(37,69,255,.5); outline-offset: 5px; border-radius: 8px; }
@keyframes vettingNodePulse { 0%,100% { box-shadow: 0 0 0 7px rgba(34,165,101,.08), 0 0 0 13px rgba(34,165,101,.045); } 50% { box-shadow: 0 0 0 10px rgba(34,165,101,.04), 0 0 0 18px rgba(34,165,101,0); } }
/* Glow grows in gradually when a node becomes active, then eases into the pulse */
@keyframes vettingGlowIn { from { box-shadow: 0 0 0 0 rgba(34,165,101,0), 0 0 0 0 rgba(34,165,101,0); } to { box-shadow: 0 0 0 7px rgba(34,165,101,.08), 0 0 0 13px rgba(34,165,101,.045); } }
.vetting-evidence { display: grid; height: 128px; min-height: 128px; grid-template-columns: 1.1fr .9fr; gap: 16px; align-items: center; padding: 12px 16px; border: 1px solid rgba(70,87,164,.22); border-radius: 13px; background: #fff; }
/* Left summary shows early (while the line crawls); right rows fill once the line arrives */
.vetting-evidence__score, .vetting-evidence__rows { transition: opacity .35s var(--ease); }
.vetting-evidence.is-out-left .vetting-evidence__score { opacity: 0; }
.vetting-evidence.is-out-right .vetting-evidence__rows { opacity: 0; }
@keyframes vettingFill { from { opacity: 0; transform: translateX(-12px); } to { opacity: 1; transform: translateX(0); } }
.vetting-evidence.is-fill-left .vetting-evidence__score { animation: vettingFill .3s var(--ease) both; }
.vetting-evidence.is-fill-right .vetting-evidence__rows div { animation: vettingFill .28s var(--ease) both; }
.vetting-evidence.is-fill-right .vetting-evidence__rows div:nth-child(1) { animation-delay: 0s; }
.vetting-evidence.is-fill-right .vetting-evidence__rows div:nth-child(2) { animation-delay: .08s; }
.vetting-evidence.is-fill-right .vetting-evidence__rows div:nth-child(3) { animation-delay: .16s; }
/* Manual clicks jump straight to a node — no line crawl, no glow-in */
.vetting-trail.is-instant .vetting-trail__line::after,
.vetting-trail.is-instant .vetting-trail__pulse { transition: none; }
.vetting-trail.is-instant .vetting-stage.is-active .vetting-stage__node { animation: vettingNodePulse 2.2s ease-in-out infinite; }
.vetting-evidence__score { display: flex; align-items: center; gap: 13px; }
.vetting-evidence__icon { width: 36px; height: 36px; flex: 0 0 36px; display: grid; place-items: center; border-radius: 50%; background: var(--lavender); color: var(--cobalt); }
.vetting-evidence__icon svg { width: 21px; height: 21px; }
.vetting-evidence__score > span:last-child { display: flex; min-width: 0; flex-direction: column; gap: 5px; }
.vetting-evidence__score strong { font-family: var(--font-display); color: var(--charcoal); font-size: 11.5px; line-height: 1.25; white-space: nowrap; }
.vetting-evidence__score b { color: #22a565; font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -.025em; }
.vetting-evidence__rows { padding-left: 18px; border-left: 1px solid var(--cream); }
.vetting-evidence__rows div { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 7px 0; border-bottom: 1px solid var(--cream); font-size: 10.5px; }
.vetting-evidence__rows div:last-child { border-bottom: 0; }
.vetting-evidence__rows span { color: var(--graphite); }
.vetting-evidence__rows b { color: #22a565; font-weight: 600; }
.vetting-viz__foot { display: flex; min-height: 32px; align-items: center; justify-content: space-between; gap: 16px; margin-top: 14px; font-size: 10.5px; color: var(--stone); }
.vetting-viz__foot > span { display: flex; align-items: center; gap: 8px; }
.vetting-viz__foot i { width: 18px; height: 18px; display: grid; place-items: center; border: 1px solid #22a565; border-radius: 50%; color: #22a565; font-style: normal; font-size: 10px; }
.vetting-viz__foot strong { padding: 7px 14px; border: 1px solid rgba(37,69,255,.45); border-radius: 999px; background: #fff; color: var(--cobalt); font-size: 10.5px; font-weight: 600; cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--spring), box-shadow .2s var(--ease); }
.vetting-viz__foot strong:hover { background: var(--cobalt); color: #fff; box-shadow: 0 6px 16px rgba(37,69,255,.28); }
.vetting-viz__foot strong:active { transform: scale(.96); }
/* Footer + CTA reveal last, only after the walkthrough completes */
.vetting-viz.is-playing .vetting-viz__foot { opacity: 0; }
.vetting-viz.is-done .vetting-viz__foot > span { animation: vettingFill .5s var(--ease) both; }
.vetting-viz.is-done .vetting-viz__foot strong { animation: vettingFill .5s var(--ease) .12s both, vettingCtaPulse 1.7s ease-out .55s 1; }
@keyframes vettingCtaPulse { 0% { box-shadow: 0 0 0 0 rgba(37,69,255,.4); } 100% { box-shadow: 0 0 0 13px rgba(37,69,255,0); } }
@media (prefers-reduced-motion: reduce) {
  .vetting-stage.is-active .vetting-stage__node { animation: none; }
  .vetting-trail__pulse, .vetting-evidence { transition: none; }
  .vetting-trail__line::after { transition: none; }
  .vetting-viz.is-done .vetting-viz__foot > span,
  .vetting-viz.is-done .vetting-viz__foot strong { animation: none; }
}

/* Security — interactive access path */
.access-viz { position: relative; width: min(94%, 620px); min-width: 0; justify-self: start; padding: 8px 0; isolation: isolate; }
.access-viz__behind { display: none; }
.access-viz__panel { position: relative; height: 400px; min-height: 400px; padding: 24px; overflow: hidden; border: 2px solid var(--navy); border-radius: 18px; background: #fff; box-shadow: 12px 14px 0 -1px var(--navy), 0 32px 55px rgba(12,23,84,0.12); }
.access-viz__head { display: flex; min-height: 32px; align-items: center; justify-content: space-between; gap: 20px; color: var(--navy); }
.access-viz__head strong { font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: -.02em; }
.access-viz__head span { padding: 6px 12px; border-radius: 999px; background: var(--lavender); color: var(--navy); font-size: 10.5px; font-weight: 600; line-height: 1; }
.access-path { --access-stage: 0; position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 30px -3px 24px; }
.access-path__line { position: absolute; top: 19px; left: 12.5%; right: 12.5%; height: 3px; border-radius: 100px; background: #e7e8f1; overflow: hidden; }
.access-path__line::after { content: ""; position: absolute; inset: 0 auto 0 0; height: 100%; width: calc(var(--access-stage, 0) / 3 * 100%); background: linear-gradient(90deg, #2545ff, #4b7bff 55%, #22a565); border-radius: inherit; transition: width 1s linear; }
.access-path__pulse { position: absolute; z-index: 2; top: 16px; left: calc(12.5% + (var(--access-stage) * 25%)); width: 9px; height: 9px; border: 2px solid #fff; border-radius: 50%; background: linear-gradient(135deg, var(--cobalt), #22a565); box-shadow: 0 0 12px rgba(37,69,255,.42); transform: translateX(-50%); transition: left 1s linear; pointer-events: none; }
.access-stage { position: relative; z-index: 3; display: flex; min-width: 0; flex-direction: column; align-items: center; padding: 0 3px; color: var(--navy); text-align: center; }
.access-stage__node { width: 40px; height: 40px; display: grid; place-items: center; margin-bottom: 9px; border: 1.5px solid var(--cobalt); border-radius: 50%; background: #fff; color: var(--navy); transition: border-color .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease); }
.access-stage__node svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.access-stage b { font-size: 10.5px; font-weight: 600; line-height: 1.2; }
.access-stage small { margin-top: 5px; color: var(--stone); font-size: 8.5px; line-height: 1.2; white-space: nowrap; }
.access-stage:hover .access-stage__node { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(37,69,255,.14); }
.access-stage.is-complete .access-stage__node { border-color: #22a565; color: #22a565; }
.access-stage.is-active .access-stage__node { border-color: #22a565; color: #22a565; box-shadow: 0 0 0 7px rgba(34,165,101,.08), 0 0 0 13px rgba(34,165,101,.045); animation: vettingGlowIn .3s var(--ease) both, accessNodePulse 2.2s ease-in-out .3s infinite; }
.access-path.is-instant .access-path__line::after,
.access-path.is-instant .access-path__pulse { transition: none; }
.access-path.is-instant .access-stage.is-active .access-stage__node { animation: accessNodePulse 2.2s ease-in-out infinite; }
.access-stage:focus-visible { outline: 2px solid rgba(37,69,255,.5); outline-offset: 5px; border-radius: 8px; }
@keyframes accessNodePulse { 0%,100% { box-shadow: 0 0 0 7px rgba(34,165,101,.08), 0 0 0 13px rgba(34,165,101,.045); } 50% { box-shadow: 0 0 0 10px rgba(34,165,101,.04), 0 0 0 18px rgba(34,165,101,0); } }
.access-detail { height: 128px; min-height: 128px; padding: 12px 16px; border: 1px solid rgba(70,87,164,.22); border-radius: 13px; background: #fff; }
/* Title fills early (during the crawl); rows fill once the line reaches the node */
.access-detail__title, .access-detail__rows { transition: opacity .35s var(--ease); }
.access-detail.is-out-left .access-detail__title { opacity: 0; }
.access-detail.is-out-right .access-detail__rows { opacity: 0; }
.access-detail.is-fill-left .access-detail__title { animation: vettingFill .3s var(--ease) both; }
.access-detail.is-fill-right .access-detail__rows div { animation: vettingFill .28s var(--ease) both; }
.access-detail.is-fill-right .access-detail__rows div:nth-child(1) { animation-delay: 0s; }
.access-detail.is-fill-right .access-detail__rows div:nth-child(2) { animation-delay: .08s; }
.access-detail.is-fill-right .access-detail__rows div:nth-child(3) { animation-delay: .16s; }
.access-detail__title { display: flex; align-items: baseline; gap: 5px; padding-bottom: 7px; color: var(--charcoal); font-size: 11.5px; }
.access-detail__title strong { font-family: var(--font-display); font-weight: 600; }
.access-detail__title span { color: var(--stone); }
.access-detail__title b { color: #22a565; font-weight: 600; }
.access-detail__rows div { display: grid; grid-template-columns: minmax(0, 1fr) auto 12px; align-items: center; gap: 10px; min-height: 28px; border-top: 1px solid var(--cream); font-size: 10.5px; }
.access-detail__rows span { color: var(--graphite); }
.access-detail__rows b { color: var(--navy); font-weight: 500; white-space: nowrap; }
.access-detail__rows i { color: var(--stone); font-size: 17px; font-style: normal; line-height: 1; }
.access-viz__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 14px; color: var(--stone); font-size: 10.5px; }
.access-viz__foot strong { padding: 7px 14px; border: 1px solid rgba(37,69,255,.45); border-radius: 999px; color: var(--cobalt); font-weight: 600; cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--spring); }
.access-viz__foot strong:hover { background: var(--cobalt); color: #fff; box-shadow: 0 6px 16px rgba(37,69,255,.28); }
.access-viz__foot strong:active { transform: scale(.96); }
/* Activates once the walkthrough reaches Offboarding (final node) */
.access-viz.is-done .access-viz__foot strong { background: var(--cobalt); border-color: var(--cobalt); color: #fff; animation: vettingCtaPulse 1.7s ease-out 1; }
@media (prefers-reduced-motion: reduce) { .access-stage.is-active .access-stage__node { animation: none; } .access-path__pulse, .access-path__line::after, .access-detail__title, .access-detail__rows { transition: none; } }

/* =========================================================================
   Logo strip
   ========================================================================= */
.logos { padding-block: clamp(32px, 5vw, 56px); }
.logos__label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--stone); margin-bottom: 22px; }
.logos__row { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(24px, 5vw, 52px); }
.logos__row span { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.03em; color: var(--navy); opacity: 0.4; }

/* =========================================================================
   Section scaffold
   ========================================================================= */
.section { padding-block: var(--gap); }
.section__head { max-width: 680px; margin-inline: auto; margin-bottom: clamp(36px, 5vw, 56px); text-align: center; }
.section--center .section__head { margin-inline: auto; text-align: center; }
.section__head .eyebrow { margin-bottom: var(--rhythm-eyebrow); }
.eyebrow--ruled + .h2 { text-align: center; }
.feature__copy--left .eyebrow--ruled { justify-content: flex-start; }
.feature__copy--left .eyebrow--ruled::after { display: none; }
.feature__copy--left .eyebrow--ruled + .h2 { text-align: left; }
.feature__copy--right .eyebrow--ruled { justify-content: flex-start; }
.feature__copy--right .eyebrow--ruled::after { display: none; }
.feature__copy--right .eyebrow--ruled + .h2 { text-align: left; }

/* =========================================================================
   Steps — dark / light / accent-bordered row
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; text-align: left; align-items: stretch; }
.steps > .step:nth-child(3) { margin-top: 0; }
.steps > .step:nth-child(5) { margin-top: 0; }
.step { display: flex; flex-direction: column; }
.step__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.step__badge { width: 40px; height: 40px; background: var(--accent-blue-deep); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: 0.01em; display: grid; place-items: center; flex-shrink: 0; border-radius: 11px; }
.step__title { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.02em; color: var(--charcoal); }
.step__illus { position: relative; border: 1.25px solid rgba(12,23,84,0.28); border-radius: 16px; padding: 22px; flex: 1; min-height: 264px; overflow: hidden; display: flex; flex-direction: column; gap: 12px; box-shadow: 5px 6px 0 -2px rgba(12,23,84,0.24), 0 14px 30px rgba(12,23,84,0.06); }
.step__illus--navy { background: var(--navy); border-color: rgba(37,69,255,0.48); justify-content: space-between; box-shadow: 5px 6px 0 -2px rgba(12,23,84,0.38), 0 14px 30px rgba(12,23,84,0.08); }
.step__illus--light { background: var(--paper); border-color: rgba(12,23,84,0.28); }
.step__illus--accent { background: var(--lavender); border-color: rgba(12,23,84,0.24); }
.step__cap { margin: -4px 0 18px; min-height: 3.1em; font-size: 16px; line-height: 1.55; color: var(--graphite); }

/* cards start scattered (varied rotation + offset), then settle into the
   aligned row as they scroll into view. The settle is a scroll-driven
   animation (`animation-timeline: view()`), so its progress is tied directly
   to scroll position — straightening smoothly as each card rises through the
   viewport. It runs on the independent `rotate`/`translate` properties while
   the float uses `transform`, so the two compose instead of colliding. */
@keyframes stepFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes stepSettle {
  from { rotate: var(--tilt, -9deg); translate: var(--dx, -30px) var(--dy, 34px); }
  to   { rotate: 0deg; translate: 0 0; }
}
.step__illus {
  rotate: var(--tilt, -9deg);
  translate: var(--dx, -30px) var(--dy, 34px);
  animation: stepFloat 4.8s ease-in-out infinite,
             stepSettle linear both;
  animation-timeline: auto, view();
  animation-range: normal, cover 0% cover 48%;
  will-change: transform, rotate, translate;
}
.steps > .step:nth-child(1) { --tilt: -9deg;  --dx: -30px; --dy: 34px; }
.steps > .step:nth-child(2) { --tilt: 8deg;   --dx: 16px;  --dy: 56px; }
.steps > .step:nth-child(3) { --tilt: -12deg; --dx: 24px;  --dy: 18px; }
/* fallback for browsers without scroll-driven timelines: settle on reveal */
.step.in .step__illus { rotate: 0deg; translate: 0 0; }
@supports not (animation-timeline: view()) {
  .step__illus { transition: rotate 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                             translate 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
}
/* keep the transient scatter from ever pushing a horizontal scrollbar */
#how { overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  .step__illus { rotate: 0deg; translate: 0 0; animation: none; transition: none; }
}

/* step 1 — requirement bubbles on navy */
.fb { background: #fff; border-radius: 12px; padding: 11px 13px; font-size: 13px; font-weight: 500; color: var(--charcoal); max-width: 84%; box-shadow: 0 2px 12px rgba(12,23,84,0.14); }
.fb--2 { align-self: flex-end; border: 1.5px solid var(--cobalt); }
.fb--r { align-self: flex-end; }
.fb small { display: block; font-size: 11px; color: var(--stone); margin-top: 3px; font-weight: 400; }

/* step 2 — candidate shortlist */
.cand { display: flex; align-items: center; gap: 12px; background: var(--canvas); border: 1px solid var(--cream); border-radius: 12px; padding: 10px 12px; }
.cand__av { width: 34px; height: 34px; border-radius: 9999px; background: var(--lavender); color: var(--navy); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 13px; flex-shrink: 0; }
.cand b { font-size: 13.5px; color: var(--charcoal); display: block; line-height: 1.2; }
.cand small { font-size: 12px; color: var(--stone); }
.cand__pick { margin-left: auto; color: var(--cobalt); font-size: 15px; }
.cand__cta { margin-top: auto; text-align: center; background: var(--cobalt); color: #fff; border-radius: 100px; padding: 10px; font-size: 13px; font-weight: 500; }

/* step 3 — pod live */
.pod-live { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--navy); }
.pod-live .d { width: 9px; height: 9px; border-radius: 9999px; background: #22a565; }
.tools { display: flex; flex-wrap: wrap; gap: 8px; }
.tools span { background: #fff; border: 1px solid var(--cream); border-radius: 100px; padding: 6px 12px; font-size: 12.5px; color: var(--navy); }
.pod-avatars { display: flex; }
.pod-avatars span { width: 30px; height: 30px; border-radius: 9999px; background: #fff; border: 2px solid var(--lavender); margin-left: -8px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 11px; color: var(--navy); }
.pod-avatars span:first-child { margin-left: 0; }
.pod-avatars .more { background: var(--cobalt); color: #fff; }
.run { margin-top: auto; background: #fff; border: 1px solid var(--cream); border-radius: 12px; padding: 12px 14px; font-size: 13px; color: var(--graphite); display: flex; align-items: center; gap: 9px; }
.run--2 { margin-top: 0; }
.run .c { color: var(--cobalt); font-size: 14px; }

/* =========================================================================
   Feature cards
   ========================================================================= */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card { position: relative; background: var(--paper); border: 1px solid var(--cream); border-radius: 18px; padding: 32px; transition: transform 0.4s var(--spring), box-shadow 0.4s var(--spring); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 42px rgba(12,23,84,0.10); }
.card__ic { width: 44px; height: 44px; border-radius: 12px; background: var(--lavender); color: var(--cobalt); display: grid; place-items: center; font-size: 20px; margin-bottom: 20px; }
.card__no { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--cobalt); }
.card h3 { font-family: var(--font-display); font-weight: 600; font-size: 21px; letter-spacing: -0.02em; margin-top: 6px; }
.card p { font-size: 15px; line-height: 1.6; color: var(--graphite); margin-top: 10px; }
.card__go { margin-top: auto; padding-top: 20px; font-size: 14px; font-weight: 500; color: var(--cobalt); display: inline-flex; gap: 6px; }

/* lavender highlight marker + tech tags on cards */
.mark { background: var(--lavender); border-radius: 6px; padding: 0 0.14em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.card--tint { border-color: transparent; }
.card--tint .card__ic {
  background: #fff;
  color: var(--cobalt);
  box-shadow:
    0 7px 18px rgba(37, 69, 255, 0.10),
    0 0 16px rgba(104, 124, 240, 0.16);
}
.card--tint p { color: var(--charcoal); opacity: 0.85; }
.card--tint .tag { background: #fff; color: var(--navy); }
.card__ic svg { width: 22px; height: 22px; }
.card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 18px; }
.tag { background: var(--lavender); color: var(--navy); font-size: 11.5px; font-weight: 500; border-radius: 100px; padding: 4px 11px; }

/* bar chart mockup */
.bars { display: flex; align-items: flex-end; gap: 10px; height: 140px; margin: 6px 0 4px; }
.bar { flex: 1; background: var(--lavender); border-radius: 8px 8px 0 0; min-height: 8px; }
.bar--hi { background: var(--cobalt); }
.bars__labels { display: flex; gap: 10px; }
.bars__labels span { flex: 1; text-align: center; font-size: 10.5px; color: var(--stone); }

/* testimonial / proof cards */
.quote { background: var(--paper); border: 1px solid var(--cream); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; }
.stars { color: var(--cobalt); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.quote p { font-size: 16px; line-height: 1.55; color: var(--charcoal); }
.quote__by { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 22px; }
.qavatar { width: 40px; height: 40px; border-radius: 100px; background: var(--lavender); color: var(--navy); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 15px; flex-shrink: 0; }
.quote__by b { display: block; font-size: 14px; font-weight: 600; color: var(--navy); }
.quote__by small { font-size: 13px; color: var(--stone); }

/* =========================================================================
   Dashboard feature (2-col)
   ========================================================================= */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.feature--rev > :nth-child(1) { order: 2; }
.feature--rev > :nth-child(2) { order: 1; }
.feature__copy .lead { margin-top: var(--rhythm-lead); }
.feature__list { margin-top: var(--rhythm-actions); display: flex; flex-direction: column; gap: 14px; }
.feature__list li { display: flex; gap: 12px; font-size: clamp(16px, 1.3vw, 19px); color: var(--graphite); }
.feature__list li::before { content: "→"; color: var(--cobalt); font-weight: 600; }

/* =========================================================================
   Reporting — interactive signal-to-action panel
   ========================================================================= */
.feature__list--check li::before { content: "✓"; color: var(--cobalt); font-weight: 700; }
.quality-viz { position: relative; width: min(94%, 620px); min-width: 0; justify-self: end; padding: 8px 0; isolation: isolate; }
.quality-viz__behind { display: none; }
.quality-viz__panel { position: relative; height: 400px; min-height: 400px; padding: 24px; overflow: hidden; border: 2px solid var(--navy); border-radius: 18px; background: #fff; box-shadow: 12px 14px 0 -1px var(--navy), 0 32px 55px rgba(12,23,84,0.12); }
.quality-viz__head { display: flex; min-height: 32px; align-items: center; justify-content: space-between; gap: 20px; color: var(--navy); }
.quality-viz__head strong { font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: -.02em; }
.quality-viz__head span { padding: 6px 12px; border: 0; border-radius: 999px; background: var(--lavender); color: var(--navy); font-size: 10.5px; font-weight: 600; line-height: 1; }
.quality-chart { margin-top: 16px; }
.quality-chart__labels { display: grid; grid-template-columns: repeat(4, 1fr); padding-inline: 2px; color: var(--stone); font-size: 9.5px; text-align: center; }
.quality-chart__labels b { color: var(--navy); font-weight: 600; }
.quality-chart svg { display: block; width: 100%; height: 84px; overflow: visible; }
.quality-chart__guides { fill: none; stroke: rgba(12,23,84,.13); stroke-width: 1; stroke-dasharray: 3 4; }
.quality-chart__line { fill: none; stroke: var(--cobalt); stroke-width: 2; stroke-linecap: round; }
.quality-chart__marker { color: var(--cobalt); transition: transform 1s cubic-bezier(.65, 0, .35, 1); }
.quality-chart__marker line { stroke: var(--navy); stroke-width: 1.2; }
.quality-chart__marker circle { fill: currentColor; stroke: var(--navy); stroke-width: 1; }
.quality-chart__marker .quality-chart__halo { fill: currentColor; stroke: none; opacity: .1; animation: qualityMarkerPulse 2.2s ease-in-out infinite; }
@keyframes qualityMarkerPulse { 50% { r: 18px; opacity: 0; } }
.quality-signals { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 4px; }
.quality-signal { position: relative; display: flex; min-width: 0; min-height: 88px; flex-direction: column; align-items: center; justify-content: center; padding: 10px 8px; border: 1px solid var(--cream); border-radius: 12px; background: #fff; color: var(--navy); text-align: center; transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease); }
.quality-signal:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(12,23,84,.06); }
.quality-signal.is-active { border-color: var(--cobalt); box-shadow: 0 0 0 1px rgba(37,69,255,.08); }
.quality-signal:focus-visible { outline: 2px solid rgba(37,69,255,.45); outline-offset: 3px; }
.quality-signal__dot { position: absolute; top: 11px; left: 12px; width: 7px; height: 7px; border-radius: 50%; }
.quality-signal__dot--blue { background: var(--cobalt); box-shadow: 0 0 0 5px rgba(37,69,255,.06); }
.quality-signal__dot--amber { background: #d69118; }
.quality-signal__dot--green { background: #22a565; }
.quality-signal span { font-size: 11px; font-weight: 600; line-height: 1.2; }
.quality-signal strong { margin-top: 5px; font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: -.03em; }
.quality-signal b { margin-top: 3px; font-size: 10px; font-weight: 600; }
.quality-signal__good { color: #22a565; }
.quality-signal__watch { color: #c57c0d; }
.quality-insight { min-height: 90px; margin-top: 10px; padding: 14px 16px; display: flex; flex-direction: column; justify-content: center; border: 1px solid rgba(70,87,164,.22); border-radius: 13px; background: #fff; }
/* Insight clears while the marker travels, then fills in gradually */
.quality-insight > span, .quality-insight__body { transition: opacity .35s var(--ease); }
.quality-insight.is-out > span, .quality-insight.is-out .quality-insight__body { opacity: 0; }
.quality-insight.is-filling > span { animation: vettingFill .5s var(--ease) both; }
.quality-insight.is-filling .quality-insight__body { animation: vettingFill .55s var(--ease) .18s both; }
.quality-insight > span { color: var(--cobalt); font-size: 10.5px; font-weight: 600; }
.quality-insight__body { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 8px; }
.quality-insight__body > div { min-width: 0; }
.quality-insight__body strong { display: block; color: var(--charcoal); font-size: 11.5px; font-weight: 500; line-height: 1.4; white-space: nowrap; }
.quality-insight__body p { margin-top: 7px; color: var(--stone); font-size: 10px; line-height: 1.4; white-space: nowrap; }
.quality-insight__body > b { flex: 0 0 auto; padding: 7px 14px; border: 1px solid rgba(37,69,255,.45); border-radius: 999px; background: #fff; color: var(--cobalt); font-size: 10.5px; font-weight: 600; }
@media (prefers-reduced-motion: reduce) { .quality-chart__marker, .quality-insight, .quality-insight > span, .quality-insight__body { transition: none; } .quality-chart__marker .quality-chart__halo { animation: none; } .quality-insight.is-filling > span, .quality-insight.is-filling .quality-insight__body { animation: none; } }

/* =========================================================================
   Coverage
   ========================================================================= */
.coverage-panel { padding: clamp(12px, 2vw, 28px) 0; }
.coverage-panel__grid { display: grid; grid-template-columns: minmax(340px, .72fr) minmax(0, 1.28fr); gap: 0; align-items: center; }
.coverage__copy { position: relative; z-index: 3; }
.coverage-map { position: relative; z-index: 1; width: 126%; min-width: 0; margin-left: -12%; aspect-ratio: 1109 / 824; overflow: hidden; }
.coverage-map__art { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; opacity: .92; filter: contrast(1.14) drop-shadow(0 0 .35px rgba(12,23,84,.22)); }
.coverage-map__svg { position: absolute; inset: 0; z-index: 2; display: block; width: 100%; height: 100%; overflow: visible; }
.coverage-map::before { display: none; }

.coverage-map__contours, .coverage-map__labels, .coverage-map__night { display: none; }
.coverage-map__route { stroke: var(--cobalt); stroke-width: 1.7; stroke-dasharray: 520; stroke-dashoffset: 520; opacity: .78; }
.coverage-map__route-pass { stroke: #2db27d; stroke-width: 1.9; stroke-dasharray: 520; stroke-dashoffset: 520; }
.coverage-map__node { color: var(--cobalt); opacity: 0; }
.coverage-map__node > circle:not(.coverage-map__halo) { fill: #fff; stroke: currentColor; stroke-width: 2.5; }
.coverage-map__node > circle:last-child { fill: currentColor; stroke: none; }
.coverage-map__halo { fill: currentColor; opacity: .1; transform-box: fill-box; transform-origin: center; }
.coverage-map__node--3, .coverage-map__node--4 { color: #2db27d; }
.coverage-map__finish circle { fill: #f0f2ff; stroke: var(--cobalt); stroke-width: 1.5; opacity: 0; transform-box: fill-box; transform-origin: center; }
.coverage-map__finish path { fill: none; stroke: var(--cobalt); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 48; stroke-dashoffset: 48; }

.coverage-map.is-running .coverage-map__route--1 { animation: coverageRoute 12s ease-in-out infinite 1.5s; }
.coverage-map.is-running .coverage-map__route--2 { animation: coverageRoute 12s ease-in-out infinite 2.8s; }
.coverage-map.is-running .coverage-map__route--3 { animation: coverageRoute 12s ease-in-out infinite 4s; }
.coverage-map.is-running .coverage-map__route--4 { animation: coverageRoute 12s ease-in-out infinite 5.3s; }
.coverage-map.is-running .coverage-map__route-pass--1 { animation: coveragePass 12s ease-in-out infinite 2.5s; }
.coverage-map.is-running .coverage-map__route-pass--2 { animation: coveragePass 12s ease-in-out infinite 3.8s; }
.coverage-map.is-running .coverage-map__route-pass--3 { animation: coveragePass 12s ease-in-out infinite 5s; }
.coverage-map.is-running .coverage-map__route-pass--4 { animation: coveragePass 12s ease-in-out infinite 6.3s; }
.coverage-map.is-running .coverage-map__node--1 { animation: coverageNode 12s ease-in-out infinite 1.5s; }
.coverage-map.is-running .coverage-map__node--2 { animation: coverageNode 12s ease-in-out infinite 2.8s; }
.coverage-map.is-running .coverage-map__node--3 { animation: coverageNode 12s ease-in-out infinite 4s; }
.coverage-map.is-running .coverage-map__node--4 { animation: coverageNode 12s ease-in-out infinite 5.3s; }
.coverage-map.is-running .coverage-map__halo { animation: coveragePulse 2.4s ease-out infinite; }
.coverage-map.is-running .coverage-map__finish circle { animation: coverageFinishCircle 12s ease-in-out infinite; }
.coverage-map.is-running .coverage-map__finish path { animation: coverageCheck 12s ease-in-out infinite; }

@keyframes coverageRoute {
  0%, 8% { stroke-dashoffset: 520; opacity: 0; }
  17%, 58% { stroke-dashoffset: 0; opacity: .9; }
  68%, 100% { stroke-dashoffset: 0; opacity: 0; }
}
@keyframes coveragePass {
  0%, 12% { stroke-dashoffset: 520; opacity: 0; }
  22%, 62% { stroke-dashoffset: 0; opacity: 1; }
  72%, 100% { stroke-dashoffset: 0; opacity: 0; }
}
@keyframes coverageNode {
  0%, 8% { opacity: 0; }
  13%, 62% { opacity: 1; }
  72%, 100% { opacity: 0; }
}
@keyframes coveragePulse { 0% { transform: scale(.55); opacity: .22; } 100% { transform: scale(1.65); opacity: 0; } }
@keyframes coverageFinishCircle { 0%, 67% { opacity: 0; transform: scale(.72); } 73%, 88% { opacity: 1; transform: scale(1); } 96%, 100% { opacity: 0; transform: scale(.95); } }
@keyframes coverageCheck { 0%, 70% { stroke-dashoffset: 48; opacity: 0; } 77%, 90% { stroke-dashoffset: 0; opacity: 1; } 97%, 100% { stroke-dashoffset: 0; opacity: 0; } }

@media (max-width: 900px) {
  .coverage-panel__grid { grid-template-columns: 1fr; }
  .coverage-map { width: 100%; max-width: 760px; margin: 8px auto 0; }
}
@media (prefers-reduced-motion: reduce) {
  .coverage-map__route, .coverage-map__route-pass { stroke-dashoffset: 0; opacity: 1; animation: none !important; }
  .coverage-map__route { opacity: 0; }
  .coverage-map__node { opacity: 1; animation: none !important; }
  .coverage-map__halo { opacity: .1; transform: none; animation: none !important; }
  .coverage-map__finish circle { opacity: 1; transform: none; animation: none !important; }
  .coverage-map__finish path { stroke-dashoffset: 0; opacity: 1; animation: none !important; }
}

/* Exact approved coverage composition. The earlier responsive reconstruction
   remains in the markup as a fallback source, but is not rendered. */
#coverage.section { padding-block: var(--gap); overflow: hidden; }
#coverage > .wrap { display: block; }
#coverage .coverage-panel__grid { grid-template-columns: 1fr; gap: clamp(24px, 4vw, 44px); }
#coverage .coverage__copy { text-align: center; }
#coverage .coverage__copy .lead { margin-inline: auto; }
#coverage .coverage-map {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  overflow: visible;
}
#coverage .coverage-map__art {
  background: transparent;
  mix-blend-mode: normal;
  opacity: .92;
  filter: contrast(1.14) drop-shadow(0 0 .35px rgba(12,23,84,.22));
}
.coverage-exact { display: none; position: relative; width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); isolation: isolate; }
.coverage-exact > img { display: block; width: 100%; height: auto; }
.coverage-exact__pulse { position: absolute; z-index: 2; left: var(--x); top: var(--y); width: 13px; height: 13px; border: 2px solid currentColor; border-radius: 50%; transform: translate(-50%, -50%); opacity: 0; pointer-events: none; }
.coverage-exact__pulse::after { content: ""; position: absolute; inset: -2px; border: 1px solid currentColor; border-radius: inherit; opacity: 0; }
.coverage-exact__pulse--blue { color: var(--cobalt); }
.coverage-exact__pulse--green { color: #2db27d; }
.coverage-exact.is-running .coverage-exact__pulse { animation: coverageExactNode 3.8s ease-out infinite var(--d); }
.coverage-exact.is-running .coverage-exact__pulse::after { animation: coverageExactRing 3.8s ease-out infinite var(--d); }
@keyframes coverageExactNode { 0%, 12% { opacity: 0; } 20%, 48% { opacity: .65; } 70%, 100% { opacity: 0; } }
@keyframes coverageExactRing { 0%, 18% { opacity: 0; transform: scale(.7); } 28% { opacity: .24; } 72%, 100% { opacity: 0; transform: scale(3); } }
@media (prefers-reduced-motion: reduce) {
  .coverage-exact__pulse, .coverage-exact__pulse::after { display: none; animation: none !important; }
}
@media (max-width: 900px) {
  #coverage .coverage-panel__grid { grid-template-columns: 1fr; }
  #coverage .coverage-map {
    width: calc(100% + var(--pad) + var(--pad) + 32px);
    max-width: none;
    margin-left: calc(0px - var(--pad));
    overflow: visible;
  }
}

/* =========================================================================
   Stats
   ========================================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { background: var(--paper); border: 1px solid var(--cream); border-radius: 16px; padding: 28px; }
.stat__num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem, 4vw, 3rem); letter-spacing: -0.04em; line-height: 1; color: var(--navy); }
.stat__num .p { color: var(--cobalt); }
.stat__label { display: block; margin-top: 12px; font-size: 13.5px; color: var(--stone); }

/* =========================================================================
   FAQ (2-col, sticky left)
   ========================================================================= */
.faq { display: grid; grid-template-columns: minmax(270px, .8fr) minmax(0, 1.35fr); gap: clamp(48px, 7vw, 96px); align-items: start; }
.faq__left { position: sticky; top: 100px; text-align: left; }
.faq__left .eyebrow--ruled { width: auto; justify-content: flex-start; text-align: left; }
.faq__left .eyebrow--ruled::before { background: var(--accent-blue-deep); }
.faq__left .eyebrow--ruled::after { display: none; }
.faq__left .eyebrow--ruled + .h2 { text-align: left; }
.faq__intro { max-width: 30ch; margin-top: 28px; font-size: 16px; line-height: 1.65; color: var(--graphite); }
.faq__list { overflow: hidden; border: 1px solid rgba(70,87,164,.28); border-radius: 22px; background: rgba(255,255,255,.24); box-shadow: 0 10px 32px rgba(70,87,164,.07), 0 0 22px rgba(104,124,240,.08); }
.faq__list details { position: relative; border-bottom: 1px solid var(--cream); transition: background-color .25s var(--ease); }
.faq__list details:last-child { border-bottom: 0; }
.faq__list details[open] { background: linear-gradient(105deg, rgba(231,230,251,.74), rgba(255,255,255,.34)); }
.faq__list details[open]::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: linear-gradient(180deg, #2545ff 0%, #4b7bff 44%, #22a565 100%); }
.faq__list summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 24px 28px; color: var(--charcoal); }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__summary { display: flex; min-width: 0; flex-direction: column; gap: 8px; }
.faq__meta { color: var(--accent-blue-deep); font-size: 10px; font-weight: 650; letter-spacing: .1em; line-height: 1; text-transform: uppercase; }
.faq__question { font-family: var(--font-display); font-size: 17px; font-weight: 500; line-height: 1.35; letter-spacing: -.012em; }
.faq__chev { position: relative; width: 28px; height: 28px; border: 1px solid var(--accent-blue-deep); border-radius: 50%; flex: 0 0 28px; color: var(--accent-blue-deep); transition: background-color .2s var(--ease), transform .2s var(--ease); }
.faq__chev::before, .faq__chev::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: currentColor; transform: translate(-50%,-50%); }
.faq__chev::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .2s var(--ease); }
.faq__list details[open] .faq__chev::after { transform: translate(-50%,-50%) rotate(0); }
.faq__list summary:hover .faq__chev { background: rgba(70,87,164,.07); }
.faq__a { max-width: 60ch; padding: 0 76px 28px 28px; font-size: 15px; line-height: 1.65; color: var(--graphite); }

/* =========================================================================
   Pricing — user-input savings calculator
   ========================================================================= */
.pricing-section { display: grid; gap: clamp(38px, 5vw, 58px); }
.pricing-section__head { max-width: 760px; margin-inline: auto; text-align: center; }
.pricing-section__head .lead { max-width: 58ch; margin: var(--rhythm-lead) auto 0; }
.savings-calculator { width: 100%; margin-inline: auto; display: grid; grid-template-columns: minmax(260px,.72fr) minmax(0,1.28fr); overflow: hidden; background: var(--paper); border: 2px solid var(--navy); border-radius: 18px; box-shadow: 12px 14px 0 -1px var(--navy), 0 32px 55px rgba(12,23,84,0.12); }
.savings-calculator__inputs, .savings-calculator__comparison { min-width: 0; padding: clamp(24px,3vw,38px); }
.savings-calculator__inputs { background: var(--paper); border-right: 1px solid var(--cream); }
.savings-calculator__title { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.savings-calculator__step { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 30px; border-radius: 9px; background: var(--accent-blue-deep); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .06em; }
.savings-calculator__title div { display: flex; flex-direction: column; }
.savings-calculator__title strong { font-family: var(--font-display); color: var(--navy); font-size: 17px; line-height: 1.25; }
.savings-calculator__title small { margin-top: 2px; color: var(--stone); font-size: 11px; }
.calc-field { display: block; margin-top: 15px; }
.calc-field__hint { display: block; margin-top: 6px; color: var(--stone); font-size: 12px; line-height: 1.4; }
.calc-field > span:first-child { display: block; margin-bottom: 7px; font-size: 11.5px; font-weight: 600; color: var(--graphite); }
.calc-field input { width: 100%; min-width: 0; height: 45px; border: 1px solid var(--cream); border-radius: 10px; background: #fff; padding: 0 13px; outline: none; color: var(--charcoal); font: 500 14px var(--font-sans); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.calc-field input:focus { border-color: rgba(37,69,255,.65); box-shadow: 0 0 0 3px rgba(37,69,255,.09); }
.calc-field input[aria-invalid="true"] { border-color: #ba4444; }
.calc-field__input { position: relative; display: flex; align-items: center; }
.calc-field__input b { position: absolute; left: 13px; z-index: 1; color: var(--stone); font-size: 13px; font-weight: 500; }
.calc-field__input input { padding-left: 29px; }
.calc-field__input--suffix b { right: 13px; left: auto; }
.calc-field__input--suffix input { padding: 0 34px 0 13px; }
.calc-table { border: 1px solid var(--cream); border-radius: 14px; overflow: hidden; }
.calc-table__row { display: grid; grid-template-columns: minmax(135px,1.45fr) minmax(88px,.75fr) minmax(88px,.75fr); align-items: center; gap: 12px; min-height: 50px; padding: 10px 15px; border-bottom: 1px solid var(--cream); font-size: 11.5px; }
.calc-table__row:last-child { border-bottom: 0; }
.calc-table__row > :not(:first-child) { text-align: right; }
.calc-table__head { min-height: 39px; background: rgba(240,233,225,.55); color: var(--accent-blue-deep); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.calc-table__row strong { color: var(--navy); font-weight: 650; white-space: nowrap; }
.calc-table__row em { color: #188b54; font-style: normal; font-weight: 650; }
.calc-table__total { background: rgba(246,243,241,.62); font-weight: 650; }
.savings-result { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 18px; padding: 18px 20px; border: 1px solid rgba(37,69,255,.28); border-radius: 14px; background: var(--lavender); }
.savings-result small { display: block; color: var(--accent-blue-deep); font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.savings-result strong { display: block; margin-top: 3px; color: var(--navy); font-family: var(--font-display); font-size: clamp(22px,2.7vw,31px); line-height: 1.1; }
.savings-result__pct { display: flex; flex-direction: column; align-items: flex-end; flex: 0 0 auto; text-align: right; }
.savings-result__pct em { color: #188b54; font-family: var(--font-display); font-weight: 700; font-style: normal; font-size: clamp(34px, 4.4vw, 52px); line-height: 1; }
.savings-result__pct span { margin-top: 4px; color: var(--stone); font-size: 12px; }
.savings-result p { margin-top: 5px; color: var(--stone); font-size: 10.5px; }
.savings-result .btn { flex: 0 0 auto; padding-inline: 19px; font-size: 12px; }
.savings-result.is-negative .savings-result__pct em { color: var(--accent-blue-deep); }
.savings-calculator__note { margin: 13px 2px 0; color: var(--stone); font-size: 10.5px; line-height: 1.5; }
/* Sections cascade in when the calculator scrolls into view */
.savings-calculator.in .calc-field,
.savings-calculator.in .calc-table__row,
.savings-calculator.in .savings-result { animation: hvizContent .5s var(--ease) both; }
.savings-calculator.in .calc-field:nth-of-type(1) { animation-delay: .08s; }
.savings-calculator.in .calc-field:nth-of-type(2) { animation-delay: .16s; }
.savings-calculator.in .calc-field:nth-of-type(3) { animation-delay: .24s; }
.savings-calculator.in .calc-field:nth-of-type(4) { animation-delay: .32s; }
.savings-calculator.in .calc-table__row:nth-child(1) { animation-delay: .2s; }
.savings-calculator.in .calc-table__row:nth-child(2) { animation-delay: .3s; }
.savings-calculator.in .calc-table__row:nth-child(3) { animation-delay: .4s; }
.savings-calculator.in .calc-table__row:nth-child(4) { animation-delay: .5s; }
.savings-calculator.in .calc-table__row:nth-child(5) { animation-delay: .6s; }
.savings-calculator.in .savings-result { animation-delay: .68s; }
@media (prefers-reduced-motion: reduce) {
  .savings-calculator.in .calc-field,
  .savings-calculator.in .calc-table__row,
  .savings-calculator.in .savings-result { animation: none; }
}
@media (max-width: 820px) {
  .savings-calculator { grid-template-columns: 1fr; }
  .savings-calculator__inputs { border-right: 0; border-bottom: 1px solid var(--cream); }
}
@media (max-width: 560px) {
  .savings-calculator { border-radius: 16px; }
  .savings-calculator__inputs, .savings-calculator__comparison { padding: 22px 16px; }
  .calc-table { overflow-x: auto; }
  .calc-table__row { min-width: 470px; }
  .savings-result { align-items: stretch; flex-direction: column; }
  .savings-result .btn { width: 100%; }
}

/* =========================================================================
   Final CTA — layered indigo / mint geometry from the hero system
   ========================================================================= */
.final { padding-bottom: var(--gap); }
.final__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(132deg, #1b2870 0%, #2a3ac6 60%, #3a49ac 100%);
  color: #fff;
  border: 1px solid rgba(12,23,84,.16);
  border-radius: 24px;
  padding: clamp(48px, 7vw, 88px) clamp(24px, 5vw, 64px);
  text-align: center;
}
.final__card::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -24% 62% -26% -14%;
  background: linear-gradient(135deg, rgba(12,23,84,.16), rgba(12,23,84,.02));
  clip-path: polygon(0 0, 100% 0, 66% 100%, 0 88%);
}
.final__card::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 72%;
  right: -12%;
  top: 52%;
  bottom: -30%;
  background: linear-gradient(145deg, #14663f 0%, #22a565 52%, #a7d9c0 100%);
  opacity: .85;
  clip-path: polygon(32% 0, 100% 10%, 100% 100%, 0 100%);
}
.final__card > * { position: relative; z-index: 1; }
.final__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; letter-spacing: -0.025em; max-width: none; margin-inline: auto; white-space: nowrap; }
.final__title .ital { color: #fff; background: none; -webkit-text-fill-color: #fff; }
.final__lead { max-width: 46ch; margin: 18px auto 0; color: rgba(255,255,255,.9); }
.final__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
@media (max-width: 760px) {
  .final__title { white-space: normal; max-width: 20ch; }
}

/* =========================================================================
   Stat band (full-bleed navy interstitial)
   ========================================================================= */
.statband { background: var(--navy); color: #fff; padding-block: clamp(64px, 10vw, 120px); text-align: center; overflow: hidden; }
.statband__eyebrow { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 14px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255, 255, 255, 0.88); margin-bottom: clamp(24px, 4vw, 40px); }
.statband__line { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.8rem, 4.4vw, 3.2rem); line-height: 1.2; letter-spacing: -0.02em; max-width: 22ch; margin-inline: auto; }
.statband .ital { color: #fff; background: none; -webkit-text-fill-color: #fff; }
.statband__mark { position: relative; display: inline-block; white-space: nowrap; }
.statband__mark-t { position: relative; z-index: 1; }
.statband__circle { position: absolute; left: 50%; top: 52%; transform: translate(-50%, -50%) rotate(-5deg); width: 176%; height: 128%; z-index: 0; pointer-events: none; }
.statband__circle path { stroke: #22a565; stroke-width: 4; stroke-linecap: round; stroke-dasharray: 100; stroke-dashoffset: 100; transition: stroke-dashoffset 1s var(--ease) 0.3s; }
.statband__circle.is-drawn path { stroke-dashoffset: 0; }
@media (prefers-reduced-motion: reduce) {
  .statband__circle path { stroke-dashoffset: 0; transition: none; }
}

/* =========================================================================
   Footer (navy)
   ========================================================================= */
.site-footer { position: relative; background: var(--navy); color: #fff; padding-block: clamp(44px, 5vw, 72px) clamp(20px, 2.4vw, 28px); overflow: hidden; }
.footer-accent { position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, #2545ff, #4b7bff 45%, #22a565); }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 6px; }
.footer-top .wordmark__img { height: 36px; }
.footer-nav { display: flex; align-items: center; flex-wrap: wrap; }
.footer-nav a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.85); transition: color 0.2s var(--ease); }
.footer-nav a:hover { color: #fff; }
.footer-nav a:not(:last-child)::after { content: "·"; margin: 0 16px; color: rgba(255,255,255,0.35); }
.footer-mid { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: clamp(14px, 1.6vw, 20px); }
.footer-addr { font-style: normal; font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-email { position: relative; overflow: hidden; isolation: isolate; display: inline-flex; align-items: center; padding: 12px 26px; border: 1px solid rgba(255, 255, 255, 0.28); border-radius: 999px; font-size: 16px; font-weight: 700; color: #fff; transition: border-color 0.2s var(--ease); }
.footer-email:hover { border-color: rgba(255, 255, 255, 0.55); }
/* Blue→green gradient ripple washing over the button on hover */
.footer-email::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: 0; background: linear-gradient(100deg, transparent 40%, rgba(37, 69, 255, 0.7) 48%, rgba(34, 165, 101, 0.65) 54%, transparent 62%); background-size: 250% 100%; background-position: 160% 0; }
.footer-email:hover::before { opacity: 1; animation: emailScan 3.2s linear infinite; }
@keyframes emailScan { from { background-position: 128% 0; } to { background-position: -52% 0; } }
.footer-divider { height: 1px; background: rgba(255,255,255,0.14); margin: clamp(24px, 3vw, 36px) 0 20px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.5); text-align: center; }

/* Back-to-top button */
.to-top { position: fixed; right: clamp(16px, 3vw, 32px); bottom: clamp(16px, 3vw, 32px); width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(12,23,84,0.24); opacity: 0; visibility: hidden; transform: translateY(12px) scale(0.9); transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), background 0.2s var(--ease); z-index: 50; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--cobalt); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(37,69,255,0.32); }
.to-top svg { width: 20px; height: 20px; }
@media (prefers-reduced-motion: reduce) { .to-top { transition: opacity 0.2s var(--ease); transform: none; } .to-top:hover { transform: none; } .to-top.show { transform: none; } }

/* =========================================================================
   Chat widget (fixed, part of the identity)
   ========================================================================= */
.chat { position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%); width: min(380px, calc(100vw - 32px)); background: var(--paper); border: 1px solid var(--smoke); border-radius: 16px; box-shadow: 0 8px 32px rgba(12,23,84,0.12); padding: 16px; z-index: 45; }
.chat.hide { display: none; }
.chat__head { display: flex; align-items: center; gap: 10px; }
.chat__avatar { width: 30px; height: 30px; border-radius: 9999px; background: var(--cobalt); flex-shrink: 0; display: grid; place-items: center; color: #fff; font-size: 14px; }
.chat__q { font-size: 14px; font-weight: 500; color: var(--charcoal); }
.chat__close { margin-left: auto; color: var(--stone); font-size: 18px; line-height: 1; }
.chat__close:hover { color: var(--charcoal); }
.chat__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chat__chips a { font-size: 12.5px; color: var(--charcoal); background: var(--canvas); border: 1px solid var(--cream); border-radius: 100px; padding: 7px 13px; transition: background 0.2s var(--ease); }
.chat__chips a:hover { background: var(--lavender); }

/* =========================================================================
   Reveal
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
.reveal.in { opacity: 1; transform: none; transition-delay: calc(var(--i, 0) * 60ms); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* FAQ questions cascade in together the moment the card enters (grouped, not per-row) */
.faq__list > details { opacity: 0; transform: translateY(14px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.faq__list.faq-in > details { opacity: 1; transform: none; }
.faq__list.faq-in > details:nth-child(2) { transition-delay: 0.08s; }
.faq__list.faq-in > details:nth-child(3) { transition-delay: 0.16s; }
.faq__list.faq-in > details:nth-child(4) { transition-delay: 0.24s; }
.faq__list.faq-in > details:nth-child(5) { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) { .faq__list > details { opacity: 1; transform: none; transition: none; } }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 900px) {
  .nav, .header__actions .login { display: none; }
  .header__actions { margin-left: auto; }
  .nav-toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .mockstack { max-width: 460px; }
  .vetting-viz { width: 100%; max-width: 620px; margin-inline: auto; justify-self: center; }
  .access-viz { width: 100%; max-width: 620px; margin-inline: auto; justify-self: center; }
  .quality-viz { width: 100%; max-width: 620px; margin-inline: auto; justify-self: center; }
  .steps { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; }
  .feature--rev > * { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .faq { grid-template-columns: 1fr; }
  .faq__left { position: static; }
  .faq__intro { margin-top: 18px; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero__proof { flex-wrap: wrap; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .chat { left: 16px; right: 16px; transform: none; width: auto; }
  .faq__list { border-radius: 16px; }
  .faq__list summary { gap: 14px; padding: 20px 18px; }
  .faq__question { font-size: 15.5px; }
  .faq__a { padding: 0 58px 22px 18px; font-size: 14px; }
  .vetting-viz { padding-top: 30px; }
  .vetting-viz__panel { height: auto; min-height: 0; padding: 20px 16px; border-radius: 16px; }
  .vetting-viz__behind { inset: 20px 5px 0 8px; border-radius: 16px; }
  .vetting-viz__head strong { font-size: 16px; }
  .vetting-trail { margin: 34px -7px 26px; }
  .vetting-trail__line { top: 17px; }
  .vetting-trail__pulse { top: 13px; }
  .vetting-stage { gap: 8px; padding-inline: 2px; }
  .vetting-stage__node { width: 34px; height: 34px; font-size: 12px; }
  .vetting-stage > span:last-child { font-size: 8.5px; }
  .vetting-evidence { height: auto; min-height: 0; grid-template-columns: 1fr; gap: 14px; padding: 15px; }
  .vetting-evidence__rows { padding: 12px 0 0; border-top: 1px solid var(--cream); border-left: 0; }
  .vetting-viz__foot { align-items: flex-start; flex-direction: column; }
  .vetting-viz__foot strong { width: 100%; text-align: center; }
  .access-viz { padding-top: 26px; }
  .access-viz__panel { height: auto; min-height: 0; padding: 20px 16px; border-radius: 16px; }
  .access-viz__behind { inset: 17px 5px 0 8px; border-radius: 16px; }
  .access-path { margin: 34px -7px 26px; }
  .access-path__line { top: 17px; }
  .access-path__pulse { top: 13px; }
  .access-detail { height: auto; min-height: 0; }
  .access-stage__node { width: 34px; height: 34px; }
  .access-stage__node svg { width: 17px; height: 17px; }
  .access-stage b { font-size: 9px; }
  .access-stage small { font-size: 7px; }
  .access-viz__foot { align-items: flex-start; flex-direction: column; }
  .quality-viz { padding-top: 26px; }
  .quality-viz__panel { height: auto; min-height: 0; padding: 20px 14px; border-radius: 16px; }
  .quality-viz__behind { inset: 17px 5px 0 8px; border-radius: 16px; }
  .quality-chart__labels { font-size: 8px; }
  .quality-signals { gap: 6px; }
  .quality-signal { min-height: 92px; padding-inline: 4px; }
  .quality-signal__dot { top: 8px; left: 8px; }
  .quality-signal span { font-size: 9px; }
  .quality-signal strong { font-size: 17px; }
  .quality-signal b { font-size: 8.5px; }
  .quality-insight__body { align-items: flex-start; flex-direction: column; gap: 10px; }
  .quality-insight__body strong, .quality-insight__body p { white-space: normal; }
}

/* ───────────── Scroll extras (js/scroll-extras.js) ───────────── */
/* Scroll progress rail */
.scroll-rail { position: fixed; top: 0; left: 0; right: 0; height: 3px; transform: scaleX(0); transform-origin: 0 50%; background: linear-gradient(90deg, var(--cobalt), #22a565); z-index: 100; pointer-events: none; }

/* CTA green corner drifts into place on entry (var driven by GSAP) */
.final__card::after { transform: translate(var(--cx, 0px), var(--cy, 0px)); }

@media (prefers-reduced-motion: reduce) {
  .scroll-rail { display: none; }
}
