
/* ───────────────────────── reset & base ───────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--font);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: rgba(221,172,58,.26); color: #fff; }
a { color: inherit; }

/* ───────────────────────── brand tokens ───────────────────────── */
:root {
  --bg: #1a1a18;
  --gold-50: #FAEEDA;  --gold-100: #FAC775; --gold: #DDAC3A;
  --gold-600: #BA7517; --gold-800: #854F0B; --gold-900: #412402;
  --ink: #412402;
  --heading: #f5f3ee;  --body: #b4b1a8; --tertiary: #918E84; /* approved contrast fix 2026-08-03; Home is dark-only so only the dark value applies */
  --teal: #5DCAA5;
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --font: 'Sansation', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color-scheme: dark;
}

.app { position: relative; min-height: 100vh; isolation: isolate; }

/* ───────────────────────── ambient atmosphere ───────────────────────── */
.ambient {
  position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
  background: radial-gradient(125% 95% at 50% -12%, #221f1b 0%, #1a1a18 52%, #151513 100%);
}
.sky {
  position: absolute; inset: 0; will-change: transform;
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0); transition: transform .2s linear;
}

/* each cascade light: a soft warm glow that travels the path (JS-positioned) */
.beam { position: absolute; left: 50%; top: 50%; opacity: 0;
  will-change: transform, opacity; }
.beam .sun {
  position: absolute; inset: 0; border-radius: 50%; mix-blend-mode: screen; filter: blur(28px);
  opacity: calc(.92 * var(--glow, 1));
  background: radial-gradient(closest-side,
    rgba(250,222,158,.58) 0%, rgba(248,206,130,.46) 18%, rgba(244,182,92,.33) 36%,
    rgba(214,146,58,.18) 54%, rgba(180,108,28,.07) 70%, rgba(133,79,11,0) 82%);
}

/* fine tile structure, revealed only where the lights are (mask = union of the
   moving light positions) — breaks up the radial banding; dark stays plain */
.tiles {
  position: absolute; inset: 0; mix-blend-mode: screen; pointer-events: none;
  opacity: calc(.55 * var(--glow, 1));
  background-image:
    linear-gradient(rgba(252,226,182,.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252,226,182,.42) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image:
    radial-gradient(34vw 32vh at var(--mx0,50%) var(--my0,150%), rgba(0,0,0,var(--a0,0)) 0%, transparent 70%),
    radial-gradient(34vw 32vh at var(--mx1,50%) var(--my1,150%), rgba(0,0,0,var(--a1,0)) 0%, transparent 70%),
    radial-gradient(34vw 32vh at var(--mx2,50%) var(--my2,150%), rgba(0,0,0,var(--a2,0)) 0%, transparent 70%),
    radial-gradient(34vw 32vh at var(--mx3,50%) var(--my3,150%), rgba(0,0,0,var(--a3,0)) 0%, transparent 70%);
  -webkit-mask-composite: source-over;
  mask-image:
    radial-gradient(34vw 32vh at var(--mx0,50%) var(--my0,150%), rgba(0,0,0,var(--a0,0)) 0%, transparent 70%),
    radial-gradient(34vw 32vh at var(--mx1,50%) var(--my1,150%), rgba(0,0,0,var(--a1,0)) 0%, transparent 70%),
    radial-gradient(34vw 32vh at var(--mx2,50%) var(--my2,150%), rgba(0,0,0,var(--a2,0)) 0%, transparent 70%),
    radial-gradient(34vw 32vh at var(--mx3,50%) var(--my3,150%), rgba(0,0,0,var(--a3,0)) 0%, transparent 70%);
  mask-composite: add;
}

.bg-quiet .sky { opacity: .7; }
.bg-off .sky { display: none; }

.ambient-motif { position: absolute; inset: 0; width: 100%; height: 100%; }
.app:not(.motif-on) .ambient-motif { display: none; }

.grain {
  position: absolute; inset: 0; opacity: .06; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,10,.55) 0%, rgba(12,12,10,.12) 24%, transparent 46%),
    radial-gradient(120% 86% at 50% 122%, transparent 46%, rgba(12,12,10,.34) 100%);
}

/* ── nav + footer: unified chrome, injected by site/site-chrome.jsx (batch 6).
   Home's own .nav/.footer CSS is gone with its fork — only the ambient hero
   below stays Home's own. ── */

