/* ============================================================
   Health Enrollment Center — Design System
   Direction C: "Fresh & energetic" — vivid blue→cyan→green
   gradients, glassy cards, motion-forward.
   ============================================================ */

:root {
  /* Ink / neutrals (cool, slightly teal) */
  --ink:         #07182a;
  --ink-2:       #223244;
  --bg:          #ffffff;
  --bg-soft:     #f1faf8;   /* faint mint */
  --bg-tint:     #e4f5f1;
  --line:        #e2eeeb;
  --line-strong: #c6ddd7;
  --muted:       #47606a;
  --muted-2:     #6a828c;

  /* Brand — blue through cyan to green */
  --blue:        #2563eb;
  --blue-600:    #1d4ed8;
  --blue-700:    #1e40af;
  --cyan:        #06b6d4;
  --teal:        #12b3a6;
  --green:       #10b981;
  --emerald:     #059669;
  --sky:         #8be9ff;   /* bright accent on dark */
  --sky-soft:    #e2f7fb;
  --mint-soft:   #dbf6ec;

  /* Signature gradients */
  --grad-brand:  linear-gradient(120deg, #2563eb 0%, #06b6d4 52%, #10b981 100%);
  --grad-brand-soft: linear-gradient(120deg, #3b82f6, #22d3ee 55%, #34d399);
  --grad-hero:   linear-gradient(135deg, #0a2a86 0%, #0e6f9e 44%, #0a8f6b 100%);
  --grad-cta:    linear-gradient(135deg, #22d3ee 0%, #10b981 100%);
  --cta-ink:     #04241d;

  /* Glass */
  --glass-bg:     rgba(255,255,255,.10);
  --glass-bg-2:   rgba(255,255,255,.16);
  --glass-border: rgba(255,255,255,.22);
  --glass-blur:   blur(16px) saturate(160%);

  --good:        #10b981;
  --bad:         #e11d48;
  --warn:        #f59e0b;

  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(7,24,42,.05), 0 1px 1px rgba(7,24,42,.04);
  --shadow:    0 10px 30px -10px rgba(7,24,42,.18), 0 2px 8px -3px rgba(7,24,42,.10);
  --shadow-lg: 0 30px 70px -28px rgba(7,24,42,.38), 0 10px 24px -12px rgba(7,24,42,.18);
  --shadow-glow: 0 24px 60px -22px rgba(6,182,212,.5);

  --container: 1240px;
  --container-tight: 980px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.55;
}
img, svg, video { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }
hr { border: 0; border-top: 1px solid var(--line); margin: 32px 0; }

/* The header is sticky and, with the government-disclosure banner above it,
   occupies roughly 150-165px. Without this, anything reached by an #anchor
   lands at y=0 and sits entirely underneath it: /job-application#apply put the
   application form behind the header, and the glossary — where each of 26 terms
   is its own anchor and a search result can deep-link to any of them — would
   have done the same on every arrival.
   Only affects fragment navigation and scrollIntoView, so it is safe globally. */
[id] { scroll-margin-top: 176px; }

/* Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-tight { max-width: var(--container-tight); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 120px 0; }
@media (max-width: 720px){
  .section { padding: 60px 0; }
  .section-lg { padding: 76px 0; }
}

/* Type */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.eyebrow.on-dark { background: none; -webkit-text-fill-color: initial; color: var(--sky); }
.eyebrow::before {
  content: ""; display: inline-block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--cyan); opacity: .8;
}
.eyebrow.on-dark::before { background: var(--sky); }

h1, h2, h3, h4 { font-family: var(--font-sans); color: var(--ink); margin: 0 0 .4em; }
h1 { font-size: clamp(40px, 6vw, 74px); line-height: 1.02; letter-spacing: -0.028em; font-weight: 700; text-wrap: balance; }
h2 { font-size: clamp(30px, 4vw, 50px); line-height: 1.06; letter-spacing: -0.024em; font-weight: 700; text-wrap: balance; }
h3 { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.2; letter-spacing: -0.012em; font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.005em; }
p { margin: 0 0 1em; color: var(--ink-2); text-wrap: pretty; }
.lede { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.45; color: var(--muted); max-width: 60ch; }
.muted { color: var(--muted); }
.mono { font-family: var(--font-mono); font-feature-settings: "tnum","ss01"; }
.grad-text { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 16px; line-height: 1;
  border: 1px solid transparent;
  transition: transform .1s ease, box-shadow .2s ease, filter .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 18px 30px; font-size: 17px; }
.btn-sm { padding: 10px 16px; font-size: 14px; }

.btn-primary   { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { filter: brightness(1.06); box-shadow: var(--shadow-glow); }
.btn-blue      { background: var(--grad-cta); color: var(--cta-ink); box-shadow: 0 8px 22px -8px rgba(16,185,129,.6); }
.btn-blue:hover { filter: brightness(1.05); box-shadow: var(--shadow-glow); }
.btn-hot       { background: var(--grad-cta); color: var(--cta-ink); box-shadow: 0 10px 26px -8px rgba(16,185,129,.55); }
.btn-hot:hover { filter: brightness(1.05); }
.btn-white     { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-white:hover { background: #f2fbf9; }
.btn-ghost     { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--teal); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.32); }
.btn-ghost.on-dark:hover { background: rgba(255,255,255,.1); }
.btn .arr { transition: transform .15s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* Phone CTA — glassy-vivid */
.phone-cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px 14px 18px; border-radius: var(--radius-pill);
  background: var(--grad-cta); color: var(--cta-ink);
  font-weight: 700; letter-spacing: -.01em;
  box-shadow: 0 10px 26px -10px rgba(16,185,129,.6);
  transition: transform .1s ease, box-shadow .2s ease, filter .2s ease;
}
.phone-cta:hover { text-decoration: none; transform: translateY(-2px); filter: brightness(1.05); box-shadow: var(--shadow-glow); }
.phone-cta .ph-ico {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(4,36,29,.14);
  display: grid; place-items: center; flex: 0 0 36px;
}
.phone-cta .ph-num { font-family: var(--font-mono); font-size: 19px; font-feature-settings: "tnum"; letter-spacing: -.01em; white-space: nowrap; }
.phone-cta .ph-sub { display: block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .72; margin-top: 2px; white-space: nowrap; }
.phone-cta-lg { padding: 22px 30px 22px 22px; }
.phone-cta-lg .ph-num { font-size: 28px; }
.phone-cta-lg .ph-ico { width: 48px; height: 48px; flex: 0 0 48px; }
/* On the dark hero, render the phone pill as frosted glass */
.on-dark-glass .phone-cta, .phone-cta.glass {
  background: var(--glass-bg-2); color: #fff; border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 12px 30px -14px rgba(0,0,0,.5);
}
.on-dark-glass .phone-cta .ph-ico, .phone-cta.glass .ph-ico { background: rgba(255,255,255,.16); }

/* Phone slot hidden until JS swaps it */
[data-phone-slot] { visibility: hidden; }
[data-phone-slot].ready { visibility: visible; }
[hidden] { display: none !important; }

/* Agent availability pill */
.agents-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: var(--radius-pill);
  background: rgba(16,185,129,.12); color: var(--emerald);
  font-size: 13px; font-weight: 600;
}
.agents-pill.off { background: rgba(100,116,139,.12); color: #475569; }
.agents-pill .dot {
  width: 8px; height: 8px; border-radius: 50%; background: #10b981;
  box-shadow: 0 0 0 0 rgba(16,185,129,.7); animation: pulse 1.8s infinite;
}
.agents-pill.off .dot { background: #94a3b8; animation: none; }
.agents-pill.on-dark {
  background: rgba(255,255,255,.12); color: #d6fff2;
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(52,211,153,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

/* Cards */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px;
}
.card-hover { transition: border-color .18s ease, transform .18s ease, box-shadow .25s ease; }
.card-hover:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-3px); }

/* Forms */
input[type=text], input[type=email], input[type=tel], input[type=number], select, textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong); background: #fff;
  font: inherit; color: var(--ink); transition: border-color .12s ease, box-shadow .12s ease;
}
input:focus, select:focus, textarea:focus {
  outline: 0; border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(6,182,212,.18);
}
label { display: block; font-size: 14px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.field { margin-bottom: 18px; }

/* ZIP search bar */
.zip-bar {
  display: flex; align-items: stretch; gap: 6px;
  background: #fff; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  padding: 7px 7px 7px 8px; max-width: 480px;
  border: 1px solid rgba(255,255,255,.6);
  transition: box-shadow .18s ease;
}
/* Lift the whole pill when the field is focused, so the search feels active. */
.zip-bar:focus-within { box-shadow: var(--shadow-lg), 0 0 0 4px rgba(6,182,212,.24); }
.zip-bar input {
  /* min-width:0 so the input can actually shrink inside the flex row instead of
     clipping its own placeholder; the button is what gives ground on narrow
     screens, since the input is the field people have to read. */
  flex: 1 1 auto; min-width: 0; border: 0; padding: 15px 20px; border-radius: var(--radius-pill);
  font-size: 18px; font-weight: 600; letter-spacing: .04em; font-family: var(--font-mono);
}
.zip-bar input:focus { box-shadow: none; }
.zip-bar button { border: 0; white-space: nowrap; }
@media (max-width: 480px){
  .zip-bar input { padding: 15px 14px; font-size: 17px; letter-spacing: 0; }
  .zip-bar button { padding-left: 18px; padding-right: 18px; }
}

/* ============================================================
   Progressive lead form (form.js)
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.lead-form { max-width: 560px; margin: 0; }
/* The standalone .zip-bar caps itself at 480px; inside the form the form's own
   max-width governs, otherwise the button label crowds the ZIP placeholder out. */
.lead-form .zip-bar { max-width: none; }
@media (max-width: 560px){
  /* Stack rather than shrink. Side by side, the CTA label eats two thirds of the
     row and clips the ZIP placeholder — and the placeholder is the instruction.
     Stacked also gives both controls a full-width tap target. */
  .lead-form .zip-bar { flex-direction: column; gap: 8px; border-radius: var(--radius); padding: 8px; }
  .lead-form .zip-bar input { width: 100%; text-align: center; border-radius: var(--radius-sm); }
  .lead-form .zip-bar button { width: 100%; justify-content: center; padding: 16px 20px; }
}
.lead-form fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
/* Off-screen rather than display:none — bots have learned to skip hidden inputs,
   and some browsers skip autofill on them, which would defeat the honeypot. */
.lf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Steps 2 and 3 are a white panel so the form reads at full contrast on the dark
   hero. Step 1 stays the bare pill, which is the shape people recognise. */
.lf-panel,
.lead-form fieldset.lf-panel {
  position: relative; overflow: hidden;
  background: #fff; border-radius: var(--radius-lg); padding: 30px 30px 28px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
/* Signature gradient hairline across the top of every panel. */
.lf-panel::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad-cta);
}
/* Each panel rises in when its step becomes visible (form.js toggles [hidden],
   and display:none -> block restarts the animation). Step 1 is the bare pill,
   so this never fires on first paint and never scroll-jacks. */
@keyframes lf-rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.lf-step.lf-panel:not([hidden]) { animation: lf-rise .34s cubic-bezier(.16,.84,.44,1); }
@media (prefers-reduced-motion: reduce){ .lf-step.lf-panel:not([hidden]) { animation: none; } }
.lf-panel__title { font-size: 21px; letter-spacing: -.012em; margin: 0 0 8px; }
.lf-panel__lede { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0 0 22px; }
/* .hero-dark paints all descendant <p> white; the panel is white, so undo it.
   The closing CTA strip is the same situation - a gradient panel that sets
   color:#fff on everything inside it - so it takes the same overrides. */
.hero-dark .lf-panel p, .hero-dark .lf-panel label, .hero-dark .lf-panel legend,
.cta-strip .lf-panel p, .cta-strip .lf-panel label, .cta-strip .lf-panel legend { color: var(--muted); }
.hero-dark .lf-panel h3, .hero-dark .lf-panel strong,
.cta-strip .lf-panel h3, .cta-strip .lf-panel strong { color: var(--ink); }

.lf-note { margin: 12px 0 0; font-size: 13px; color: var(--muted); }
.hero-dark .lf-note, .cta-strip .lf-note { color: rgba(255,255,255,.66); }
.hero-form { max-width: 560px; }
.hero-or {
  display: flex; align-items: center; gap: 12px; margin: 18px 0;
  color: rgba(255,255,255,.5); font-size: 12px; text-transform: uppercase; letter-spacing: .1em;
}
.hero-or::before, .hero-or::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,.18); }

