/* ==========================================================================
   Sonoku — web design system
   Tokens transcribed VERBATIM from the app's SonokuTheme.swift /
   SonokuComponents.swift so the site reads as the same brand: manga-pop, ink
   borders, hard offset shadows, teal spot color, screentone halftone, light
   mode only. No external fonts, scripts, or network requests — everything
   here is self-contained and dependency-free.
   ========================================================================== */

:root {
  /* Color — ink & paper (SonokuTheme "01 — INK SYSTEM") */
  --ink: #111111;            /* near-black ink: borders, primary text */
  --paper: #e9e3d4;          /* page background (screentone warmth) */
  --page: #fffdf6;           /* card surface, warmer/lighter than paper */
  --teal: #1fb6a6;           /* the single brand spot color */
  --teal-dark: #0d8a7a;      /* darker teal — legible on the teal CTA tint */
  /* Accessible teal for teal text ON paper/page: #0d8a7a is only 3.32:1 on
     paper, so text links use this darker teal (4.99:1 on paper, 6.28:1 on
     page) to clear WCAG AA 4.5:1. (Eyebrows moved to ink caps — see .eyebrow.) */
  --teal-ink: #0a6b60;
  --meta-gray: #7a7263;      /* chrome/meta text (mono captions) */
  --deep-gray: #5a5346;      /* body copy on paper */
  --muted-ink: #9a9384;      /* inactive glyphs/borders */
  --muted-border: #c9c3b4;   /* de-emphasized borders */
  --unplayed-title: #3a363f; /* softer-than-ink secondary titles */
  --placeholder-fill: #f0ece0;

  /* Per-character accent inks */
  --accent-orange: #ff7a3d;
  --accent-cyan: #3ec6e0;
  --accent-yellow: #ffc24b;
  --accent-purple: #7c8cff;
  --accent-green: #43d9a0;
  --accent-violet: #b14bff;

  /* Borders / radii / hard-shadow offsets */
  --border-hairline: 2px;
  --border-standard: 3px;
  --border-heavy: 4px;
  --radius-chip: 4px;
  --radius-card: 6px;
  --radius-container: 8px;
  --radius-tabbar: 10px;
  --shadow-tight: 3px;
  --shadow-compact: 4px;
  --shadow-standard: 6px;

  /* Type — map the app's bundled faces to web-safe stacks (no CDN fonts).
     Bangers/Anton (comic display / condensed poster) -> Impact family.
     IBM Plex Sans (readable body) -> system UI sans.
     IBM Plex Mono (chrome/timestamps) -> system mono. */
  --font-display: "Haettenschweiler", "Franklin Gothic Bold", "Arial Narrow Bold",
    Impact, "Arial Narrow", sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "SF Mono", SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;

  --maxw: 960px;
}

/* --- reset-ish -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--paper);
  /* Screentone halftone dot grid — SonokuComponents.HalftoneOverlay
     (6px grid, ~1.2px dots) reproduced as a CSS radial-gradient tile. */
  background-image: radial-gradient(var(--ink) 1.1px, transparent 1.3px);
  background-size: 6px 6px;
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
/* The dot grid is decorative and very subtle — knock it back so text stays
   the figure, halftone the ground. Layered via a fixed pseudo so content
   backgrounds (cards) sit cleanly on top. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(var(--ink) 1.1px, transparent 1.3px);
  background-size: 6px 6px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
body { background-image: none; } /* the pseudo carries the texture */

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-ink); }

/* Everything real sits above the halftone ground. */
header, main, footer { position: relative; z-index: 1; }

/* --- shared layout --------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section + .section { padding-top: 8px; }

/* Visually-hidden but screen-reader available */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 10;
  background: var(--ink); color: var(--page);
  padding: 10px 16px; border-radius: var(--radius-card);
  font-family: var(--font-body); font-weight: 700; text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