/* ───────────────────────── shell / hero ───────────────────────── */
.shell { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.hero { padding-top: clamp(38px, 7.5vh, 92px); padding-bottom: clamp(34px, 6vh, 60px); }
.hero-grid { display: grid; gap: clamp(30px, 5vw, 72px); align-items: center; grid-template-columns: 1fr; }
.comp-asymmetric .hero-grid { grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr); }
.hero-copy { max-width: 680px; }
.comp-centered .hero-copy { max-width: 820px; margin: 0 auto; text-align: center; }
.comp-asymmetric .hero-copy { max-width: 600px; }

.hero-visual { display: none; }
.comp-asymmetric .hero-visual { display: block; }

/* eyebrow + live pill */
.eyebrow { display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: clamp(20px, 3vh, 28px); }
.comp-centered .eyebrow { justify-content: center; }
.eyebrow-text { font-weight: 700; font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.live-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 10.5px; letter-spacing: .09em; text-transform: uppercase;
  color: var(--teal); background: rgba(93,202,165,.10);
  border: 1px solid rgba(93,202,165,.30); padding: 5px 11px 5px 9px; border-radius: 999px;
  white-space: nowrap; transition: box-shadow .3s ease;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: pulse 2.6s ease-out infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(93,202,165,.5); }
  70%  { box-shadow: 0 0 0 7px rgba(93,202,165,0); }
  100% { box-shadow: 0 0 0 0 rgba(93,202,165,0); }
}
.proof-medium .live-pill { box-shadow: 0 0 22px -6px rgba(93,202,165,.55); }

/* headline */
.headline {
  margin: 0; font-weight: 700;
  font-size: calc(clamp(33px, 5vw, 61px) * var(--hscale, 1));
  line-height: 1.06; letter-spacing: -.018em; color: var(--heading);
  text-wrap: balance; max-width: 16ch;
}
.comp-centered .headline { max-width: 19ch; margin-inline: auto; }
.comp-asymmetric .headline { max-width: 15ch; }
.hl-dim { color: rgba(245,243,238,.56); }
.hl-accent { color: var(--heading); transition: color .3s ease; }
.hl-gold .hl-accent { color: var(--gold); }

/* subhead */
.subhead {
  margin: clamp(18px, 3vh, 26px) 0 0; font-weight: 400;
  font-size: clamp(16px, 1.15vw, 18px); line-height: 1.62; color: var(--body); max-width: 49ch;
}
.comp-centered .subhead { margin-inline: auto; text-align: center; }
.proof-em { color: var(--heading); }

/* CTAs */
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(26px, 4vh, 36px); }
.comp-centered .cta-row { justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 15px; letter-spacing: .006em; text-decoration: none;
  padding: 14px 22px; border-radius: 10px; cursor: pointer; border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .22s cubic-bezier(.2,.7,.2,1), background .22s ease, box-shadow .28s ease, border-color .22s ease, color .22s ease;
}
.btn-primary { background: var(--gold); color: var(--ink); box-shadow: 0 6px 22px rgba(221,172,58,.22); }
.btn-primary:hover { background: var(--gold-100); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(221,172,58,.34); }
.btn-primary:active { transform: translateY(0); }
.cta-arrow { transition: transform .26s cubic-bezier(.2,.7,.2,1); }
.btn-primary:hover .cta-arrow { transform: translateX(3px); }
.btn-secondary { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-secondary:hover { background: rgba(221,172,58,.10); border-color: var(--gold-100); color: var(--gold-100); transform: translateY(-2px); }

/* hero visual — crown crest */
.crest-card {
  position: relative; min-height: clamp(350px, 41vw, 452px); border-radius: 18px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(245,243,238,.07);
  background: linear-gradient(165deg, rgba(245,243,238,.045), rgba(245,243,238,.008));
  box-shadow: inset 0 1px 0 rgba(245,243,238,.05), 0 40px 90px -50px rgba(0,0,0,.9);
}
.crest { width: 80%; max-width: 340px; height: auto; overflow: visible; }
.crest-mark { transform-box: fill-box; transform-origin: 50% 50%; animation: floaty 9s ease-in-out infinite;
  filter: drop-shadow(0 6px 22px rgba(221,172,58,.28)); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ───────────────────────── above-the-fold ───────────────────────── */
.afold { padding-top: clamp(18px, 3vh, 28px); padding-bottom: clamp(54px, 9vh, 90px); }
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 22px); margin-bottom: clamp(22px, 3.2vh, 32px); }
.comp-centered .cards { max-width: 920px; margin-inline: auto; margin-bottom: clamp(22px, 3.2vh, 32px); }
.comp-left .cards { max-width: 820px; }
.card {
  position: relative; display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 24px 22px 22px; border-radius: 14px;
  background: linear-gradient(160deg, rgba(245,243,238,.042), rgba(245,243,238,.012));
  border: 1px solid rgba(245,243,238,.06); border-left: 3px solid var(--gold);
  transition: transform .26s cubic-bezier(.2,.7,.2,1), border-color .26s ease, background .26s ease;
}
.card:hover { transform: translateY(-2px); border-left-color: var(--gold-100);
  background: linear-gradient(160deg, rgba(245,243,238,.06), rgba(245,243,238,.02)); }
