/* ==========================================================================
   rwrds — Orange-forward production theme  (web/assets/theme.css)
   --------------------------------------------------------------------------
   Reusable design system for every rwrds page. Ported from the winning
   "concept-4-orange-forward" design lab concept and generalized for reuse.

   The system alternates two full-width "rooms":
     • Orange rooms  — coral->amber canvas bands, dark espresso ink (brand beats)
     • Dark rooms    — warm espresso, the workmanlike middle + the money

   Conventions / AI "tells" deliberately avoided:
     • Display face = Bricolage Grotesque (never plain Inter)
     • Buttons use solid fill + inner sheen + grounded shadow, NEVER an outer
       amber glow halo. Lighting comes from radial layers BEHIND elements.
     • Mono (IBM Plex Mono) is for real figures only — never eyebrows/buttons.
     • Mint (--mint) is RESERVED for money, and never sits on orange.
     • No pure #000 (espresso #1A1512 base), no purple.

   See THEME.md for the full token + class API.
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  /* --- warm dark foundation (espresso, not cool ink, never #000) --- */
  --bg:        #1A1512;   /* page base */
  --bg-2:      #221C17;   /* elevated warm charcoal surface */
  --bg-3:      #2A221C;   /* hover / nested surface */
  --bg-deep:   #14100D;   /* footer well */

  /* --- warm off-white text + warm taupe muted --- */
  --ink:       #F3EAE0;
  --ink-soft:  #D8C9B9;
  --muted:     #9D8E7E;
  --muted-2:   #7C6F61;

  /* --- hairlines, warm-tinted --- */
  --line:      rgba(243, 234, 224, 0.09);
  --line-2:    rgba(243, 234, 224, 0.18);

  /* --- THE LEAD: coral->amber orange (featured, not surgical) --- */
  --coral:      #FF6B35;
  --coral-2:    #FF8254;   /* hover */
  --coral-deep: #E0511C;   /* pressed / borders / focus on dark */
  --coral-wash: rgba(255, 107, 53, 0.12);
  --amber:      #FFB84D;
  --orange-grad: linear-gradient(135deg, var(--coral), var(--amber));

  /* --- dark ink for type that sits ON orange rooms (AA on coral->amber) --- */
  --on-orange:      #2A1206;   /* headings on orange */
  --on-orange-soft: #5A3216;   /* body copy on orange */
  --on-orange-mut:  #7A4A24;   /* captions/footnotes on orange */
  --on-orange-cta:  #21130C;   /* dark fill behind ink-on-orange CTAs */

  /* --- calm cool accent: RESERVED for precise money only --- */
  --mint:      #7FE0C0;
  --mint-soft: rgba(127, 224, 192, 0.14);

  /* --- type families --- */
  --display: "Bricolage Grotesque", Georgia, serif;
  --body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, "SF Mono", monospace;

  /* --- layout --- */
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 56px);
  --radius: 12px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* --- spatial rhythm: rooms of different sizes --- */
  --room-sm: clamp(3.5rem, 7vh, 5rem);
  --room-md: clamp(5rem, 11vh, 8rem);
  --room-lg: clamp(6rem, 14vh, 10rem);
}

/* ==========================================================================
   2. RESET + BASE
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

/* Lenis smooth-scroll hooks (engine in theme.js). Native smooth is disabled
   while Lenis drives; both are off under reduced motion. */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
html:not(.lenis) { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* orange-forward ambient: warm wash so even dark rooms glow */
  background-image:
    radial-gradient(1200px 760px at 80% -6%, rgba(255, 107, 53, 0.16), transparent 60%),
    radial-gradient(1000px 680px at -6% 10%, rgba(255, 184, 77, 0.11), transparent 58%),
    radial-gradient(900px 900px at 50% 120%, rgba(255, 107, 53, 0.08), transparent 60%);
  background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--coral); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--coral-2);
  outline-offset: 3px;
  border-radius: 4px;
}
/* inside orange rooms, flip the focus ring to dark ink for AA contrast */
.room--orange :focus-visible,
.people :focus-visible,
.advertiser :focus-visible,
.start :focus-visible { outline-color: var(--on-orange); }

.skip-link {
  position: absolute;
  left: 16px; top: -56px;
  background: var(--coral);
  color: var(--bg);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 200;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

/* kicker / eyebrow — tracked sans label (NEVER mono) */
.section-kicker {
  font-family: var(--body);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 26px; height: 1.5px;
  background: var(--coral);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-3px);
}
/* kicker variant when it sits on an orange room */
.section-kicker.on-warm { color: var(--on-orange); }
.section-kicker.on-warm::before { background: var(--on-orange); }