/* --- type ------------------------------------------------------------------ */
/* Section eyebrow / kicker. Founder feedback (2026-07-21): the old treatment —
   condensed teal caps (--teal-ink, 4.99:1 on paper) with a 0.8px ink
   text-stroke — read muddy against the halftone dot ground. Redesigned to INK
   caps (14.75:1 on paper, 18.55:1 on the page card) preceded by a short teal,
   ink-bordered accent marker (the same idiom as .feature .marker). Teal now
   lives as a decorative brand accent, never as the body of small caps text;
   the stroke hack is gone. inline-flex so it hugs its text and centers cleanly
   when its wrap is text-align:center (the "Get Sonoku" CTA eyebrow). */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1;
  margin: 0 0 12px;
}
.eyebrow::before {
  content: "";
  width: 14px; height: 14px; flex: none;
  background: var(--teal);
  border: var(--border-hairline) solid var(--ink);
  border-radius: 3px;
}
h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.02;
  color: var(--ink);
  margin: 0 0 16px;
  font-weight: 400; /* Impact is already heavy */
}
h1 { font-size: clamp(2.6rem, 9vw, 5rem); }
h2 { font-size: clamp(1.9rem, 5vw, 2.9rem); }
h3 { font-size: 1.25rem; letter-spacing: 0.02em; }
p { color: var(--deep-gray); margin: 0 0 16px; }
.lede { font-size: 1.2rem; color: var(--unplayed-title); }
strong { color: var(--ink); }

/* Prose blocks (legal / support pages) keep the readable body face and a
   comfortable measure. */
.prose { max-width: 720px; }
.prose h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); margin-top: 40px; }
.prose h3 {
  font-family: var(--font-body); font-weight: 700; text-transform: none;
  letter-spacing: normal; font-size: 1.15rem; margin: 28px 0 8px; color: var(--ink);
}
.prose p, .prose li { color: var(--deep-gray); }
.prose a { color: var(--teal-ink); font-weight: 600; text-decoration: underline; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose table {
  width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.95rem;
  display: block; overflow-x: auto;
}
.prose th, .prose td {
  border: var(--border-hairline) solid var(--ink);
  padding: 10px 12px; text-align: left; vertical-align: top;
}
.prose th { background: var(--placeholder-fill); font-family: var(--font-body); }

/* Article CTA callout — reuses the .card idiom (ink border, hard offset
   shadow) so calls to action inside long-form articles read as distinct
   from body copy without a new visual language. */
.prose .cta-callout {
  background: var(--page);
  border: var(--border-standard) solid var(--ink);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-compact) var(--shadow-compact) 0 var(--ink);
  padding: 20px 24px;
  margin: 28px 0;
}
.prose .cta-callout, .prose .cta-callout strong { color: var(--ink); }

/* --- components ------------------------------------------------------------ */

/* SonokuCard: 3px ink border, 6px radius, hard offset ink shadow. */
.card {
  background: var(--page);
  border: var(--border-standard) solid var(--ink);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-standard) var(--shadow-standard) 0 var(--ink);
  padding: 24px;
}
.card--compact { box-shadow: var(--shadow-compact) var(--shadow-compact) 0 var(--ink); }

/* SonokuPillButton: teal fill, ink border, INK label (7.4:1, not white),
   hard shadow, uppercase display label. .btn--ghost = paper fill variant. */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.2rem;
  color: var(--ink);
  background: var(--teal);
  border: var(--border-standard) solid var(--ink);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-compact) var(--shadow-compact) 0 var(--ink);
  padding: 14px 28px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .08s ease;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--ink); }
.btn:active { transform: translate(var(--shadow-compact), var(--shadow-compact)); box-shadow: 0 0 0 var(--ink); }
.btn--ghost { background: var(--page); }
.btn[aria-disabled="true"], .btn.is-disabled {
  background: var(--placeholder-fill);
  color: var(--meta-gray);
  cursor: default;
  pointer-events: none;
}

/* CharacterDots: overlapping ink-bordered circles. */
.dots { display: inline-flex; align-items: center; }
.dots .dot {
  width: 26px; height: 26px; border-radius: 50%;
  border: var(--border-hairline) solid var(--ink);
  margin-left: -8px;
}
.dots .dot:first-child { margin-left: 0; }

/* Chip / mono caption */
.chip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: var(--page);
  border: var(--border-hairline) solid var(--ink);
  border-radius: var(--radius-chip);
  padding: 5px 10px;
}
/* Small mono captions sit on paper — use deep-gray (5.94:1), not meta-gray
   (3.72:1, fails AA). */
