/* ============================================================================
   Condy — stylesheet
   ----------------------------------------------------------------------------
   Organised top to bottom as: tokens → reset → layout → components → sections
   → responsive. Nothing is minified and nothing is generated; this file is
   meant to be read and edited by hand.
   ========================================================================= */

/* --- 1. Design tokens ---------------------------------------------------- */
:root {
  /* Ink — warm near-black. Never a blue-black; that is the tell this palette
     is trying to get away from. */
  --ink:            #241a12;
  --ink-soft:       #6b574a;
  --ink-faint:      #9a877b;

  /* Ground — white, with warm sand for anything recessed. */
  --bg:             #ffffff;
  --bg-tint:        #fdf8f3;
  --bg-sunken:      #f8ece1;
  --card:           #ffffff;
  --line:           #eddece;

  /* Brand — burnt amber. */
  --brand:          #c2521b;
  --brand-deep:     #9c3f13;
  --brand-wash:     #fdefe3;
  --brand-ink:      #ffffff;

  /* Secondary warm, for background and decoration only — never for a claim. */
  --sun:            #e9a13b;
  --sun-wash:       #fdf3e2;

  /* Semantic */
  --flag:           #8a6100;   /* unverified marker */
  --flag-wash:      #fff6e0;
  --flag-line:      #f0dba8;
  --ok:             #2f7a52;

  /* Type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Space */
  --gutter:         24px;
  --max:            1120px;
  --radius:         16px;
  --radius-lg:      24px;

  /* Depth — warm-tinted, so shadows sit in the palette instead of greying it. */
  --shadow-sm:      0 1px 2px rgba(92, 54, 24, .07), 0 1px 3px rgba(92, 54, 24, .05);
  --shadow-md:      0 4px 12px rgba(92, 54, 24, .07), 0 12px 32px rgba(92, 54, 24, .06);
  --shadow-lg:      0 8px 24px rgba(92, 54, 24, .09), 0 32px 64px rgba(92, 54, 24, .09);
}

/* No dark-mode block, deliberately. The human's brief was "on white with warm
   colors, not purple/blue, all those dark scams" — the light warm palette is
   the design, not a default to be flipped. If dark mode is ever wanted it needs
   its own warm treatment, not an inversion of this one. */

/* --- 2. Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -.02em; font-weight: 700; }
p  { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* --- 3. Layout ----------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: 104px; }
.section--tinted { background: var(--bg-tint); }

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}

.section-head h2 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 20px; }
.section-head p  { color: var(--ink-soft); font-size: 18px; }

/* --- 4. Components ------------------------------------------------------- */

/* 4.1 Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--brand); color: var(--brand-ink); box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--brand-deep); }
.btn--ghost { background: var(--card); color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--light { background: #fff; color: var(--brand-deep); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }

/* 4.2 Card */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

/* 4.3 Source + unverified markers.
   These are the point of the whole build: a claim on this page shows where it
   came from, or shows that it came from nowhere. */
.src {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-faint);
  font-weight: 500;
}
.src::before { content: "source: "; opacity: .75; }

.flag {
  display: block;
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--flag-wash);
  border: 1px solid var(--flag-line);
  border-left: 3px solid var(--flag);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--flag);
  font-weight: 500;
}
.flag::before {
  content: "UNVERIFIED — confirm before publishing";
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  margin-bottom: 5px;
}

/* Hide all markers when the page is viewed as a visitor would see it. */
body.clean .src,
body.clean .flag,
body.clean #draft-banner { display: none; }

/* 4.4 Review-mode toggle — a build tool, not part of the design.
   Flips the page between "what a reviewer needs to see" and "what a visitor
   would see". Delete this block and #review-toggle in main.js when the copy is
   signed off and the markers come out. */
#review-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}
#review-toggle:hover { border-color: var(--brand); color: var(--brand); }