/* gradient display type degrades to solid coral where background-clip absent */
.text-gradient {
  background: linear-gradient(96deg, var(--coral) 12%, var(--amber) 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .text-gradient, .line-accent { color: var(--coral); }
}

/* ==========================================================================
   4. BUTTONS / CTA  (no outer glow — fill + inner sheen + grounded shadow)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease),
              color 0.18s var(--ease), border-color 0.18s var(--ease);
}

/* primary — solid coral on dark rooms */
.btn-primary {
  background: var(--coral);
  color: var(--on-orange-cta);
  border-color: var(--coral-deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 10px 22px -12px rgba(0, 0, 0, 0.7);
  transition: transform 0.18s var(--ease), background 0.18s var(--ease),
              box-shadow 0.18s var(--ease);
}
.btn-primary:hover {
  background: var(--coral-2);
  transform: translateY(-2px) scale(1.015);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 18px 34px -14px rgba(0, 0, 0, 0.8);
}
.btn-primary:active {
  background: var(--coral-deep);
  transform: translateY(0) scale(0.99);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ghost — quiet secondary on dark rooms */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--ink-soft); transform: translateY(-1px); }
.btn-ghost:active { transform: translateY(0) scale(0.99); }

/* on-warm — dark espresso fill, for use INSIDE orange rooms/bands */
.btn-onwarm {
  background: var(--on-orange-cta);
  color: var(--ink);
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 26px -14px rgba(40, 16, 4, 0.65);
}
.btn-onwarm:hover {
  background: #311c10;
  transform: translateY(-2px) scale(1.015);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 34px -16px rgba(40, 16, 4, 0.7);
}
.btn-onwarm:active { transform: translateY(0) scale(0.99); }

.btn-lg { font-size: 18px; padding: 17px 32px; }

/* earn CTA — animated light→dark ombré matching `.how--tiered` steps palette */
.btn-earn {
  --earn-grad: linear-gradient(
    180deg,
    #FFC75E 0%,
    #FFB959 14%,
    #FFAB54 28%,
    #FF9E51 42%,
    #FF924E 56%,
    #FF8A51 70%,
    var(--coral-2) 84%,
    #FF924E 100%
  );
  background: var(--earn-grad);
  background-size: 100% 220%;
  background-position: 0% 0%;
  animation: earn-ombre 5.5s ease-in-out infinite alternate;
  color: var(--on-orange);
  border-color: rgba(42, 18, 6, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 10px 22px -12px rgba(0, 0, 0, 0.7);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.btn-earn:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 18px 34px -14px rgba(0, 0, 0, 0.8);
}
.btn-earn:active {
  transform: translateY(0) scale(0.99);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
@keyframes earn-ombre {
  0%   { background-position: 0% 0%; }
  100% { background-position: 0% 100%; }
}
/* nav earn CTA inherits pill sizing from `.nav-cta`, gradient from `.btn-earn` */
.nav-cta.btn-earn {
  background: var(--earn-grad);
  background-size: 100% 220%;
  background-position: 0% 0%;
  animation: earn-ombre 5.5s ease-in-out infinite alternate;
  color: var(--on-orange);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.nav-cta.btn-earn:hover {
  transform: translateY(-1px);
  /* keep animated gradient — no flat hover fill */
}
.nav-cta.btn-earn .nav-cta-free { color: var(--on-orange-soft); opacity: 1; }

/* ==========================================================================
   5. NAV / HEADER
   ========================================================================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px) saturate(120%);
  background: rgba(26, 21, 18, 0.66);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 15px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-word {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.brand-mark {
  width: 28px; height: 28px;
  display: block;
  /* grounded depth on the dark nav — physical, never an outer glow */
  filter: drop-shadow(0 4px 10px rgba(232, 90, 28, 0.28));
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-quiet {
  font-size: 15px;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}
.nav-quiet:hover { color: var(--ink); }
.nav-advertiser {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--line-2);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-advertiser:hover { color: var(--ink); border-color: var(--coral); }
.nav-cta {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: var(--coral);
  color: var(--on-orange-cta);
  font-weight: 600;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: background 0.18s var(--ease), transform 0.18s var(--ease);
}
.nav-cta:hover { background: var(--coral-2); transform: translateY(-1px); }
.nav-cta-free { font-size: 12px; font-weight: 600; opacity: 0.7; }

/* ==========================================================================
   6. ROOM SHELLS  (reusable section primitives for every page)
   --------------------------------------------------------------------------
   .room            base full-width section padding
   .room--dark      espresso room (default look)
   .room--orange    full coral->amber band, dark ink, lit inner highlight
   .room--sm/md/lg  vertical rhythm size
   .room-inner      centered max-width content wrapper
   ========================================================================== */
section { position: relative; }

.room { position: relative; padding: var(--room-md) var(--pad); }
.room--sm { padding-top: var(--room-sm); padding-bottom: var(--room-sm); }
.room--md { padding-top: var(--room-md); padding-bottom: var(--room-md); }
.room--lg { padding-top: var(--room-lg); padding-bottom: var(--room-lg); }

.room-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.room--dark { background: transparent; color: var(--ink); }

.room--orange {
  overflow: hidden;
  background: var(--orange-grad);
  color: var(--on-orange);
}
/* soft inner highlight so orange bands feel lit, not poster-flat */
.room--orange::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(72% 96% at 20% 4%, rgba(255, 255, 255, 0.24), transparent 60%);
  pointer-events: none;
}
.room--orange h1,
.room--orange h2,
.room--orange h3 { color: var(--on-orange); }

/* a reusable drifting white highlight pool for orange rooms (parallax target) */
.room-glow {
  position: absolute;
  inset: 0;
  transform: translateY(var(--py, 0));
  background:
    radial-gradient(closest-side, rgba(255, 255, 255, 0.22), transparent 72%),
    radial-gradient(closest-side, rgba(255, 232, 200, 0.16), transparent 82%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

/* legacy/explicit centering helpers shared across page layouts */
.hero-grid, .how, .money-inner, .trust-list,
.advertiser-inner, .start-inner, .how-head {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   7. CHIPS  (monogram/logo + label, dark-room legible)
   ========================================================================== */
.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 7px 13px 7px 11px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.chip:hover { border-color: rgba(255, 107, 53, 0.4); color: var(--ink); }
/* brand glyphs recolored to one warm tone, so monochrome marks stay crisp +
   AA-legible on the dark espresso room. Two supported renderings: */
.chip-logo { flex-shrink: 0; width: 18px; height: 18px; }

/* (a) legacy CSS-mask technique — kept for the documented span API.
   Pass the svg via --logo on a <span class="chip-logo">. */
span.chip-logo {
  background-color: #E3D4C2;
  -webkit-mask: var(--logo) center / contain no-repeat;
  mask: var(--logo) center / contain no-repeat;
  transition: background-color 0.2s var(--ease);
}
.chip:hover span.chip-logo { background-color: var(--coral-2); }

/* (b) reliable inline-svg marks (recommended) — a real <svg class="chip-logo">
   (often <use href="#logo-x">) recolored via `color`/currentColor. Always
   visible, no mask quirks. */
svg.chip-logo {
  display: block;
  color: #E3D4C2;
  fill: currentColor;
  transition: color 0.2s var(--ease);
}
.chip:hover svg.chip-logo { color: var(--coral-2); }

/* ==========================================================================
   8. SURFACES VISUAL  ("where it runs" — two labeled groups of chips)
   ========================================================================== */
.surfaces { padding: var(--room-sm) var(--pad); }
.surfaces-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  background: linear-gradient(168deg, var(--bg-2), var(--bg));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.4vw, 40px);
}
.surfaces-head { margin-bottom: clamp(20px, 2.6vw, 30px); }
#surfaces-title, .surfaces-title {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  max-width: 16em;
}
.surface-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
}
.surface-group {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(16px, 2vw, 22px);
}
.surface-label {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-bottom: 16px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}
.surface-tag {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.surface-note { font-size: 13px; color: var(--muted); }
.surfaces-caption {
  margin-top: clamp(18px, 2.4vw, 26px);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.surfaces-caption code {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink-soft);
  background: rgba(243, 234, 224, 0.06);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 6px;
}
.surfaces-aside { display: block; margin-top: 4px; font-size: 13px; color: var(--muted-2); }

/* ==========================================================================
   9. ROADMAP  (nested, progressively larger soft squares on a growth graph)
   ========================================================================== */
.roadmap { padding: var(--room-lg) var(--pad); }
.roadmap-head { margin-bottom: clamp(32px, 5vw, 64px); }
#roadmap-title, .roadmap-title { font-size: clamp(28px, 3.6vw, 46px); max-width: 13em; margin-bottom: 16px; }
.roadmap-lede { font-size: 18px; color: var(--ink-soft); max-width: 34em; }

.roadmap-graph {
  --rm: clamp(54px, 8.4vw, 104px);
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  height: calc(var(--rm) * 6);
  padding-left: 34px;
  padding-bottom: 30px;
}
.roadmap-glow {
  position: absolute;
  left: 30%; top: 0;
  width: 70%; height: 100%;
  transform: translateY(var(--py, 0));
  background: radial-gradient(58% 58% at 70% 28%, rgba(255, 107, 53, 0.14), transparent 70%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
}
.roadmap-axis-y,
.roadmap-axis-x { position: absolute; background: var(--line-2); z-index: 1; }
.roadmap-axis-y { left: 34px; top: 0; bottom: 30px; width: 1px; }
.roadmap-axis-x { left: 34px; right: 0; bottom: 30px; height: 1px; }
.roadmap-axis-cap {
  position: absolute;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  z-index: 1;
}
.roadmap-axis-cap-y {
  left: -2px; top: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transform-origin: left top;
}
.roadmap-axis-cap-x { right: 0; bottom: 8px; }

.roadmap-steps {
  list-style: none;
  position: absolute;
  left: 34px; bottom: 30px;
  right: 0; top: 0;
  z-index: 2;
}
.rm-node {
  position: absolute;
  left: 0; bottom: 0;
  border-radius: clamp(14px, 1.8vw, 24px);
  border: 1px solid transparent;
  overflow: hidden;
}
.rm-meta {
  position: absolute;
  top: clamp(10px, 1.2vw, 16px);
  left: clamp(12px, 1.4vw, 18px);
  right: clamp(10px, 1.2vw, 16px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rm-idx {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  opacity: 0.75;
}
.rm-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(12px, 1.35vw, 16px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
/* sizes step up; offsets step up-and-right; z-index drops so smallest is front */
.rm-node-1 { width: calc(var(--rm) * 1.0); height: calc(var(--rm) * 1.0); left: 0; bottom: 0; z-index: 50; }
.rm-node-2 { width: calc(var(--rm) * 1.5); height: calc(var(--rm) * 1.5); left: calc(var(--rm) * 0.72); bottom: calc(var(--rm) * 0.56); z-index: 40; }
.rm-node-3 { width: calc(var(--rm) * 2.0); height: calc(var(--rm) * 2.0); left: calc(var(--rm) * 1.58); bottom: calc(var(--rm) * 1.2); z-index: 30; }
.rm-node-4 { width: calc(var(--rm) * 2.5); height: calc(var(--rm) * 2.5); left: calc(var(--rm) * 2.6); bottom: calc(var(--rm) * 1.96); z-index: 20; }
.rm-node-5 { width: calc(var(--rm) * 3.0); height: calc(var(--rm) * 3.0); left: calc(var(--rm) * 3.74); bottom: calc(var(--rm) * 2.84); z-index: 10; }
/* concrete now (solid coral) -> vaguer future (ghosted amber) */
.rm-node-1 {
  background: var(--coral);
  border-color: var(--coral-deep);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 18px 36px -18px rgba(0, 0, 0, 0.7);
}
.rm-node-1 .rm-idx,
.rm-node-1 .rm-label { color: var(--on-orange-cta); }
.rm-node-2 { background: rgba(255, 107, 53, 0.20); border-color: rgba(255, 107, 53, 0.52); }
.rm-node-3 { background: rgba(255, 130, 84, 0.14); border-color: rgba(255, 130, 84, 0.40); }
.rm-node-4 { background: rgba(255, 184, 77, 0.10); border-color: rgba(255, 184, 77, 0.32); }
.rm-node-5 { background: rgba(255, 184, 77, 0.06); border-color: rgba(255, 184, 77, 0.24); }
.rm-node-2 .rm-idx, .rm-node-3 .rm-idx, .rm-node-4 .rm-idx, .rm-node-5 .rm-idx { color: var(--amber); }
.rm-node-2 .rm-label, .rm-node-3 .rm-label, .rm-node-4 .rm-label, .rm-node-5 .rm-label { color: var(--ink); }

/* ==========================================================================
   10. HERO  (product visualized: the AI wait that pays)
   ========================================================================== */
.hero { position: relative; padding: var(--room-md) var(--pad) var(--room-lg); }
/* orange-bathed hero: a coral->amber light pool washes the opening */
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -6% -4%;
  background:
    radial-gradient(58% 70% at 22% 30%, rgba(255, 107, 53, 0.28), transparent 64%),
    radial-gradient(60% 64% at 86% 22%, rgba(255, 184, 77, 0.22), transparent 66%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.hero-kicker {
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
#hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}
.line-accent {
  display: block;
  background: linear-gradient(96deg, var(--coral) 12%, var(--amber) 88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--ink-soft);
  max-width: 30em;
  margin-bottom: 32px;
}
.hero-lede strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero-footnote { font-size: 14px; color: var(--muted); }

/* the wait card — integrated into a tilted, lit 3D scene */
.hero-stage { position: relative; }
.hero-scene { position: relative; perspective: 1400px; perspective-origin: 60% 40%; }
.scene-glow {
  position: absolute;
  inset: -14% -10% -18% -6%;
  background:
    radial-gradient(46% 46% at 64% 28%, rgba(255, 107, 53, 0.30), transparent 70%),
    radial-gradient(50% 48% at 30% 18%, rgba(255, 184, 77, 0.20), transparent 72%),
    radial-gradient(54% 50% at 30% 82%, rgba(127, 224, 192, 0.09), transparent 74%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
  transform: translateY(var(--py, 0));
  will-change: transform;
}
.scene-tilt {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  transform: rotateY(-7deg) rotateX(3deg);
  transition: transform 0.6s var(--ease);
}
.hero-scene:hover .scene-tilt { transform: rotateY(-4deg) rotateX(1.5deg); }
.wc-shadow {
  position: absolute;
  left: 6%; right: 6%;
  bottom: -7%;
  height: 70%;
  background: radial-gradient(50% 60% at 50% 100%, rgba(0, 0, 0, 0.65), transparent 75%);
  filter: blur(26px);
  transform: translateZ(-120px) scale(1.02);
  pointer-events: none;
}
.wait-card {
  position: relative;
  background: linear-gradient(168deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line-2);
  border-radius: 20px;
  overflow: hidden;
  transform: translateZ(40px) translateY(var(--py, 0));
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.04) inset,
    0 50px 90px -46px rgba(0, 0, 0, 0.8);
  will-change: transform;
}
.wc-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 234, 224, 0.02);
}
.wc-app { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 15px; }
/* legacy status dot — retained for other pages that still use the wait-card */
.wc-app-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); }
/* the vendor's own brand mark, monochrome — swaps with the rotating scene so the
   card reads as that product. The per-vendor accent lives on .wc-state. */
.wc-app-logo { flex-shrink: 0; width: 17px; height: 17px; color: var(--ink); fill: currentColor; }
.wc-state { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.02em; transition: color 0.4s var(--ease); }
.wc-body { padding: 22px 20px 24px; display: flex; flex-direction: column; gap: 16px; }
.wc-prompt {
  align-self: flex-start;
  max-width: 90%;
  background: rgba(243, 234, 224, 0.05);
  border: 1px solid var(--line);
  border-radius: 13px 13px 13px 5px;
  padding: 12px 15px;
  font-size: 15px;
  color: var(--ink-soft);
}
/* legacy three-dot loader — retained for other pages that still use it */
.wc-thinking { display: flex; align-items: center; gap: 11px; color: var(--muted); font-size: 15px; }
.wc-dots { display: inline-flex; gap: 5px; }
.wc-dots i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--muted-2);
  animation: dot 1.3s var(--ease) infinite;
}
.wc-dots i:nth-child(2) { animation-delay: 0.18s; }
.wc-dots i:nth-child(3) { animation-delay: 0.36s; }
@keyframes dot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

/* per-vendor "loading" affordance — the card mirrors the exact wait view each
   product shows. One container, four CSS-only variants chosen by data-loader;
   the active vendor's accent threads through via --accent. */
.wc-think { display: flex; align-items: center; gap: 11px; color: var(--muted); font-size: 15px; min-height: 22px; }
.wc-think-label { line-height: 1.3; }
.wc-ld { display: inline-flex; align-items: center; flex-shrink: 0; height: 16px; }
.wc-ld > * { display: none; }
.wc-think[data-loader="claude"]  .wc-ld-claude  { display: inline-flex; }
.wc-think[data-loader="sources"] .wc-ld-sources { display: inline-flex; }
.wc-think[data-loader="caret"]   .wc-ld-caret   { display: inline-flex; }
.wc-think[data-loader="bar"]     .wc-ld-bar     { display: inline-flex; }

/* Claude — faithful to Claude Code's real thinking indicator: a single
   hand-drawn sparkle/asterisk that morphs through six glyphs (·✢✳✶✻✽) on a
   ~120ms-per-frame clock, paired with a reverse shimmer sweep over the verb
   (see .wc-think[data-loader="claude"] .wc-think-label below). The glyphs are
   stacked and cross-faded with hard opacity steps so only one shows per frame. */
.wc-ld-claude { position: relative; width: 16px; height: 16px; }
.wc-ld-claude i {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; line-height: 1; font-style: normal;
  color: var(--accent, var(--amber));
  opacity: 0;
  animation: wcClaudeGlyph 0.72s steps(1, end) infinite;
}
.wc-ld-claude i:nth-child(1) { animation-delay: 0s; }
.wc-ld-claude i:nth-child(2) { animation-delay: 0.12s; }
.wc-ld-claude i:nth-child(3) { animation-delay: 0.24s; }
.wc-ld-claude i:nth-child(4) { animation-delay: 0.36s; }
.wc-ld-claude i:nth-child(5) { animation-delay: 0.48s; }
.wc-ld-claude i:nth-child(6) { animation-delay: 0.60s; }
@keyframes wcClaudeGlyph {
  0%      { opacity: 1; }
  16.66%  { opacity: 1; }
  16.67%  { opacity: 0; }
  100%    { opacity: 0; }
}
/* reverse-sweep highlight across the thinking verb — Claude's shimmer */
.wc-think[data-loader="claude"] .wc-think-label {
  background-image: linear-gradient(100deg,
    var(--muted) 42%, var(--accent, var(--amber)) 50%, var(--muted) 58%);
  background-size: 200% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: wcClaudeShimmer 2.1s linear infinite;
}
@keyframes wcClaudeShimmer {
  0%   { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}

/* Perplexity — a left-to-right scan over "sources" being read */
.wc-ld-sources { gap: 4px; }
.wc-ld-sources i {
  width: 5px; height: 14px; border-radius: 2px;
  background: rgba(243, 234, 224, 0.16);
  animation: wcSrc 1.5s var(--ease) infinite;
}
.wc-ld-sources i:nth-child(2) { animation-delay: 0.16s; }
.wc-ld-sources i:nth-child(3) { animation-delay: 0.32s; }
.wc-ld-sources i:nth-child(4) { animation-delay: 0.48s; }
@keyframes wcSrc {
  0%, 65%, 100% { background: rgba(243, 234, 224, 0.16); }
  30%           { background: var(--accent, var(--amber)); }
}

/* Cursor — a blinking code-generation caret */
.wc-ld-caret i {
  display: block; width: 8px; height: 16px; border-radius: 2px;
  background: var(--accent, var(--coral));
  animation: wcCaret 1.05s steps(1, end) infinite;
}
@keyframes wcCaret { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0.18; } }

/* Runway — an indeterminate render-progress sweep */
.wc-ld-bar {
  width: 58px; height: 5px; border-radius: 3px;
  background: rgba(243, 234, 224, 0.12);
  overflow: hidden; position: relative;
}
.wc-ld-bar i {
  position: absolute; top: 0; bottom: 0; left: -42%;
  width: 42%; border-radius: 3px;
  background: var(--accent, var(--amber));
  animation: wcBar 1.7s var(--ease) infinite;
}
@keyframes wcBar { 0% { left: -42%; } 100% { left: 100%; } }
.wc-sponsor {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 107, 53, 0.32);
  background: var(--coral-wash);
  border-radius: 13px;
  padding: 13px 15px;
}
.wc-sponsor-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-2);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 6px;
  padding: 4px 7px;
  flex-shrink: 0;
}
/* the real brand mark inside the sample ad unit — monochrome, recolored via
   currentColor to sit with the line's warm ink; swaps in sync with the line */