/* Progress */
.lf-progress { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.lf-progress__track { flex: 1; height: 6px; border-radius: 999px; background: rgba(255,255,255,.24); overflow: hidden; }
.lf-progress__bar {
  display: block; height: 100%; width: 0; border-radius: 999px; background: var(--grad-cta);
  box-shadow: 0 0 12px rgba(16,185,129,.55);
  transition: width .45s cubic-bezier(.16,.84,.44,1);
}
.lf-progress__text { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.78); white-space: nowrap; }
/* On a light section the white-on-white track and label would vanish. */
.section .lf-progress__track { background: var(--line); }
.section .lf-progress__text { color: var(--muted-2); }

/* Fields */
.lf-field { margin-bottom: 18px; }
.lf-field label { font-size: 13px; font-weight: 600; letter-spacing: .01em; color: var(--ink-2); margin-bottom: 7px; }
/* Fields inside a panel: taller, rounder, and tinted at rest so the empty form
   reads as a set of clear targets, then snap to white on focus. */
.lead-form input[type=text], .lead-form input[type=email],
.lead-form input[type=tel], .lead-form select {
  padding: 15px 16px; border-radius: 12px; border: 1.5px solid var(--line-strong);
  font-size: 16px; background: var(--bg-soft);
  transition: border-color .14s ease, box-shadow .14s ease, background .14s ease;
}
.lead-form input[type=text]:focus, .lead-form input[type=email]:focus,
.lead-form input[type=tel]:focus, .lead-form select:focus {
  background: #fff; border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(6,182,212,.16);
}
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px){ .lf-row { grid-template-columns: 1fr; gap: 0; } }
.lf-field select { width: 100%; }
.lead-form input.has-error, .lead-form select.has-error { border-color: var(--bad); }
.lead-form input.has-error:focus, .lead-form select.has-error:focus { box-shadow: 0 0 0 4px rgba(225,29,72,.16); }
.lf-error { margin: 6px 0 0; font-size: 13px; font-weight: 500; color: var(--bad); }
.lf-error--block { margin-top: 12px; }
/* The ZIP error sits on the dark hero, where --bad is barely legible. */
.lf-error--onhero { color: #ffd7de; margin-top: 10px; }
.section .lf-error--onhero { color: var(--bad); }
.lf-suggest { margin: -10px 0 16px; font-size: 13px; color: var(--muted); }
.link-btn {
  background: none; border: 0; padding: 0; font: inherit; font-weight: 600;
  color: var(--blue); text-decoration: underline; cursor: pointer;
}

/* Radio cards — the two-tap heart of step 2. Each card carries its own radio
   indicator (a ring that fills with a gradient check when chosen), so the
   selected state reads instantly rather than relying on a faint background. */
.lf-group { margin-bottom: 22px; }
/* Two questions live in one step. A numbered badge + a hairline divider make it
   unmistakable that these are two separate choices, not one list of four. */
.lf-step[data-step="needs"] { counter-reset: lfq; }
.lf-group legend {
  font-size: 15.5px; font-weight: 700; color: var(--ink);
  margin-bottom: 13px; padding: 0;
}
.lf-step[data-step="needs"] .lf-group legend::before {
  counter-increment: lfq; content: counter(lfq);
  display: inline-flex; align-items: center; justify-content: center;
  width: 21px; height: 21px; margin-right: 9px; vertical-align: -4px;
  border-radius: 50%; background: var(--grad-cta); color: #fff;
  font-size: 12px; font-weight: 700;
}
.lf-group + .lf-group { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line); }
.lf-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lf-card {
  position: relative; display: flex; align-items: flex-start; gap: 12px;
  margin: 0; padding: 17px 16px 17px 17px; cursor: pointer;
  border: 1.5px solid var(--line-strong); border-radius: 14px; background: #fff;
  transition: border-color .15s ease, background .15s ease, transform .15s ease, box-shadow .2s ease;
}
.lf-card:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 14px 26px -16px rgba(7,24,42,.3); }
.lf-card input { position: absolute; opacity: 0; width: 1px; height: 1px; }
/* The radio indicator. Unchecked: an empty ring. Checked: gradient fill with a
   white checkmark layered on top (two stacked backgrounds). */