/* 4.4 Draft banner */
#draft-banner .banner {
  background: var(--flag-wash);
  border-bottom: 1px solid var(--flag-line);
  color: var(--flag);
  padding-block: 14px;
}
.banner-inner { display: flex; gap: 16px; align-items: flex-start; }
.banner-dot {
  flex: none; width: 9px; height: 9px; border-radius: 50%;
  background: var(--flag); margin-top: 8px;
}
.banner h2 { font-size: 15px; margin-bottom: 3px; }
.banner p  { font-size: 14px; line-height: 1.5; }
.banner-count { font-weight: 700; }
.banner-toggle {
  flex: none; margin-left: auto; align-self: center;
  background: transparent; border: 1px solid var(--flag-line);
  color: var(--flag); border-radius: 999px;
  padding: 7px 15px; font: inherit; font-size: 13px; font-weight: 600;
  cursor: pointer; white-space: nowrap;
}
.banner-toggle:hover { background: rgba(0,0,0,.04); }

/* --- 5. Sections --------------------------------------------------------- */

/* 5.1 Nav */
#nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 32px; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
  color: #fff; display: grid; place-items: center;
  font-size: 15px; font-weight: 700;
}
.nav-links { display: flex; gap: 26px; margin-left: 8px; }
.nav-links a { font-size: 15px; color: var(--ink-soft); font-weight: 500; }
.nav-links a:hover { color: var(--brand); }
.nav-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.nav-actions .login { font-size: 15px; font-weight: 500; color: var(--ink-soft); }
.nav-actions .btn { padding: 10px 20px; font-size: 15px; }

/* 5.2 Hero */
#hero {
  position: relative; overflow: hidden;
  padding-block: 84px 92px;
  background:
    radial-gradient(1100px 520px at 50% -12%, var(--sun-wash), transparent 62%),
    radial-gradient(760px 420px at 88% -4%, var(--brand-wash), transparent 58%),
    var(--bg);
}
/* A fine warm dot field, faded out as it falls. Texture you feel rather than
   notice — it stops the white from reading as an unfinished page. */
#hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(150, 100, 60, .17) 1px, transparent 0);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 74% 58% at 50% -2%, #000 8%, transparent 72%);
          mask-image: radial-gradient(ellipse 74% 58% at 50% -2%, #000 8%, transparent 72%);
}
.hero-inner { position: relative; z-index: 1; }

.hero-head { max-width: 900px; margin-inline: auto; text-align: center; }
.hero-eyebrow {
  display: inline-block;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 16px;
  font-size: 13px; font-weight: 600; color: var(--brand);
  box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.hero-head h1 {
  font-size: clamp(34px, 4.9vw, 56px);
  letter-spacing: -.028em; margin-bottom: 32px;
}
.hero-head h1 .accent { color: var(--brand); display: block; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-note { margin-top: 20px; font-size: 15px; font-weight: 500; color: var(--ink-soft); }

/* 5.3 The path
   One horizontal scroller carrying every stop on the journey. Two stops are in
   view at a time and the rest run off the right edge, so the page shows a path
   that continues rather than a summary that is already over. The rail is a
   single full-width hairline that stays put while the stops slide along it. */
.path {
  position: relative; margin-top: 76px;
  width: 100vw; margin-left: calc(50% - 50vw);
}
.path-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  max-width: var(--max); margin: 0 auto 22px;
  padding-inline: var(--gutter);
}
.path-caption {
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-faint);
}
.path-controls { display: flex; align-items: center; gap: 12px; }
.path-count { font-size: 13px; font-weight: 600; color: var(--ink-faint); }
.path-btn {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--card); border: 1px solid var(--line); color: var(--ink);
  font: inherit; font-size: 16px; cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s ease, color .15s ease, opacity .15s ease;
}
.path-btn:hover:not(:disabled) { border-color: var(--brand); color: var(--brand); }
.path-btn:disabled { opacity: .32; cursor: default; }

.path-rail { position: relative; }
.path-rail::before {
  content: ""; position: absolute; left: 0; right: 0; top: 19px; height: 2px;
  background: linear-gradient(90deg,
    transparent, var(--line) 3%, var(--line) 97%, transparent);
}