.card-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  color: var(--gold); background: rgba(221,172,58,.10); border: 1px solid rgba(221,172,58,.18);
}
.card-title { margin: 1px 0 6px; font-weight: 700; font-size: 15.5px; letter-spacing: .006em; color: var(--heading); }
.card-body { margin: 0; font-weight: 400; font-size: 14.5px; line-height: 1.5; color: var(--body); max-width: 42ch; }

/* value chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.comp-centered .chips { justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 13px; letter-spacing: .012em; color: var(--body);
  background: rgba(245,243,238,.035); border: 1px solid rgba(245,243,238,.08);
  padding: 9px 15px; border-radius: 999px; white-space: nowrap;
}
.chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
/* The chips and the live pill are links now, not decoration. They inherit the
   base underline, and they need a hover state to earn the pointer. */
.chip, .live-pill { text-decoration: none; }
a.chip:hover { color: var(--heading); border-color: rgba(245,243,238,.2); }
a.chip.chip-teal:hover { color: var(--teal); border-color: rgba(93,202,165,.5); }
a.live-pill:hover { border-color: rgba(93,202,165,.55); box-shadow: 0 0 22px -6px rgba(93,202,165,.55); }
.chip-teal { color: var(--teal); background: rgba(93,202,165,.09); border-color: rgba(93,202,165,.28); }
.chip-teal .chip-dot { background: var(--teal); }
.proof-medium .chip-teal { box-shadow: 0 0 0 1px rgba(93,202,165,.16), 0 8px 22px -8px rgba(93,202,165,.45); }

/* ───────────────────────── entrance / motion ───────────────────────── */
/* Base = the visible resting state, so content shows even if the entrance never
   runs (offscreen/non-compositing iframe, PDF/PNG export, reduced-motion).
   Visibility never depends on a CSS transition timeline advancing. */
[data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  /* Pre-reveal hidden state — applied only while actively animating and before
     the wall-clock guarantee (.reveal-done) fires. */
  .anim-intro:not(.reveal-done) [data-reveal] {
    opacity: 0; transform: translateY(14px);
    transition: opacity .55s ease, transform .65s cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--d, 0ms);
  }
  .anim-intro.is-loaded:not(.reveal-done) [data-reveal] { opacity: 1; transform: none; }
}

/* Hard guarantee: .reveal-done (set on a wall-clock timer that fires even when the
   iframe isn't painting) and Static motion both force the resting state with NO
   transition, so opacity resolves to 1 without needing the timeline to advance. */