.lf-card::before {
  content: ""; flex: 0 0 22px; width: 22px; height: 22px; margin-top: 1px;
  border-radius: 50%; border: 2px solid var(--muted-2); background: #fff;
  transition: border-color .15s ease, background .15s ease;
}
.lf-card:hover::before { border-color: var(--teal); }
.lf-card__body { flex: 1; min-width: 0; }
.lf-card__body strong { display: block; font-size: 15.5px; color: var(--ink); line-height: 1.25; }
.lf-card__body small { display: block; margin-top: 3px; font-size: 12.5px; color: var(--muted-2); line-height: 1.4; }
.lf-card:has(input:checked) {
  border-color: var(--teal);
  background: linear-gradient(180deg, var(--bg-soft), #fff);
  box-shadow: 0 12px 28px -18px rgba(18,179,166,.75);
}
.lf-card:has(input:checked)::before {
  border-color: var(--teal);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/13px no-repeat,
    var(--grad-cta);
}
/* :focus-visible on the input, styled on the card, so keyboard users can see
   where they are — the input itself is visually hidden. */
.lf-card:has(input:focus-visible) { outline: 2px solid var(--cyan); outline-offset: 2px; }

/* Consent — boxed in a soft tint so the fine print reads as a deliberate,
   legible step rather than an afterthought crammed under the fields. */
.lf-consent {
  display: flex; gap: 12px; align-items: flex-start; margin: 6px 0 0; padding: 14px 15px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px;
  font-size: 12.5px; line-height: 1.55; font-weight: 400; color: var(--muted); cursor: pointer;
}
.lf-consent input {
  flex: 0 0 20px; width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--teal); cursor: pointer;
}
.lf-consent a { color: var(--ink-2); text-decoration: underline; }
.hero-dark .lf-consent, .hero-dark .lf-consent span { color: var(--muted); }