.path-track {
  display: flex; gap: 24px; margin: 0; padding: 0 0 10px; list-style: none;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-inline: max(var(--gutter), calc(50vw - (var(--max) / 2) + var(--gutter)));
  scroll-padding-inline-start: max(var(--gutter), calc(50vw - (var(--max) / 2) + var(--gutter)));
}
.path-track::-webkit-scrollbar { display: none; }

.st {
  flex: 0 0 clamp(258px, 33vw, 430px);
  scroll-snap-align: start;
  display: flex; flex-direction: column;
}
.st-marker { height: 40px; display: flex; align-items: flex-start; justify-content: center; }
.st-node {
  position: relative; z-index: 1; margin-top: 12px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--line);
}
.st--start  .st-node { border-color: var(--ink-faint); }
.st--check  .st-node { border-style: dashed; border-color: var(--ink-faint); }
.st--pay    .st-node { background: var(--brand); border-color: var(--brand); }
.st--payoff .st-node {
  width: 20px; height: 20px; margin-top: 10px;
  background: var(--brand-deep); border-color: var(--brand-deep);
}

.st-card {
  flex: 1; display: flex; flex-direction: column;
  min-height: 440px;
  margin-top: 16px; padding: 30px 28px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.st-title {
  font-size: clamp(36px, 3.8vw, 52px);
  line-height: 1; letter-spacing: -.038em;
}
.st--pay .st-title { color: var(--brand); }
.st-sub {
  align-self: flex-start; margin-top: 14px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); background: var(--bg-sunken);
  border-radius: 999px; padding: 5px 11px;
}
.st-note { flex: 1; margin-top: 20px; font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); }

.st-pay {
  margin-top: 20px; padding-top: 16px; border-top: 1px dashed var(--line);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.st-cash { font-size: 21px; font-weight: 700; letter-spacing: -.02em; color: var(--brand); }
.st-pts {
  font-size: 13px; font-weight: 700; color: var(--brand);
  background: var(--brand-wash); border-radius: 999px; padding: 5px 12px;
}
.st-tag { font-size: 14px; font-weight: 600; color: var(--ink-faint); }
.st-run { margin-left: auto; font-size: 12.5px; font-weight: 500; color: var(--ink-faint); }
.st-paynote { flex-basis: 100%; font-size: 12px; font-weight: 600; color: var(--ok); }

/* The payoff card closes the path. It is the only filled card on the rail. */
.st--payoff .st-card {
  background: linear-gradient(150deg, var(--brand), var(--brand-deep));
  border-color: transparent; color: var(--brand-ink);
  box-shadow: var(--shadow-md);
}
.st--payoff .st-sub  { background: rgba(255, 255, 255, .18); color: var(--brand-ink); }
.st--payoff .st-note { color: rgba(255, 255, 255, .92); }
.st--payoff .st-pay  { border-top-color: rgba(255, 255, 255, .3); }
.st--payoff .st-tag  { color: rgba(255, 255, 255, .85); }

.path-hint {
  max-width: var(--max); margin: 18px auto 0;
  padding-inline: var(--gutter);
  font-size: 13px; color: var(--ink-faint);
}
/* Review markers must not inherit the path's full-bleed width. */
.path > .flag, .path > .src {
  max-width: calc(var(--max) - var(--gutter) * 2);
  margin-inline: auto;
}

/* 5.4 Trust strip */
#trust { border-block: 1px solid var(--line); background: var(--card); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; padding-block: 8px;
}
.trust-item { padding: 30px 28px 30px 0; }
.trust-item + .trust-item { padding-left: 28px; border-left: 1px solid var(--line); }
.trust-item h3 { font-size: 16px; margin-bottom: 7px; }
.trust-item p  { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }

/* 5.5 How it works */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; }
.step-n {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--brand-wash); color: var(--brand);
  display: grid; place-items: center;
  font-weight: 700; font-size: 16px; margin-bottom: 18px;
}
.step h3 { font-size: 18px; margin-bottom: 9px; }
.step p  { font-size: 15px; color: var(--ink-soft); }

/* 5.6 The roadmap (how.html)
   The simple, all-at-once counterpart to the homepage path. Six stops laid on
   one rail: horizontal from 940px, vertical below. Never a horizontal
   scroller — a stop you have to swipe to is a stop the reader never learns
   exists. Dot position lives entirely here so no inline style can strand it. */