.mono { font-family: var(--font-mono); color: var(--deep-gray); }

/* --- header / nav ---------------------------------------------------------- */
.site-header { padding: 20px 0; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand .glyph {
  width: 38px; height: 38px; flex: none;
  background: var(--teal);
  border: var(--border-standard) solid var(--ink);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-tight) var(--shadow-tight) 0 var(--ink);
  display: grid; place-items: center;
  font-family: var(--font-display); color: var(--ink); font-size: 1.4rem; line-height: 1;
}
.brand .name {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 1.5rem; color: var(--ink);
}

/* --- hero ------------------------------------------------------------------ */
.hero { padding-top: 24px; }
.hero h1 { margin-bottom: 20px; }
.hero .lede { max-width: 620px; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 28px; }

/* Hero email step (Netflix pattern): input + button on one row, stacking
   with the existing cta-row mobile rules. Same ink-border language as .btn. */
.cta-form { align-items: stretch; }
.cta-input {
  flex: 1 1 240px; min-width: 0;
  font-family: var(--font-body); font-size: 1.1rem;
  color: var(--ink); background: var(--page);
  border: var(--border-standard) solid var(--ink);
  border-radius: var(--radius-card);
  padding: 14px 18px;
}
.cta-input::placeholder { color: var(--meta-gray); }
.cta-input:focus-visible { outline: 3px solid var(--teal-dark); outline-offset: 2px; }
.coming-soon-note {
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--deep-gray);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.hero-cast { display: flex; align-items: center; gap: 12px; margin-top: 30px; }
.hero-cast .label {
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--deep-gray);
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* --- capabilities grid ----------------------------------------------------- */
.grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.feature h3 {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 800; text-transform: none;
  letter-spacing: normal; font-size: 1.12rem; color: var(--ink); margin-bottom: 8px;
}
.feature p { margin: 0; font-size: 0.98rem; }
.feature .marker {
  width: 14px; height: 14px; flex: none; border-radius: 3px;
  border: var(--border-hairline) solid var(--ink);
}

/* --- mission --------------------------------------------------------------- */
.mission .card { background: var(--page); }
.mission-audiences { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

/* --- footer ---------------------------------------------------------------- */
.site-footer {
  border-top: var(--border-standard) solid var(--ink);
  margin-top: 40px; padding: 32px 0 48px; background: var(--page);
}
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; justify-content: space-between; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
.site-footer a {
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.95rem;
}
.site-footer a:hover { color: var(--teal-dark); text-decoration: underline; }
.site-footer .copy { color: var(--deep-gray); font-size: 0.9rem; font-family: var(--font-mono); }

/* --- auth / centered utility pages ----------------------------------------- */
.centered {
  min-height: 100dvh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 40px 20px; text-align: center;
}
.centered .card { max-width: 460px; width: 100%; text-align: left; }
.centered h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
.status-msg { font-size: 1.05rem; }
.help-list { font-size: 0.95rem; color: var(--deep-gray); padding-left: 20px; }
.help-list li { margin-bottom: 8px; }

/* --- CONFIRM placeholders (visible editable markers on legal pages) --------- */
.confirm {
  background: var(--accent-yellow);
  border: var(--border-hairline) solid var(--ink);
  border-radius: var(--radius-chip);
  padding: 1px 6px;
  font-family: var(--font-mono);
  font-size: 0.85em;
  color: var(--ink);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* --- focus states (visible, high-contrast) --------------------------------- */
a:focus-visible, .btn:focus-visible, button:focus-visible {
  outline: 3px solid var(--teal-dark);
  outline-offset: 3px;
}

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

/* --- responsive ------------------------------------------------------------ */
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 40px 0; }
  .btn { width: 100%; }
  .hero .cta-row { flex-direction: column; align-items: stretch; }
  /* In the stacked layout the row-axis flex-basis would become height. */
  .cta-input { flex: 0 0 auto; }
  .site-header .wrap { flex-wrap: wrap; }
}