.wc-sponsor-logo {
  flex-shrink: 0;
  width: 17px; height: 17px;
  color: var(--ink-soft);
  fill: currentColor;
  transition: opacity 0.4s var(--ease);
}
.wc-sponsor-logo.is-swapping { opacity: 0; }
.wc-sponsor-line { font-size: 14px; color: var(--ink-soft); transition: opacity 0.4s var(--ease); line-height: 1.4; }
.wc-sponsor-line.is-swapping { opacity: 0; }
.wc-earn { display: flex; align-items: baseline; gap: 10px; font-family: var(--mono); }
.wc-earn-amt { font-size: 19px; font-weight: 600; color: var(--mint); font-variant-numeric: tabular-nums; }
.wc-earn-meta { font-size: 12.5px; color: var(--muted); }
.wc-earn-share { color: var(--ink-soft); }
.wc-earn.is-pop { animation: pop 0.5s var(--ease); }
@keyframes pop {
  0% { transform: scale(1); }
  35% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.wc-ledger {
  position: absolute;
  right: -22px;
  bottom: -26px;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-deep));
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateZ(110px) translateY(var(--py, 0));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 30px 56px -22px rgba(0, 0, 0, 0.85);
  will-change: transform;
}
.wc-ledger-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.wc-ledger-amt { font-family: var(--mono); font-size: 24px; font-weight: 600; color: var(--mint); font-variant-numeric: tabular-nums; }
.wc-ledger-cur { opacity: 0.6; font-size: 16px; margin-right: 1px; }
.wc-disclaimer { margin-top: 62px; font-size: 12.5px; color: var(--muted-2); text-align: left; max-width: 60%; }