.rm-map {
  position: relative; display: grid; gap: 14px;
  grid-template-columns: 1fr; padding-left: 30px; margin-top: 34px;
}
.rm-rail {
  position: absolute; left: 6px; top: 10px; bottom: 10px; width: 2px;
  background: var(--brand); border-radius: 2px;
}
.rm-stop {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .28s cubic-bezier(.22,.61,.36,1),
              box-shadow .28s cubic-bezier(.22,.61,.36,1);
}
.rm-stop:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.rm-stop:last-child { border-color: #c9e0d3; background: #eaf3ed; }
.rm-dot {
  position: absolute; left: -33px; top: 24px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--brand); border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--line);
}
.rm-stop:last-child .rm-dot { background: var(--brand-deep); }
.rm-top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.rm-day { font-size: 15px; font-weight: 600; letter-spacing: -.01em; }
.rm-kind {
  padding: 4px 9px; border-radius: 999px; background: var(--bg-sunken);
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink-soft);
}
.rm-kind--reg { background: var(--brand-wash); color: var(--brand-deep); }
.rm-cash {
  margin-top: 14px; font-size: clamp(30px, 3.2vw, 40px); font-weight: 700;
  line-height: .95; letter-spacing: -.04em; color: var(--ok);
}
.rm-note { margin-top: 10px; font-size: 13px; line-height: 1.5; color: var(--ink-soft); }

.rm-total {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(16px, 3vw, 40px); flex-wrap: wrap;
  margin-top: 18px; padding: 26px 32px;
  border-radius: var(--radius-lg); background: var(--ok); color: #fff;
  box-shadow: var(--shadow-md);
}
.rm-total-label {
  font-size: 12px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; opacity: .8;
}
.rm-total-row { display: flex; align-items: baseline; gap: 14px; margin-top: 10px; }
.rm-total-row strong { font-size: clamp(44px, 6vw, 72px); line-height: .9; letter-spacing: -.05em; }
.rm-total-row span { font-size: 17px; font-weight: 600; opacity: .85; }
.rm-total-note { max-width: 40ch; font-size: 14px; line-height: 1.6; opacity: .92; }

.rm-deadlines { margin-top: 18px; font-size: 14px; color: var(--ink-soft); max-width: 80ch; }

.rm-soon {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 14px; padding: 14px 20px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--sun-wash);
}
.rm-soon-chip {
  flex: 0 0 auto; padding: 5px 11px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--line);
  font-size: 11.5px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: #8a5a14;
}
.rm-soon p { font-size: 13.5px; line-height: 1.55; color: #8a5a14; }

@media (min-width: 940px) {
  .rm-map { grid-template-columns: repeat(6, 1fr); gap: 12px; padding-left: 0; padding-top: 34px; }
  .rm-rail { left: 0; right: 0; top: 14px; bottom: auto; height: 2px; width: auto; }
  .rm-dot { top: -29px; left: 50%; margin-left: -10px; }
  .rm-stop { padding: 20px 18px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .rm-stop { transition: none; }
  .rm-stop:hover { transform: none; }
}

/* 5.7 Why it's free */
.free-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.free-body p { font-size: 17.5px; color: var(--ink-soft); }
.free-body p + p { margin-top: 20px; }
.disclosure {
  border-radius: var(--radius);
  background: var(--brand-wash);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
  padding: 28px;
}
.disclosure h4 {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 12px;
}
.disclosure p { font-size: 16px; color: var(--ink-soft); }

/* 5.8 Privacy */
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.privacy-points { display: grid; gap: 14px; }
.privacy-points li {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; padding: 18px 20px;
  font-size: 15.5px; color: var(--ink-soft);
}
.tick {
  flex: none; width: 21px; height: 21px; border-radius: 50%;
  background: var(--ok); color: #fff; margin-top: 2px;
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
}

/* 5.9 Eligibility */
.elig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.elig-item h3 { font-size: 18px; margin-bottom: 10px; }
.elig-item p  { font-size: 15px; color: var(--ink-soft); }

.firms { margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--line); }
.firms-label {
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 18px;
}
.firms-row { display: flex; gap: 14px; flex-wrap: wrap; }
.firm-chip {
  display: flex; align-items: center; gap: 11px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 20px;
  font-weight: 600; font-size: 16px;
}
.firm-dot {
  width: 26px; height: 26px; border-radius: 8px;
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
  color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 700;
}
.firms-note { margin-top: 18px; font-size: 15px; color: var(--ink-faint); max-width: 62ch; }

/* 5.10 FAQ */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
}
.faq-q {
  width: 100%; display: flex; align-items: center; gap: 18px;
  padding: 21px 24px; background: none; border: 0;
  font: inherit; font-size: 16.5px; font-weight: 600; color: var(--ink);
  text-align: left; cursor: pointer;
}
.faq-sign {
  flex: none; margin-left: auto; width: 26px; height: 26px;
  border-radius: 50%; background: var(--brand-wash); color: var(--brand);
  display: grid; place-items: center; font-size: 17px; font-weight: 600;
  transition: transform .2s ease;
}
.faq-item[open] .faq-sign { transform: rotate(45deg); }
.faq-a { padding: 0 24px 22px; font-size: 16px; color: var(--ink-soft); }