/* ==========================================================================
   NETFLIX FUNNEL — landing page only (body.funnel on index.html).
   The rest of the site (auth / legal / support) stays on the light system
   above; every rule here is scoped under .funnel. Same brand tokens, dark
   ground: ink becomes the paper, paper becomes the ink. Hard offset shadows
   flip to paper so the manga-pop idiom survives the inversion.
   ========================================================================== */
.funnel {
  --night: #131109;          /* warm near-black, ink family */
  --night-card: #1f1b12;     /* raised surface on night */
  --night-line: rgba(233, 227, 212, 0.28);  /* paper hairlines */
  --night-body: #c9c3b4;     /* body copy on night (muted-border token) */
  background-color: var(--night);
  color: var(--paper);
}
/* Halftone ground inverts: paper dots on night, still whisper-quiet. */
body.funnel::before {
  background-image: radial-gradient(var(--paper) 1.1px, transparent 1.3px);
  opacity: 0.05;
}
.funnel h1, .funnel h2, .funnel h3 { color: var(--paper); }
.funnel p { color: var(--night-body); }
.funnel strong { color: var(--paper); }
.funnel a { color: var(--teal); }

/* Header floats over the hero wall. */
.funnel .site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 5; padding: 18px 0;
}
.funnel .brand .name { color: var(--paper); }
.funnel .brand .glyph { box-shadow: var(--shadow-tight) var(--shadow-tight) 0 var(--paper); }

/* Buttons: teal fill + ink label survive as-is; the hard shadow goes paper.
   color restated because `.funnel a` (teal) outranks the base `.btn` rule. */
.funnel .btn { color: var(--ink); box-shadow: var(--shadow-compact) var(--shadow-compact) 0 var(--paper); }
.funnel .btn:hover { box-shadow: 5px 5px 0 var(--paper); }
.funnel .btn:active { box-shadow: 0 0 0 var(--paper); }
.funnel .btn.is-disabled {
  background: var(--night-card); color: var(--night-body);
  border-color: var(--night-line); box-shadow: none;
}
.btn--small { font-size: 1rem; padding: 9px 18px; }
.btn--big { font-size: 1.45rem; padding: 16px 40px; }

/* --- 1 · hero: dimmed cover wall ------------------------------------------- */
.funnel .hero {
  position: relative; overflow: hidden; padding: 0;
  min-height: 92svh; display: flex; align-items: center;
  border-bottom: var(--border-standard) solid var(--night-line);
}
.hero-wall {
  position: absolute; inset: -8%; z-index: 0;
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px;
  transform: rotate(-3deg) scale(1.12);
}
.hero-wall img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 2 / 3;
  border-radius: var(--radius-chip);
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, var(--night) 2%, rgba(19, 17, 9, 0.55) 45%, rgba(19, 17, 9, 0.78) 100%),
    rgba(19, 17, 9, 0.55);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 48px; align-items: center;
  padding-top: 120px; padding-bottom: 72px;
}
.funnel .hero h1 { margin-bottom: 14px; text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.55); }
.hero-sub {
  font-size: 1.25rem; color: var(--paper); max-width: 520px;
  margin: 0 0 10px;
}
.price-line {
  font-family: var(--font-mono); font-size: 0.95rem; color: var(--night-body);
  text-transform: uppercase; letter-spacing: 0.04em; margin: 0 0 26px;
}
.funnel .cta-row {
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center;
}

/* The free series shares the hero with the sign-up CTA (we are not Netflix:
   the real free content is the pitch). Card doubles as the free-chapter CTA. */