.lf-submit { width: 100%; justify-content: center; margin-top: 20px; font-size: 17px; }
.lf-back {
  display: inline-block; margin-top: 14px; background: none; border: 0; padding: 4px 0;
  font: inherit; font-size: 13.5px; color: var(--muted-2); cursor: pointer;
}
.lf-back:hover { color: var(--ink-2); }

/* Thank-you / confirmation */
.ty-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--grad-cta); color: var(--cta-ink); box-shadow: var(--shadow-glow);
}
.ty-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.ty-steps li { display: flex; gap: 16px; align-items: flex-start; }
.ty-step__n {
  flex: 0 0 32px; height: 32px; border-radius: 50%; background: var(--bg-tint);
  color: var(--emerald); font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.ty-steps strong { display: block; font-size: 17px; color: var(--ink); margin-bottom: 4px; }
.ty-steps p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--muted); }

/* Header */
/* Stickiness lives on the wrapper, not on .site-header itself: site.js injects
   the header into <div data-site-header>, and a sticky box can only travel
   within its own parent — so `position:sticky` on .site-header was inert.
   Offset by the sticky disclaimer banner above it; site.js measures the banner
   into --ngb-h, and without JS there is no header to collide with. */
[data-site-header] { position: sticky; top: var(--ngb-h, 0px); z-index: 50; }
.site-header {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; gap: 24px;
  padding: 12px 24px; max-width: var(--container); margin: 0 auto;
}
.site-header__logo { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.site-header__logo:hover { text-decoration: none; }
.site-header__logo strong { font-weight: 700; letter-spacing: -.018em; font-size: 18px; }
/* The sub-line is a compliance line: it may wrap, but it must never truncate.
   Capping its width keeps the logo block from starving the phone CTA of space. */
.site-header__logo small { display: block; color: var(--muted-2); font-size: 10.5px; line-height: 1.35; letter-spacing: .04em; text-transform: uppercase; max-width: 31ch; }
.brand-mark { width: 40px; height: 40px; flex: 0 0 40px; object-fit: contain; }

.site-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.site-nav > a, .site-nav .has-menu > a {
  color: var(--ink-2); padding: 8px 10px; border-radius: 8px;
  font-size: 14.5px; font-weight: 500; white-space: nowrap;
}
.site-nav > a:hover, .site-nav .has-menu > a:hover { color: var(--ink); background: var(--bg-soft); text-decoration: none; }
.site-nav .has-menu { position: relative; }
.site-nav .menu {
  position: absolute; top: 100%; left: 0; min-width: 262px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; pointer-events: none; transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease;
}
.site-nav .has-menu:hover .menu,
.site-nav .has-menu:focus-within .menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.site-nav .menu a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--ink-2); }
.site-nav .menu a:hover { background: var(--bg-soft); text-decoration: none; }
.site-nav .menu a small { display: block; color: var(--muted-2); font-size: 12px; margin-top: 2px; font-weight: 400; }