.reveal-done [data-reveal],
.motion-static [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
.motion-static .crest-mark, .motion-static .live-dot { animation: none !important; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .crest-mark, .live-dot { animation: none !important; }
  .sky { transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ───────────────────────── responsive ───────────────────────── */
@media (max-width: 920px) {
  .comp-asymmetric .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none !important; }
  .hero-copy, .comp-asymmetric .hero-copy { max-width: 640px; }
  .headline, .comp-asymmetric .headline { max-width: 17ch; }
  .cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .btn { flex: 1 1 auto; justify-content: center; }
  .eyebrow { gap: 10px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   LOWER SECTIONS — appended below the hero (how-it-works, pricing, proof,
   closing CTA, footer). Built only from the existing tokens & component
   vocabulary; nothing above this line is changed. The hero owns the heavy
   atmosphere — from here down a scrim mutes the fixed glow into a calm,
   flat --bg descent.
   ═══════════════════════════════════════════════════════════════════════ */

/* calm-descent scrim: fades the fixed ambient out just below the fold */
.lower { position: relative; z-index: 1; }
.lower-scrim {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 0, var(--bg) 160px);
}
.lower > .section, .lower > .cta-band { position: relative; z-index: 1; }

/* shared section frame (reuses the hero's vertical rhythm + hairline idiom) */
.section { padding: clamp(56px, 9vh, 104px) 0; }
.section--divide { border-top: 1px solid rgba(245,243,238,.07); }
.section-head { max-width: 640px; margin: 0 0 clamp(34px, 5vh, 54px); }
.section-title {
  margin: 0; font-weight: 700; font-size: clamp(27px, 3.4vw, 40px);
  line-height: 1.1; letter-spacing: -.018em; color: var(--heading);
  text-wrap: balance; max-width: 20ch;
}

/* text link — lighter than a button, reuses the gold + nudging arrow idiom */
.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14.5px; letter-spacing: .006em;
  color: var(--gold); text-decoration: none; transition: color .2s ease;
}
.text-link:hover { color: var(--gold-100); }
.text-link:hover .cta-arrow { transform: translateX(3px); }

/* ── 1. how it works — numbered step band ── */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.4vw, 36px);
}
.step { padding-top: 22px; border-top: 1px solid rgba(245,243,238,.13); }
.step-num {
  display: block; font-weight: 300; font-size: 30px; line-height: 1;
  letter-spacing: .01em; color: var(--gold); opacity: .5;
}
.step-title { margin: 16px 0 9px; font-weight: 700; font-size: 16px; letter-spacing: .006em; color: var(--heading); }
.step-body { margin: 0; font-weight: 400; font-size: 14.5px; line-height: 1.58; color: var(--body); }
/* Step 3 carries quiet weight through its COPY, not through chrome. A gold top
   rule plus a full-strength numeral read as a selected tab in a row of four,
   and nothing here responds to hover or click — a control-shaped thing that is
   not a control is the same defect as a dead link, failing silently instead of
   visibly. The emphasis now lives in the brighter clause alone. */
.step-em { color: var(--heading); font-weight: 700; }
.how-link { margin-top: clamp(30px, 4.5vh, 44px); }

/* ── 2. pricing — corrected block: standard rate + founding programme + anchors.
   Every figure renders from site-data.js; nothing here assumes a value. ── */
.section-head .eyebrow-text { display: block; margin: 0 0 14px; }
.section-sub { margin: 16px 0 0; font-weight: 400; font-size: clamp(15px, 1.1vw, 17px); line-height: 1.62; color: var(--body); max-width: 52ch; }
.section-pricing .section-head { max-width: 720px; }

.pricing-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(16px, 2vw, 24px); align-items: stretch; }
.price-panel {
  position: relative; display: flex; flex-direction: column; height: 100%;
  padding: clamp(28px, 3.2vw, 40px); border-radius: 18px;
  background: linear-gradient(165deg, rgba(245,243,238,.05), rgba(245,243,238,.012));
  border: 1px solid rgba(245,243,238,.08);
  box-shadow: inset 0 1px 0 rgba(245,243,238,.05), 0 40px 90px -56px rgba(0,0,0,.92);
}
.price-panel--primary { border-color: rgba(221,172,58,.30); }
.price-panel--founding { background: linear-gradient(165deg, rgba(245,243,238,.032), rgba(245,243,238,.006)); }
.price-eyebrow { margin: 0; font-weight: 700; font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--tertiary); }
.price-eyebrow--gold { color: var(--gold); }
.price-figure { display: flex; align-items: baseline; gap: 9px; margin: 16px 0 0; }
.price-amount { font-weight: 700; font-size: clamp(38px, 4.4vw, 54px); line-height: 1; letter-spacing: -.026em; color: var(--heading); font-variant-numeric: tabular-nums; }
.price-figure--lg .price-amount { font-size: clamp(46px, 6vw, 74px); }
.price-period { font-weight: 400; font-size: 16px; color: var(--tertiary); }
.price-lead { margin: 16px 0 0; font-weight: 400; font-size: 15.5px; line-height: 1.6; color: var(--body); max-width: 40ch; }
.price-fine { margin: auto 0 0; padding-top: 22px; font-size: 14px; line-height: 1.55; color: var(--tertiary); }
.price-fine--tight { margin: 10px 0 0; padding-top: 0; }
.fine-em { font-weight: 700; color: var(--body); }
.price-cta { margin-top: 20px; align-self: flex-start; }