.hero-feature {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  justify-self: center;
}
.cover-card {
  position: relative; display: block;
  width: clamp(190px, 24vw, 250px); aspect-ratio: 2 / 3;
  border: var(--border-standard) solid var(--paper);
  border-radius: var(--radius-card); overflow: hidden;
  background: var(--night-card);
  box-shadow: var(--shadow-standard) var(--shadow-standard) 0 rgba(233, 227, 212, 0.35);
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}
.cover-card:hover {
  transform: translate(-2px, -2px);
  border-color: var(--teal);
  box-shadow: 8px 8px 0 rgba(233, 227, 212, 0.35);
}
.cover-card img { width: 100%; height: 100%; object-fit: cover; }
.free-flag {
  position: absolute; top: 10px; left: 10px;
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.05em; font-size: 0.95rem; line-height: 1;
  color: var(--ink); background: var(--teal);
  border: var(--border-hairline) solid var(--ink);
  border-radius: var(--radius-chip);
  padding: 5px 10px 4px;
}
.cover-plate {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: grid; gap: 4px; text-align: center;
  padding: 34px 12px 12px;
  background: linear-gradient(to top, rgba(9, 8, 4, 0.94) 45%, transparent);
}
.cover-title {
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 0.03em; font-size: 1.25rem; line-height: 1.1;
  color: var(--paper);
}
.cover-cta {
  font-family: var(--font-mono); font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--teal);
}
.cover-card:hover .cover-cta { color: var(--paper); }
.feature-note {
  font-family: var(--font-mono); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin: 0; text-align: center;
}

/* --- 2 · reasons grid -------------------------------------------------------- */
.reasons-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.funnel .card {
  background: var(--night-card);
  border: var(--border-hairline) solid var(--night-line);
  box-shadow: var(--shadow-compact) var(--shadow-compact) 0 rgba(233, 227, 212, 0.14);
}
.reason h3 {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 800; text-transform: none;
  letter-spacing: normal; font-size: 1.12rem; margin-bottom: 8px;
}
.reason p { margin: 0; font-size: 0.98rem; }
.reason .marker {
  width: 14px; height: 14px; flex: none; border-radius: 3px;
  border: var(--border-hairline) solid var(--ink);
}

/* --- 3 · FAQ accordion -------------------------------------------------------- */
.faq-list { display: grid; gap: 10px; max-width: 760px; }
.faq-list details {
  background: var(--night-card);
  border: var(--border-hairline) solid var(--night-line);
  border-radius: var(--radius-card);
}
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  list-style: none; cursor: pointer;
  font-weight: 700; font-size: 1.08rem; color: var(--paper);
  padding: 18px 20px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex: none; font-family: var(--font-display); font-size: 1.6rem; line-height: 1;
  color: var(--teal); transition: transform 0.15s ease;
}
.faq-list details[open] .faq-icon { transform: rotate(45deg); }
.faq-list summary:hover { color: var(--teal); }
.faq-body { padding: 0 20px 18px; }
.faq-body p { margin: 0; }

/* --- repeated CTA / holding anchor -------------------------------------------- */
.signup { text-align: center; }
.signup-inner { max-width: 640px; }
.signup-copy { margin: 0 auto 26px; font-size: 1.1rem; }
/* Live state has no copy line between heading and button; match the waiting
   variant's heading-to-button rhythm (16px h2 margin + 26px copy margin
   would be airier than the bare 16px). */
.signup [data-state="live"] h2 { margin-bottom: 26px; }
.funnel .signup .btn.is-disabled { width: auto; }

/* --- footer -------------------------------------------------------------------- */
.funnel .site-footer {
  background: var(--night-card);
  border-top: var(--border-standard) solid var(--night-line);
}
.funnel .site-footer a { color: var(--paper); }
.funnel .site-footer a:hover { color: var(--teal); }
.funnel .site-footer .copy { color: var(--night-body); line-height: 1.9; text-align: right; }
.funnel .site-footer .copy a { color: var(--night-body); text-decoration: underline; }

/* --- funnel responsive ---------------------------------------------------------- */
@media (max-width: 860px) {
  .hero-wall { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr; gap: 36px;
    text-align: center; padding-top: 104px; padding-bottom: 56px;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .funnel .cta-row { justify-content: center; }
}
@media (max-width: 560px) {
  .hero-wall { grid-template-columns: repeat(3, 1fr); }
  .funnel .hero { min-height: 0; }
  .funnel .btn--small { width: auto; }   /* header CTA stays compact */
  .funnel .cta-row { flex-direction: column; align-items: stretch; }
  .cover-card { width: min(64vw, 230px); }
  .reasons-grid { grid-template-columns: 1fr; }
  .funnel .site-footer .wrap { justify-content: flex-start; }
  .funnel .site-footer .copy { text-align: left; }
}