/* ==========================================================================
   11. SECOND HERO — "AI for the People"  (orange room, 0% vs 90%)
   ========================================================================== */
.people {
  position: relative;
  overflow: hidden;
  padding: var(--room-lg) var(--pad);
  background: var(--orange-grad);
  color: var(--on-orange);
  display: flex;
  align-items: center;
  min-height: clamp(560px, 86vh, 880px);
}
.people::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(72% 96% at 20% 4%, rgba(255, 255, 255, 0.24), transparent 60%);
  pointer-events: none;
}
.people-glow {
  position: absolute;
  right: -8%; top: 8%;
  width: min(760px, 70%); height: 620px;
  transform: translateY(var(--py, 0));
  background:
    radial-gradient(closest-side, rgba(255, 255, 255, 0.22), transparent 72%),
    radial-gradient(closest-side, rgba(255, 232, 200, 0.16), transparent 82%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}
.people-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
#people-title {
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--on-orange);
  margin-bottom: clamp(28px, 4vw, 48px);
  max-width: 14em;
}
.people-contrast {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 56px);
  max-width: 880px;
  margin-bottom: clamp(28px, 3.6vw, 44px);
}
.contrast-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 2px solid rgba(42, 18, 6, 0.22);
  padding-top: 16px;
}
.contrast-label { font-size: clamp(14px, 1.4vw, 16px); font-weight: 600; line-height: 1.35; max-width: 18em; }
.contrast-num {
  font-family: var(--mono);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  line-height: 0.9;
  margin: 0;
}
.contrast-pct { font-size: 0.46em; margin-left: 0.04em; }
.contrast-zero .contrast-label { color: var(--on-orange-mut); }
.contrast-zero .contrast-num { font-size: clamp(3.5rem, 9vw, 6rem); color: var(--on-orange-mut); opacity: 0.66; }
.contrast-ninety .contrast-label { color: var(--on-orange-soft); }
.contrast-ninety .contrast-num { font-size: clamp(5rem, 15vw, 10rem); color: var(--on-orange); }
.people-body { font-size: clamp(17px, 1.7vw, 21px); font-weight: 500; color: var(--on-orange-soft); max-width: 32em; }