.site-header__cta { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; background: transparent; border: 1px solid var(--line); padding: 10px; border-radius: 10px; }
@media (max-width: 980px) {
  .site-nav, .site-header__cta .desktop-only { display: none; }
  .hamburger { display: inline-flex; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 100; background: #fff; padding: 24px;
  display: none; flex-direction: column; overflow-y: auto;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.mobile-drawer a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 18px; color: var(--ink); font-weight: 500; }

/* Footer */
.site-footer { background: var(--ink); color: #b8c9d4; padding: 64px 0 32px; margin-top: 80px; position: relative; overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad-brand);
}
.site-footer h4 { color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: #b8c9d4; display: block; padding: 4px 0; font-size: 14.5px; }
.site-footer a:hover { color: #fff; text-decoration: none; }
/* The generic .site-footer a rule (display:block, grey text, thin padding) has
   higher specificity than .phone-cta and was collapsing the footer call button
   into a full-width block with the wrong text colour. Restore the pill here. */
.site-footer .phone-cta { display: inline-flex; padding: 14px 22px 14px 18px; color: var(--cta-ink); }
.site-footer .phone-cta:hover { color: var(--cta-ink); }
.site-footer .brand-mark { filter: brightness(0) invert(1); }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 24px;
  display: flex; gap: 16px; justify-content: space-between; flex-wrap: wrap;
  font-size: 13px; color: #8aa0ac;
}
.site-footer__disclaimer {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px; line-height: 1.55; color: #8aa0ac; max-width: 100%;
}
.site-footer__disclaimer strong { color: #dbe7ee; }
.site-footer__disclaimer a { color: #b8cbd6; text-decoration: underline; }

/* Regulatory disclosures, emitted as static HTML after the JS-mounted footer
   so they survive with JavaScript disabled or blocked. */
.static-disclaimer { background: var(--ink); padding: 0 0 40px; }
.static-disclaimer .site-footer__disclaimer { margin-top: 0; border-top: 0; padding-top: 0; }

/* The disclaimer is sticky above the header because the header is sticky too;
   a disclosure that scrolls away while the branding stays pinned is not "as
   prominent as the claim it qualifies." */
.not-gov-banner {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: #062a4d; color: #dbeafe; text-align: center;
  font-size: 13.5px; font-weight: 500; line-height: 1.5; padding: 9px 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.not-gov-banner strong { color: #fff; font-weight: 700; }
.not-gov-banner .ngb-ico { flex: 0 0 auto; color: #5eead4; }
@media (max-width: 640px){
  .not-gov-banner { font-size: 12.5px; line-height: 1.4; padding: 8px 12px; text-align: left; align-items: flex-start; gap: 7px; }
  /* Compact the sticky header on phones so the banner above it stays the
     dominant piece of chrome. The header sub-line is dropped here only because
     the banner directly above states the same thing at full size — this removes
     duplication, not disclosure. */
  .site-header__inner { gap: 10px; padding: 9px 16px; }
  .site-header__logo { gap: 10px; }
  .site-header__logo strong { font-size: 15.5px; }
  .site-header__logo small { display: none; }
  .brand-mark { width: 34px; height: 34px; flex: 0 0 34px; }
  .site-header__cta .phone-cta { padding: 9px 14px 9px 11px; gap: 8px; }
  .site-header__cta .phone-cta .ph-ico { width: 28px; height: 28px; flex: 0 0 28px; }
  .site-header__cta .phone-cta .ph-num { font-size: 15px; }
  .site-header__cta .phone-cta .ph-sub { display: none; }
}
@media (max-width: 480px){
  /* Below this width the row cannot fit the wordmark, the phone number and the
     hamburger without one of them wrapping — and the phone number is the whole
     point of the header. The wordmark drops out (the mark still links home);
     the banner directly above names both the brand and the operating entity in
     full, so nothing identifying is lost. */
  .site-header .site-header__logo > span { display: none; }
}
@media (max-width: 900px){ .site-footer__grid { grid-template-columns: 1fr 1fr; } }

/* ===================== HERO (animated gradient + glass) ===================== */
.hero-dark {
  background: var(--grad-hero);
  background-size: 180% 180%;
  animation: gradientShift 18s ease infinite;
  color: #fff; position: relative; overflow: hidden;
}
.hero-dark h1, .hero-dark h2 { color: #fff; }
.hero-dark p, .hero-dark .lede { color: rgba(255,255,255,.82); }
.hero-dark .grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 56px 56px, 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, #000 40%, transparent 78%);
  mask-image: radial-gradient(ellipse at 50% 0%, #000 40%, transparent 78%);
}
/* Floating color blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; pointer-events: none; }
.blob.b1 { width: 420px; height: 420px; background: #22d3ee; top: -120px; right: -80px; animation: float 11s ease-in-out infinite; }
.blob.b2 { width: 360px; height: 360px; background: #34d399; bottom: -140px; left: -60px; animation: float 13s ease-in-out infinite reverse; }
.blob.b3 { width: 300px; height: 300px; background: #3b82f6; top: 30%; left: 40%; opacity: .35; animation: float 15s ease-in-out infinite; }

@keyframes gradientShift { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
@keyframes float { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-22px) } }

/* Glass card (hero quote mock etc.) */
.glass-card {
  background: var(--glass-bg-2); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.55);
}

/* Carrier strip / marquee */
.carriers { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; align-items: center; padding: 24px 0; }
.carriers .car { height: 36px; display: grid; place-items: center; color: #7f97a1; font-weight: 700; font-size: 14px; letter-spacing: .04em; }
@media (max-width: 720px){ .carriers { grid-template-columns: repeat(3, 1fr); } }
/* Optional scrolling marquee variant */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 56px; width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee .car { color: #6a828c; font-weight: 700; font-size: 16px; letter-spacing: .04em; white-space: nowrap; display: flex; align-items: center; }
/* Logo treatment: consistent cap height, brand colour intact. Any carrier whose
   file is missing falls back to its text label (see the onerror in index.html),
   so the ribbon never shows a broken-image icon. */
.marquee .car img { height: 26px; width: auto; max-width: 132px; object-fit: contain; display: block; }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.stat { padding: 24px; border-left: 2px solid var(--cyan); }
.stat .n { font-size: clamp(36px, 4vw, 56px); font-weight: 700; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.stat .l { color: var(--muted); font-size: 14px; }
.stats.on-dark .stat { border-left-color: var(--sky); }
.stats.on-dark .n { color: #fff; }
.stats.on-dark .l { color: rgba(255,255,255,.68); }
@media (max-width: 720px){ .stats { grid-template-columns: 1fr 1fr; } }

/* Plan tiles */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; gap: 12px;
  transition: border-color .18s ease, transform .18s ease, box-shadow .25s ease;
  position: relative; overflow: hidden;
}
.plan::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .28s ease;
}
.plan:hover { border-color: transparent; transform: translateY(-4px); box-shadow: var(--shadow); }
.plan:hover::before { transform: scaleX(1); }
.plan .ico { width: 42px; height: 42px; border-radius: 12px; background: var(--mint-soft); color: var(--emerald); display: grid; place-items: center; transition: transform .2s ease; }
.plan:hover .ico { transform: translateY(-2px) rotate(-4deg); }
.plan h3 { margin: 4px 0 0; }
.plan .price { font-size: 14px; color: var(--muted); }
.plan .price strong { color: var(--ink); font-size: 18px; font-family: var(--font-mono); }
.plan .go { margin-top: auto; font-weight: 600; display: inline-flex; gap: 6px; align-items: center;
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.plan .go svg { color: var(--teal); }
.plan.featured { border-color: transparent; box-shadow: var(--shadow-lg); }
.plan.featured::before { transform: scaleX(1); height: 4px; }
.plan.featured::after {
  content: "Most chosen"; position: absolute; top: 14px; right: 14px;
  background: var(--grad-cta); color: var(--cta-ink); font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px; letter-spacing: .06em; text-transform: uppercase;
}
@media (max-width: 900px){ .plans { grid-template-columns: 1fr; } }

/* How-it-works step cards */
.step-card {
  display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: start;
  padding: 24px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line);
  transition: transform .18s ease, box-shadow .25s ease, border-color .18s ease;
}
.step-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--teal); }
.step-card .num {
  background: var(--grad-brand); color: #fff; border-radius: 14px; width: 56px; height: 56px;
  display: grid; place-items: center; font-weight: 700; font-size: 22px; font-family: var(--font-mono);
  box-shadow: 0 8px 20px -8px rgba(6,182,212,.6);
}

/* Feature grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature { padding: 8px; }
.feature .ic { width: 40px; height: 40px; border-radius: 12px; background: var(--mint-soft); color: var(--emerald); display: grid; place-items: center; margin-bottom: 14px; transition: transform .2s ease; }
.feature:hover .ic { transform: translateY(-3px) scale(1.05); }
.feature h3 { font-size: 18px; margin-bottom: 6px; }
.feature p { font-size: 15px; color: var(--muted); }
@media (max-width: 800px){ .features { grid-template-columns: 1fr; } }

/* Testimonials */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; margin: 0;
  transition: transform .18s ease, box-shadow .25s ease;
}
.tcard:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.tcard .stars { display: flex; gap: 4px; margin-bottom: 16px; color: #f59e0b; }
.tcard blockquote { font-size: 19px; line-height: 1.45; margin: 0 0 20px; color: var(--ink); }
.tcard figcaption { display: flex; gap: 12px; align-items: center; }
.tcard .avatar { width: 40px; height: 40px; border-radius: 50%; color: #fff; display: grid; place-items: center; font-weight: 700; }
@media (max-width: 900px){ .tgrid { grid-template-columns: 1fr; } }

/* CTA strip — gradient */
.cta-strip {
  background: var(--grad-hero); background-size: 180% 180%; animation: gradientShift 18s ease infinite;
  color: #fff; border-radius: var(--radius-lg); padding: 52px;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow-glow);
}
.cta-strip h2 { color: #fff; margin: 0; }
.cta-strip p { color: rgba(255,255,255,.8); }
@media (max-width: 800px){ .cta-strip { grid-template-columns: 1fr; padding: 34px; } }
/* The variant that carries the actual form rather than a link to one. The form
   needs real width - at 1.4fr/1fr the ZIP field and its button collide - and it
   is top-aligned because the panel grows tall on steps 2 and 3 and centring it
   makes the whole strip jump when someone advances a step. */
.cta-strip--form { grid-template-columns: 1fr 1fr; align-items: start; }
.cta-strip--form > div:first-child { align-self: center; }
@media (max-width: 900px){ .cta-strip--form { grid-template-columns: 1fr; } }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary {
  font-weight: 600; font-size: 18px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--teal); width: 24px; text-align: center; transition: transform .2s ease; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--muted); margin-top: 12px; }

/* Trust band */
.trust-band { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; padding: 20px 0; }
.trust-band .item { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--muted); }
.hero-dark .trust-band .item { color: rgba(255,255,255,.7); }
.trust-band .item svg { color: #6ee7b7; flex: 0 0 auto; }

/* State / topic chip grid */
.chip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.chip {
  border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  background: #fff; transition: all .14s ease;
}
.chip:hover { border-color: var(--teal); color: var(--ink); text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.chip .ar { color: var(--teal); font-size: 12px; transition: transform .15s ease; }
.chip:hover .ar { transform: translateX(3px); }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* Utilities */
.hidden { display: none !important; }
.flex { display: flex; gap: 12px; }
.items-center { align-items: center; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 800px){ .grid-2, .grid-3 { grid-template-columns: 1fr; } }
.mt-8{margin-top:8px} .mt-16{margin-top:16px} .mt-24{margin-top:24px} .mt-32{margin-top:32px} .mt-40{margin-top:40px}
.mb-16{margin-bottom:16px} .mb-24{margin-bottom:24px} .mb-32{margin-bottom:32px} .mb-40{margin-bottom:40px}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-dark, .cta-strip { animation: none; }
  .blob { animation: none; }
  .marquee__track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

/* Sticky mobile CTA -----------------------------------------------------------
   Desktop keeps the header phone CTA in view at all times, so this is mobile
   only — on a wide screen it would be a floating bar duplicating something
   already visible. */
.sticky-cta { display: none; }
@media (max-width: 720px){
  .sticky-cta {
    display: flex; gap: 10px; align-items: center;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.92);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 24px rgba(15,23,42,.10);
  }
  .sticky-cta[hidden] { display: none; }
  /* The form is the goal, so it takes the space; the call is a fixed-width
     companion rather than an equal partner. */
  .sticky-cta__primary { flex: 1 1 auto; justify-content: center; padding: 14px 18px; }
  .sticky-cta__call {
    flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 16px; border-radius: var(--radius);
    border: 1px solid var(--line); background: #fff; color: var(--ink);
    font-weight: 650; font-size: 15px; text-decoration: none; white-space: nowrap;
  }
  .sticky-cta__call .ph-ico { display: inline-flex; color: var(--emerald); }
  /* Clear the bar so it never sits on top of the last thing on the page —
     the footer links and the compliance disclaimer both live down there. */
  body { padding-bottom: 76px; }
}