/* 5.11 Final CTA
   On the homepage this is the only thing after the path, so it runs slim — the
   page should end shortly after the roadmap, not carry a second act. */
#cta { padding-block: 96px; }
#cta.cta--slim { padding-block: 32px 40px; }
#cta.cta--slim .cta-panel { padding: 46px 36px; }
#cta.cta--slim .cta-panel h2 { font-size: clamp(30px, 4.4vw, 48px); letter-spacing: -.02em; }
.cta-panel {
  border-radius: 28px; padding: 64px 40px; text-align: center;
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
  color: #fff; box-shadow: var(--shadow-lg);
}
.cta-panel h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 18px; }
.cta-panel p { font-size: 18px; opacity: .92; max-width: 46ch; margin: 0 auto 34px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-panel .src { color: rgba(255,255,255,.8); margin-top: 26px; }

/* 5.12 Footer */
#footer { border-top: 1px solid var(--line); padding-block: 64px 40px; background: var(--bg-tint); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-blurb { font-size: 15px; color: var(--ink-soft); max-width: 40ch; margin-top: 16px; }
.footer-col h4 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 16px; }
.footer-col li + li { margin-top: 11px; }
.footer-col a { font-size: 15px; color: var(--ink-soft); }
.footer-col a:hover { color: var(--brand); }
.footer-disclosures { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); display: grid; gap: 14px; }
.footer-disclosures p { font-size: 13.5px; line-height: 1.6; color: var(--ink-faint); max-width: 88ch; }
.footer-disclosures .lead { font-weight: 700; color: var(--ink-soft); }
.footer-copy { margin-top: 28px; font-size: 13.5px; color: var(--ink-faint); }

/* --- 6. Responsive ------------------------------------------------------- */
@media (max-width: 960px) {
  .free-grid,
  .privacy-grid { grid-template-columns: 1fr; gap: 44px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 24px 20px; }
  .trust-item + .trust-item { border-left: 0; padding-left: 20px; }
  .trust-item:nth-child(n+2) { border-top: 1px solid var(--line); }
  .trust-item:nth-child(2) { border-top: 0; }
  .steps,
  .elig-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding-block: 68px; }
  #hero { padding-block: 52px 64px; }
  .trust-grid,
  .steps,
  .elig-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .trust-item:nth-child(2) { border-top: 1px solid var(--line); }
  .rm-total { padding: 22px 24px; }
  .banner-inner { flex-wrap: wrap; }
  .banner-toggle { margin-left: 0; }
  .cta-panel { padding: 44px 24px; }
  .st-card { padding: 24px 22px; min-height: 380px; }
  .st-title { font-size: 38px; }
  .path { margin-top: 54px; }
  .nav-actions .login { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html, .path-track { scroll-behavior: auto; }
  * { transition: none !important; }
}