/* quiet on-orange footnote → the interactive essay (dark ink, AA on coral→amber) */
.people-footnote { margin-top: clamp(22px, 3vw, 34px); }
.people-footnote a {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  font-size: 14px;
  color: var(--on-orange-soft);
  border-bottom: 1px solid rgba(42, 18, 6, 0.28);
  padding-bottom: 2px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.people-footnote a:hover { color: var(--on-orange); border-color: var(--on-orange); }
.people-footnote .ft-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-orange-mut);
}
.people-footnote .ft-arrow { transition: transform 0.2s var(--ease); }
.people-footnote a:hover .ft-arrow { transform: translateX(3px); }

/* ==========================================================================
   12. HOW IT WORKS — zig-zag steps
   ========================================================================== */
.how { padding: var(--room-md) var(--pad); }
.how-head { margin-bottom: clamp(28px, 4vw, 48px); }
#how-title { font-size: clamp(28px, 3.6vw, 46px); max-width: 14em; }
.steps { list-style: none; max-width: var(--maxw); margin: 0 auto; border-top: 1px solid var(--line); }
.step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: clamp(16px, 3vw, 40px);
  align-items: start;
  padding: clamp(26px, 3.4vw, 40px) 0;
  border-bottom: 1px solid var(--line);
}
.step-num { font-family: var(--mono); font-size: 15px; font-weight: 500; color: var(--coral); padding-top: 6px; }
.step-text h3 { font-size: clamp(21px, 2.4vw, 30px); font-weight: 600; margin-bottom: 8px; }
.step-text p { color: var(--muted); font-size: 17px; max-width: 36em; }