.allowance-list { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; }
.allowance { display: flex; align-items: baseline; gap: 14px; padding: 11px 0; border-top: 1px solid rgba(245,243,238,.07); }
.allowance:last-child { border-bottom: 1px solid rgba(245,243,238,.07); }
.allowance-val { flex: 0 0 auto; min-width: 92px; font-weight: 700; font-size: 15px; color: var(--gold); font-variant-numeric: tabular-nums; }
.allowance-unit { font-size: 14.5px; line-height: 1.45; color: var(--body); }
.allowance-note { color: var(--tertiary); }

.seats { display: flex; align-items: center; gap: 11px; margin-top: 18px; }
.seat-pips { display: flex; gap: 5px; }
.pip { width: 16px; height: 5px; border-radius: 3px; background: rgba(245,243,238,.14); }
.pip--open { background: var(--gold); }
.seats-label { font-weight: 700; font-size: 13px; letter-spacing: .01em; color: var(--body); }
.seats-sub { margin: 8px 0 0; font-size: 13.5px; line-height: 1.5; color: var(--body); max-width: 44ch; text-wrap: pretty; }
.founding-lead { margin: 18px 0 0; font-size: 14.5px; line-height: 1.58; color: var(--body); max-width: 46ch; }
.clocks { margin: 20px 0 0; padding: 18px 0 0; border-top: 1px solid rgba(245,243,238,.07); display: flex; flex-direction: column; gap: 14px; }
.clock-label { display: block; margin: 0 0 4px; font-weight: 700; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--tertiary); }
.clock-val { margin: 0; font-weight: 700; font-size: 14px; line-height: 1.45; color: var(--heading); }
.clock-or { font-weight: 400; color: var(--tertiary); }
.founding-scope { margin: auto 0 0; padding-top: 18px; font-size: 13.5px; line-height: 1.5; color: var(--tertiary); }

/* Anchor 3 (the seat math) styles live in site/seat-math.css. */
.anchor-slot { display: block; margin-top: clamp(28px, 4vh, 44px); }

/* ── 3. proof line — the one remaining teal moment ── */
.proof-line { text-align: center; }
.proof-quote {
  margin: 0 auto; max-width: 30ch;
  font-weight: 300; font-size: clamp(23px, 2.9vw, 34px);
  line-height: 1.32; letter-spacing: -.01em; color: var(--heading); text-wrap: balance;
}
.teal-underline { color: var(--heading); border-bottom: 2px solid var(--teal); padding-bottom: 1px; white-space: nowrap; }

/* ── 4. closing CTA — full-width gold-accented band (the conversion climax) ── */
.cta-band {
  position: relative; padding: clamp(64px, 11vh, 128px) 0; text-align: center;
  background:
    radial-gradient(58% 120% at 50% 0%, rgba(221,172,58,.10), transparent 62%),
    linear-gradient(180deg, rgba(221,172,58,.06), rgba(221,172,58,.015));
  border-top: 1px solid rgba(221,172,58,.18);
  border-bottom: 1px solid rgba(221,172,58,.18);
}
.cta-band-head {
  margin: 0 auto; max-width: 19ch; font-weight: 700;
  font-size: clamp(28px, 3.8vw, 46px); line-height: 1.08; letter-spacing: -.018em;
  color: var(--heading); text-wrap: balance;
}
.cta-band-body {
  margin: 18px auto 0; max-width: 56ch;
  font-weight: 400; font-size: clamp(15px, 1.1vw, 17px); line-height: 1.62; color: var(--body);
}
.cta-band .cta-row { justify-content: center; margin-top: clamp(28px, 4vh, 38px); }

/* ── 5. footer — the shared SiteFooter (site/site-chrome.jsx); no Home fork ── */

/* scroll-reveal for the appended sections — base state is VISIBLE; the hidden
   pre-state is enabled only once JS adds .rise-ready and never under
   reduced-motion / no-JS / export, so content can't get stuck hidden. */
[data-rise] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .rise-ready [data-rise]:not(.in) {
    opacity: 0; transform: translateY(18px);
    transition: opacity .6s ease, transform .7s cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--rd, 0ms);
  }
}
@media (prefers-reduced-motion: reduce) {
  [data-rise] { opacity: 1 !important; transform: none !important; }
}

/* responsive (lower sections) */
@media (max-width: 920px) {
  .steps { grid-template-columns: 1fr 1fr; gap: 32px 28px; }
}
@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .founding-scope, .price-fine { margin-top: 22px; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .price-cta { align-self: stretch; }
}