/* --------------------------------------------------------------------------
   12b. TIERED ORANGE STEPS  (additive — `.how--tiered`)
   --------------------------------------------------------------------------
   Brings the bright advertiser-CTA orange-room aesthetic (coral->amber, dark
   ink) into the "Three steps" section as ONE cohesive top-to-bottom ombré: the
   list reads as a single lit panel whose warmth deepens as you move down it —
   bright golden amber at step 01, resolving to a deeper coral at step 03. The
   three rows are NOT independent tiers; each row's bottom color equals the next
   row's top color, so they compose into one continuous near-vertical (180deg)
   gradient with no seam or flat row. The instruction flow naturally darkens as
   you read top→bottom. The darkest endpoint is capped at --coral-2 so dark body
   ink (--on-orange-soft) stays AA-legible on every row (never light on orange).
   The section keeps its `.warm-ramp warm-1` global scroll-warming behind it.
   ========================================================================== */
.how--tiered .steps {
  border-top: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 30px 64px -34px rgba(40, 16, 4, 0.55);
}
.how--tiered .step {
  border-bottom: 1px solid rgba(42, 18, 6, 0.16);
  padding-left: clamp(20px, 3vw, 38px);
  padding-right: clamp(20px, 3vw, 38px);
}
.how--tiered .step:last-child { border-bottom: none; }
/* one continuous light->dark vertical ombré: each row's bottom = next row's top */
.how--tiered .step:nth-child(1) { background: linear-gradient(180deg, #FFC75E 0%, #FFB959 50%, #FFAB54 100%); }
.how--tiered .step:nth-child(2) { background: linear-gradient(180deg, #FFAB54 0%, #FF9E51 50%, #FF924E 100%); }
.how--tiered .step:nth-child(3) { background: linear-gradient(180deg, #FF924E 0%, #FF8A51 50%, var(--coral-2) 100%); }
/* dark ink on every tier (matches the advertiser band's on-orange treatment) */
.how--tiered .step-num { color: var(--on-orange); padding-left: 2px; }
.how--tiered .step-text h3 { color: var(--on-orange); }
.how--tiered .step-text p { color: var(--on-orange-soft); }

/* ==========================================================================
   13. MONEY  (precise figures + personal ledger — mint money, dark room)
   ========================================================================== */
.money { padding: var(--room-lg) var(--pad); }
.money-inner {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
#money-title { font-size: clamp(30px, 3.8vw, 50px); margin-bottom: 18px; }
.money-lede { font-size: 18px; color: var(--ink-soft); max-width: 30em; margin-bottom: 30px; }
.money-lede strong { color: var(--mint); font-weight: 600; font-variant-numeric: tabular-nums; }
.money-facts { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.fact { display: flex; align-items: baseline; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.fact-num {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 26px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  min-width: 108px;
}
.fact-label { color: var(--muted); font-size: 16px; }

.ledger { background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 18px; padding: 22px 24px 18px; }
.ledger-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.ledger-title { font-family: var(--display); font-weight: 700; font-size: 18px; }
.ledger-sub { font-family: var(--mono); font-size: 11.5px; color: var(--muted); }
.ledger-table { width: 100%; border-collapse: collapse; }
.ledger-table th {
  text-align: left;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 0 0 10px;
  border-bottom: 1px solid var(--line);
}
.ledger-table td { padding: 11px 0; font-size: 15px; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.ledger-table .num { font-family: var(--mono); text-align: right; font-variant-numeric: tabular-nums; }
.ledger-table .dim { color: var(--muted); }
.ledger-table .you { color: var(--mint); }
.ledger-table tfoot td { border-bottom: none; padding-top: 13px; font-weight: 600; color: var(--ink); }
.ledger-table .total { font-size: 16px; }
.ledger-note { margin-top: 12px; font-size: 12px; color: var(--muted-2); }

/* ==========================================================================
   14. TRUST
   ========================================================================== */
.trust { padding: var(--room-sm) var(--pad); }
.trust-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(28px, 4vw, 44px) 0;
}
.trust-list li { color: var(--muted); font-size: 15.5px; line-height: 1.55; }
.trust-key { display: block; color: var(--ink); font-weight: 600; font-size: 16px; margin-bottom: 6px; }

/* ==========================================================================
   15. WAITLIST BAND  (inline email capture — themed to dark room)
   ========================================================================== */
.waitlist { padding: var(--room-sm) var(--pad); }
.waitlist-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  background: linear-gradient(168deg, var(--bg-2), var(--bg));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.4vw, 36px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.waitlist-copy { max-width: 36em; }
.waitlist-copy h2 { font-size: clamp(20px, 2.2vw, 28px); margin-bottom: 8px; }
.waitlist-copy p { color: var(--muted); font-size: 15.5px; }
.waitlist-copy p b { color: var(--ink-soft); font-weight: 600; }
.waitlist-form { display: flex; gap: 10px; flex-wrap: wrap; }
.waitlist-form input {
  font-family: var(--body);
  font-size: 15px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 12px 15px;
  color: var(--ink);
  min-width: 230px;
  outline: none;
  transition: border-color 0.2s var(--ease);
}
.waitlist-form input::placeholder { color: var(--muted-2); }
.waitlist-form input:focus { border-color: var(--coral); }
.waitlist-form button {
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid var(--coral-deep);
  background: var(--coral);
  color: var(--on-orange-cta);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: background 0.18s var(--ease), transform 0.18s var(--ease);
}
.waitlist-form button:hover { background: var(--coral-2); transform: translateY(-1px); }
.waitlist-form button:disabled { opacity: 0.6; cursor: default; transform: none; }
/* confirmation states (rendered by JS after submit) */
.wl-confirm { font-family: var(--body); max-width: 30em; }
.wl-ok { font-size: 15px; color: var(--mint); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.wl-sub { font-size: 14px; color: var(--muted); margin-top: 4px; }
.wl-sub b { color: var(--ink); font-variant-numeric: tabular-nums; }
.wl-ref { margin-top: 14px; }
.wl-ref-label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.wl-ref-row { display: flex; gap: 8px; align-items: center; margin-top: 6px; }
.wl-ref-row code {
  flex: 1;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink-soft);
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 9px 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wl-copy {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid var(--coral-deep);
  background: var(--coral);
  color: var(--on-orange-cta);
  flex-shrink: 0;
}
.wl-copy:hover { background: var(--coral-2); }
.wl-note { font-size: 12.5px; color: var(--muted-2); margin-top: 10px; line-height: 1.5; }

/* ==========================================================================
   15b. PROOF BAND  (thin community-ledger strip — real figures only)
   ========================================================================== */
.proof-band {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--body);
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-band .pb-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--mint-soft);
}
.proof-band .pb-body b { color: var(--mint); font-variant-numeric: tabular-nums; }
.proof-band.live .pb-body { color: var(--ink-soft); }
.proof-band .pb-link {
  color: var(--coral);
  border-bottom: 1px dashed rgba(255, 107, 53, 0.4);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.proof-band .pb-link:hover { color: var(--coral-2); border-color: var(--coral-2); }

/* ==========================================================================
   16. ADVERTISER BAND  (orange room, the active secondary CTA)
   ========================================================================== */
.advertiser { padding: var(--room-sm) var(--pad); }
.advertiser-inner {
  background: var(--orange-grad);
  color: var(--on-orange-cta);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
#adv-title { font-size: clamp(26px, 3vw, 40px); color: #1c0f08; max-width: 16em; margin-bottom: 12px; }
.advertiser-lede { color: #3a2110; font-size: 17px; max-width: 34em; }

/* ==========================================================================
   17. FINAL CTA  (orange room — bookends the hero)
   ========================================================================== */
.start {
  position: relative;
  overflow: hidden;
  padding: var(--room-lg) var(--pad);
  text-align: center;
  background: var(--orange-grad);
  color: var(--on-orange);
}
.start-glow {
  position: absolute;
  left: 50%; top: 30%;
  width: min(900px, 120%); height: 640px;
  transform: translate3d(-50%, var(--py, 0), 0);
  background:
    radial-gradient(closest-side, rgba(255, 255, 255, 0.26), transparent 70%),
    radial-gradient(closest-side, rgba(255, 232, 200, 0.18), transparent 80%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}
.start-inner { position: relative; z-index: 1; max-width: 760px; margin-left: auto; margin-right: auto; }
#start-title { font-size: clamp(32px, 4.6vw, 60px); font-weight: 800; margin-bottom: 18px; color: var(--on-orange); }
.start-lede { font-size: 19px; color: var(--on-orange-soft); margin-bottom: 30px; }
.start-note { margin-top: 18px; font-size: 14px; color: var(--on-orange-mut); }

/* ==========================================================================
   18. FOOTER
   ========================================================================== */
.site-foot {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding: clamp(36px, 6vh, 64px) var(--pad) 40px;
}
.foot-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.foot-brand { font-family: var(--display); font-weight: 800; font-size: 20px; letter-spacing: -0.03em; }
.foot-links { display: flex; flex-wrap: wrap; gap: 22px; }
.foot-links a { font-size: 14.5px; color: var(--muted); transition: color 0.2s var(--ease); }
.foot-links a:hover { color: var(--ink); }
.foot-quiet { color: var(--muted-2) !important; }
.foot-fine { max-width: var(--maxw); margin: 26px auto 0; font-size: 12px; color: var(--muted-2); line-height: 1.6; }

/* ==========================================================================
   18b. PROGRESSIVE OMBRÉ WARM-UP  (additive — index landing ramp)
   --------------------------------------------------------------------------
   The stretch of dark rooms between the "AI for the People" orange beat and
   the orange advertiser/start bookend used to read as one flat dark slab.
   `.warm-ramp` lays a full-bleed warm wash behind a section; `.warm-1…5`
   step the coral intensity up so scrolling feels like a gradual warm-up that
   resolves into the orange CTA. Rooms stay espresso-dark (light ink keeps AA;
   the money room stays dark enough that mint money still reads — never an
   orange band). Each step's bottom tint matches the next step's top tint, so
   the gradient flows continuously from one section into the next.
   ========================================================================== */
.warm-ramp { position: relative; isolation: isolate; }
.warm-ramp::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: var(--ramp-bg, none);
}
.warm-1 { --ramp-bg: linear-gradient(180deg, rgba(255,107,53,0) 0%, rgba(255,107,53,0.045) 100%); }
.warm-2 { --ramp-bg: linear-gradient(180deg, rgba(255,107,53,0.045) 0%, rgba(255,107,53,0.085) 100%); }
.warm-3 { --ramp-bg: linear-gradient(180deg, rgba(255,107,53,0.085) 0%, rgba(255,128,60,0.12) 100%); }
.warm-4 {
  --ramp-bg:
    linear-gradient(180deg, rgba(255,128,60,0.12) 0%, rgba(255,140,66,0.17) 100%),
    radial-gradient(95% 72% at 50% 124%, rgba(255,107,53,0.16), transparent 70%);
}
.warm-5 {
  --ramp-bg:
    linear-gradient(180deg, rgba(255,140,66,0.17) 0%, rgba(255,150,74,0.24) 100%),
    radial-gradient(96% 84% at 50% 128%, rgba(255,107,53,0.24), transparent 72%);
}
/* peak — the gutter behind the orange advertiser card; resolves the warm-up */
.warm-6 {
  --ramp-bg:
    linear-gradient(180deg, rgba(255,150,74,0.24) 0%, rgba(255,150,74,0.30) 100%),
    radial-gradient(80% 90% at 50% 50%, rgba(255,107,53,0.18), transparent 74%);
}

/* ==========================================================================
   18c. SURFACE GROUP VARIANTS  (additive — make the two cards distinct)
   --------------------------------------------------------------------------
   Chrome app = warm, coral-tinted, lit (the browser beat).
   Desktop    = cool, deep espresso, amber-accented (the local-tools beat).
   ========================================================================== */
.surface-group--chrome {
  background: linear-gradient(165deg, rgba(255,107,53,0.12), rgba(255,107,53,0.02));
  border-color: rgba(255,107,53,0.34);
  border-left: 2px solid var(--coral);
}
.surface-group--chrome .surface-label { border-bottom-color: rgba(255,107,53,0.30); }
.surface-group--chrome .surface-tag { color: var(--coral-2); }

.surface-group--desktop {
  background: linear-gradient(165deg, var(--bg-3), var(--bg-deep));
  border-color: var(--line-2);
  border-left: 2px solid var(--amber);
}
.surface-group--desktop .surface-label { border-bottom-color: var(--line-2); }
.surface-group--desktop .surface-tag { color: var(--ink); }
/* desktop chips lean amber on hover to echo the card's cool/amber accent */
.surface-group--desktop .chip:hover { border-color: rgba(255,184,77,0.45); }
.surface-group--desktop .chip:hover svg.chip-logo { color: var(--amber); }

/* ==========================================================================
   18d. HERO BRAND STRIP  (additive — "pays you while you wait in …")
   ========================================================================== */
.hero-logos {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 8px 16px;
  flex-wrap: wrap;
}
.hero-logos-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.hero-logos-row {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-logos-row li { display: inline-flex; }
.brand-logo {
  display: block;
  width: 20px; height: 20px;
  color: var(--ink-soft);
  fill: currentColor;
  opacity: 0.66;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.hero-logos-row li:hover .brand-logo,
.hero-logos-row a:focus-visible .brand-logo { color: var(--amber); opacity: 1; transform: translateY(-1px); }

/* hidden inline-svg sprite host (symbols referenced via <use href="#logo-…">) */
.logo-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ==========================================================================
   19. MOTION — scroll reveals (driven by theme.js)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ==========================================================================
   20. RESPONSIVE
   ========================================================================== */
@media (max-width: 920px) {
  body { font-size: 16px; }
  .hero-grid,
  .money-inner { grid-template-columns: 1fr; }
  .hero-stage { margin-top: 18px; }
  .scene-tilt { transform: rotateY(-3deg) rotateX(1.5deg); }
  .wc-ledger { right: 0; }
  .wc-disclaimer { text-align: left; }
  .nav-quiet { display: none; }
  .trust-list { grid-template-columns: 1fr; gap: 22px; }
  .surface-groups { grid-template-columns: 1fr; }
  .roadmap-graph { --rm: clamp(48px, 12vw, 90px); }
  .waitlist-inner { flex-direction: column; align-items: flex-start; }
  .waitlist-form { width: 100%; }
  .waitlist-form input { flex: 1; }
}

@media (max-width: 540px) {
  .nav-inner { gap: 12px; }
  .nav-advertiser { display: none; }
  .nav-cta-free { display: none; }
  .hero-actions .btn { flex: 1; }
  .step { grid-template-columns: 1fr; gap: 6px; }
  .step-num { padding-top: 0; }
  .fact { flex-direction: column; gap: 2px; }
  .advertiser-inner { flex-direction: column; align-items: flex-start; }
  .people-contrast { grid-template-columns: 1fr; gap: 28px; }
  .roadmap-graph { --rm: clamp(42px, 15vw, 78px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .scene-tilt { transform: none; }
  .wait-card { transform: none; }
  .wc-ledger { transform: none; }
  .scene-glow, .start-glow, .people-glow, .roadmap-glow, .room-glow { transform: translateY(0); }
  .start-glow { transform: translate3d(-50%, 0, 0); }
  /* per-vendor loaders: hold a tasteful, legible still frame (no motion) */
  .wc-ld-claude i { opacity: 0; }
  .wc-ld-claude i:nth-child(5) { opacity: 1; } /* hold Claude's ✻ sparkle */
  .wc-think[data-loader="claude"] .wc-think-label {
    background-image: none;
    -webkit-text-fill-color: var(--muted); color: var(--muted);
  }
  .wc-ld-sources i { background: rgba(243, 234, 224, 0.16); }
  .wc-ld-sources i:nth-child(1),
  .wc-ld-sources i:nth-child(2) { background: var(--accent, var(--amber)); }
  .wc-ld-caret i { opacity: 1; }
  .wc-ld-bar i { left: 0; width: 58%; }
  /* earn CTA: hold a still mid-ombré frame (matches tiered steps warmth) */
  .btn-earn,
  .nav-cta.btn-earn {
    animation: none;
    background: linear-gradient(180deg, #FFB959 0%, #FFAB54 38%, #FF924E 68%, var(--coral-2) 100%);
    background-size: 100% 100%;
    background-position: 0 0;
  }
}
