  :root {
    --bg: #0A0A0F;
    --surface: #13131A;
    --surface-2: #191922;
    --hairline: rgba(255,255,255,0.08);
    --hairline-strong: rgba(255,255,255,0.14);
    --text: #FFFFFF;
    --text-muted: #A1A1AA;
    --text-dim: #6B6B78;
    --brand-1: #AB9FF2;
    --brand-2: #534BB1;
    --burst-1: #FF0080;
    --burst-2: #9333EA;
    --burst-3: #3B0764;
    --live: #10B981;
    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
  body { overflow-x: hidden; }
  ::selection { background: rgba(171,159,242,0.28); color: #fff; }

  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }

  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
  .wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; }

  /* ============ NAV ============ */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    background: rgba(10,10,15,0.55);
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease, background .3s ease;
  }
  .nav.scrolled { border-bottom-color: var(--hairline); background: rgba(10,10,15,0.78); }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }
  .nav-left { display: flex; align-items: center; gap: 10px; }
  .wordmark {
    font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: -0.01em;
    display: flex; align-items: center; gap: 8px;
  }
  .wordmark.wordmark-lg {
    font-size: 20px; font-weight: 700; letter-spacing: -0.015em; color: white;
    gap: 10px;
  }
  .wordmark.wordmark-lg .wordmark-mark { width: 26px; height: 26px; border-radius: 7px; }
  .wordmark.wordmark-lg .wordmark-mark::before { font-size: 15px; }
  .wordmark.wordmark-lg .wordmark-dollar { color: var(--brand-3); font-weight: 500; }

  /* Genesis-sized wordmark lockup */
  .wordmark.wordmark-xl {
    font-size: 34px; font-weight: 700; letter-spacing: -0.025em; color: white;
    gap: 14px; justify-content: center;
  }
  .wordmark.wordmark-xl .wordmark-mark { width: 42px; height: 42px; border-radius: 11px; }
  .wordmark.wordmark-xl .wordmark-mark::before { font-size: 24px; }
  .wordmark.wordmark-xl .wordmark-dollar { color: var(--brand-3); font-weight: 500; }

  /* Footer-sized wordmark lockup (~3x default) */
  .wordmark.wordmark-2xl {
    font-size: 48px; font-weight: 700; letter-spacing: -0.03em; color: white;
    gap: 18px;
  }
  .wordmark.wordmark-2xl .wordmark-mark { width: 58px; height: 58px; border-radius: 14px; }
  .wordmark.wordmark-2xl .wordmark-mark::before { font-size: 34px; }
  .wordmark.wordmark-2xl .wordmark-dollar { color: var(--brand-3); font-weight: 500; }

  .wordmark-mark {
    width: 22px; height: 22px; border-radius: 6px;
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-family: var(--font-display); font-weight: 600;
    font-size: 13px; line-height: 1;
  }
  .wordmark-mark::before {
    content: 'ꝏ';
    position: relative; z-index: 1;
    letter-spacing: -0.05em;
    transform: translateY(-1px);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  }
  .wordmark-mark::after{
    content:''; position:absolute; inset:4px; border-radius: 3px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.4), transparent 60%);
    z-index: 0;
  }
  .wordmark-dollar { color: var(--text-muted); font-weight: 400; }
  .nav-links { display: flex; align-items: center; gap: 36px; }
  .nav-link {
    font-size: 14px; color: var(--text-muted); font-weight: 400;
    transition: color .2s ease;
  }
  .nav-link:hover { color: var(--text); }
  .nav-cta {
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    color: white; border: 0; padding: 11px 20px; border-radius: 999px;
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 500; letter-spacing: -0.01em;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset, 0 8px 30px -8px rgba(83,75,177,.55);
    transition: transform .15s ease, box-shadow .2s ease;
  }
  .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(255,255,255,0.1) inset, 0 12px 36px -8px rgba(83,75,177,.7); }

  /* ============ HERO ============ */
  .hero { position: relative; min-height: 100vh; padding: 140px 0 100px; overflow: hidden; }
  .hero-burst {
    position: absolute; left: 50%; top: 56%; transform: translate(-50%,-50%);
    width: min(1400px, 130vw); aspect-ratio: 1; pointer-events: none;
    -webkit-mask-image: radial-gradient(circle, #000 35%, transparent 78%);
    mask-image: radial-gradient(circle, #000 35%, transparent 78%);
  }
  .hero-burst svg { width:100%; height:100%; display:block; }
  .hero-burst-glow {
    position: absolute; left: 50%; top: 56%; transform: translate(-50%,-50%);
    width: 1100px; height: 1100px; pointer-events: none;
    background: radial-gradient(circle at center,
      rgba(255,0,128,0.28) 0%,
      rgba(147,51,234,0.20) 18%,
      rgba(83,75,177,0.10) 38%,
      rgba(59,7,100,0.05) 58%,
      transparent 72%);
    filter: blur(20px);
  }
  .hero-noise {
    position: absolute; inset: 0; pointer-events: none; opacity: .35; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.7' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1   0 0 0 0 1   0 0 0 0 1   0 0 0 .07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }

  .hero-content { position: relative; z-index: 2; text-align: center; }
  .hero-counter-wrap { display: inline-flex; flex-direction: column; align-items: center; gap: 18px; }
  .hero-counter {
    font-family: var(--font-mono); font-weight: 500;
    font-size: clamp(56px, 9vw, 128px);
    letter-spacing: -0.04em; line-height: 1;
    color: white;
    text-shadow: 0 0 60px rgba(255,0,128,0.35), 0 0 140px rgba(147,51,234,0.35);
    font-variant-numeric: tabular-nums;
  }
  .hero-counter .dollar { color: rgba(255,255,255,0.82); margin-right: 4px; }
  .hero-counter-label {
    font-family: var(--font-mono); font-size: 11px; font-weight: 500;
    letter-spacing: 0.22em; color: var(--text-muted); text-transform: uppercase;
    display: flex; align-items: center; justify-content: center; gap: 10px;
  }
  .live-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--live);
    box-shadow: 0 0 0 0 rgba(16,185,129,.6);
    animation: livePulse 2.2s ease-out infinite;
  }
  @keyframes livePulse {
    0%   { box-shadow: 0 0 0 0 rgba(16,185,129,0.55); }
    70%  { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
  }

  .hero-headline {
    margin: 64px auto 0;
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(40px, 6vw, 78px);
    line-height: 1.02; letter-spacing: -0.035em;
    max-width: 980px; text-wrap: balance;
  }
  .hero-headline .accent {
    background: linear-gradient(120deg, #fff 0%, #AB9FF2 60%, #FF0080 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .hero-sub {
    margin: 28px auto 0; max-width: 620px;
    font-size: 18px; line-height: 1.55; color: var(--text-muted); font-weight: 300;
    text-wrap: pretty;
  }
  .hero-ctas { margin-top: 52px; display: inline-flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 22px; border-radius: 999px;
    font-size: 14px;
    font-size: 14px; font-weight: 500; letter-spacing: -0.005em;
    border: 0; transition: transform .15s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  }
  .btn-lg {
    padding: 20px 36px;
    font-size: 18px;
    gap: 10px;
  }
  .btn-lg .btn-arrow { font-size: 20px; }
  .btn-primary {
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    color: white;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 12px 40px -10px rgba(83,75,177,.6), 0 0 0 0 rgba(171,159,242,0);
  }
  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.16) inset,
      0 24px 60px -12px rgba(171,159,242,.7),
      0 0 40px -4px rgba(147, 51, 234, 0.55),
      0 0 0 6px rgba(171,159,242,.08);
  }
  .btn-ghost {
    background: transparent; color: white;
    box-shadow: inset 0 0 0 1px var(--hairline-strong);
  }
  .btn-ghost:hover { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28); background: rgba(255,255,255,0.03); }
  .btn-arrow { transition: transform .2s ease; }
  .btn:hover .btn-arrow { transform: translateX(3px); }

  /* ============ SECTION SCAFFOLD ============ */
  section { position: relative; }
  .section { padding: 160px 0; }
  .eyebrow {
    font-family: var(--font-mono); font-size: 11px; font-weight: 500;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted);
    display: inline-flex; align-items: center; gap: 10px;
  }
  .eyebrow::before {
    content:''; width: 18px; height: 1px; background: var(--brand-1); display: inline-block;
  }
  .section-title {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(36px, 4.6vw, 60px);
    line-height: 1.05; letter-spacing: -0.03em;
    margin: 24px 0 0; text-wrap: balance;
  }
  .section-sub {
    margin-top: 22px; font-size: 18px; line-height: 1.55; color: var(--text-muted); font-weight: 300;
    max-width: 560px;
  }

  /* fade-up scroll reveal */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ============ PROBLEM ============ */
  .problem-image {
    margin: 56px 0 8px; position: relative;
    border-radius: 18px; overflow: hidden;
    border: 1px solid var(--hairline);
    aspect-ratio: 16 / 9;
    background: #0a0a0d;
  }
  .problem-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .problem-image-fade {
    position: absolute; left: 0; right: 0; bottom: 0; height: 45%;
    background: linear-gradient(180deg, rgba(11,11,15,0) 0%, rgba(11,11,15,0.6) 70%, var(--bg) 100%);
    pointer-events: none;
  }
  .problem { text-align: center; }
  .problem .section-title { margin-left:auto; margin-right:auto; max-width: 880px; }
  .problem-stats { margin-top: 96px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .stat { padding: 12px 8px; border-top: 1px solid var(--hairline); padding-top: 28px; }
  .stat-num {
    font-family: var(--font-display); font-weight: 500;
    font-size: clamp(48px, 6vw, 84px);
    letter-spacing: -0.04em; line-height: 1;
    background: linear-gradient(180deg, #fff 0%, #AB9FF2 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .stat-label {
    margin-top: 18px; color: var(--text-muted); font-size: 14px; line-height: 1.5; font-weight: 300;
    max-width: 240px; margin-left: auto; margin-right: auto;
  }
  .problem-tail {
    margin-top: 80px; font-size: 18px; color: var(--text-muted); max-width: 640px; margin-left: auto; margin-right: auto;
    font-weight: 300; line-height: 1.5;
  }
  .problem-tail strong { color: white; font-weight: 500; }

  /* ============ STEPS ============ */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; margin-top: 96px; }
  .step { padding-top: 18px; border-top: 1px solid var(--hairline); transition: border-color .5s ease, opacity .5s ease; opacity: .45; }
  .step.active { border-top-color: var(--brand-1); opacity: 1; }
  .step.active .step-num { color: var(--brand-1); text-shadow: 0 0 14px rgba(171,159,242,0.5); }
  .step-num {
    font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); font-weight: 500;
    letter-spacing: 0.18em; transition: color .4s ease;
  }
  .step.active .step-num { color: var(--brand-1); }
  .step-icon {
    width: 56px; height: 56px; margin: 24px 0 28px; position: relative;
    transition: transform .4s ease;
  }
  .step.active .step-icon { transform: scale(1.05); }
  .step-title { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.02em; }
  .step-copy { margin-top: 12px; color: var(--text-muted); font-size: 15px; line-height: 1.55; font-weight: 300; }

  /* ============ STEPS (horizontal, larger type) ============ */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; margin-top: 96px; }
  .step { padding-top: 22px; border-top: 1px solid var(--hairline); transition: border-color .5s ease, opacity .5s ease; opacity: .55; }
  .step.active { border-top-color: var(--brand-1); opacity: 1; }
  .step-num {
    font-family: var(--font-mono); font-size: 18px; font-weight: 500;
    color: var(--text-muted); letter-spacing: 0.06em;
    transition: color .5s ease, text-shadow .5s ease;
  }
  .step.active .step-num { color: var(--brand-1); text-shadow: 0 0 14px rgba(171,159,242,0.5); }
  .step-icon {
    width: 56px; height: 56px; margin: 22px 0 26px; position: relative;
    transition: transform .4s ease;
  }
  .step.active .step-icon { transform: scale(1.05); }
  .step-title {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(28px, 2.6vw, 36px);
    letter-spacing: -.025em; line-height: 1.08;
  }
  .step-copy {
    margin-top: 14px; color: var(--text-muted);
    font-size: 18px; line-height: 1.6; font-weight: 300;
    max-width: 28rem;
  }
  .step-meta {
    margin-top: 22px; font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--text-dim);
  }

  /* ============ SOLUTION ============ */
  .solution-section { text-align: center; }
  .solution-grid {
    margin: 56px auto 0; max-width: 880px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    box-shadow: inset 0 0 60px rgba(171,159,242,0.06), 0 30px 80px -40px rgba(0,0,0,0.6);
    padding: 36px;
  }
  .solution-grid-inner { position: relative; }
  .solution-grid img {
    width: 100%; height: auto; display: block;
    opacity: 0.92;
    mix-blend-mode: screen;
    filter: saturate(0.95);
  }
  .solution-callout {
    margin-top: 36px;
    font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--text-muted);
  }
  @media (max-width: 880px) {
    .solution-grid { padding: 18px; border-radius: 18px; }
  }

  /* ============ HOW-IT-WORKS DEMO (single phone below) ============ */
  .demo-stage {
    margin-top: 80px; position: relative;
    height: 620px;
    display: flex; align-items: center; justify-content: center;
  }
    position: relative; z-index: 3;
    width: 264px; height: 572px;
    background: linear-gradient(180deg, #1d1d28 0%, #131319 100%);
    border-radius: 44px;
    border: 1px solid var(--hairline-strong);
    box-shadow:
      0 0 0 8px #0d0d12,
      0 0 0 9px rgba(255,255,255,0.04),
      0 60px 120px -40px rgba(0,0,0,0.8),
      0 30px 80px -30px rgba(83,75,177,0.4);
    overflow: hidden;
  }
  /* Crossfade with scale + blur */
  .demo-screen-wrap {
    position: absolute; inset: 0;
    opacity: 0; transform: scale(1.05); filter: blur(4px);
    transition: opacity 400ms ease, transform 400ms cubic-bezier(0.4,0,0.2,1), filter 400ms ease;
    pointer-events: none;
  }
  .demo-screen-wrap.on { opacity: 1; transform: scale(1); filter: blur(0); pointer-events: auto; }
  @media (prefers-reduced-motion: reduce) {
    .demo-screen-wrap { transition: none; transform: none; filter: none; }
  }

  /* Earn screen extras */
  .demo-balance-sym {
    margin-left: 8px; align-self: center;
    font-family: var(--font-mono); font-size: 11px; color: var(--text-muted);
    letter-spacing: 0.16em; text-transform: uppercase;
  }
  .demo-delta {
    font-family: var(--font-mono); font-size: 12px;
    color: #10B981; margin-top: -2px;
  }

  /* Keep screen extras */
  .demo-card-keep { aspect-ratio: 1.58/1; }
  .demo-card-target-corner {
    position: absolute; right: -40px; top: -40px;
    width: 140px; height: 140px;
    background: radial-gradient(circle, rgba(204,0,0,0.55) 0%, rgba(204,0,0,0) 60%);
    pointer-events: none;
  }
  .demo-card-brand {
    width: 32px; height: 32px; border-radius: 8px;
    background: #fff; padding: 4px;
    display: flex; align-items: center; justify-content: center;
  }
  .demo-card-brand img { width: 100%; height: 100%; object-fit: contain; }
  .demo-keep-badge {
    margin-top: 14px;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 12px; border-radius: 999px;
    background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.25);
    color: #10B981;
    font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
    align-self: flex-start;
  }
  .demo-keep-badge .demo-check { background: #10B981; }
  .demo-keep-meta {
    margin-top: auto;
    font-size: 10px; letter-spacing: 0.18em; color: var(--text-dim);
    text-transform: uppercase;
  }

  @media (max-width: 980px) {
    .steps { grid-template-columns: 1fr; gap: 36px; }
  }
  .demo-device-notch {
    position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
    width: 90px; height: 24px; background: #0a0a0f;
    border-radius: 14px; z-index: 5;
  }
  .demo-device-inner {
    position: absolute; inset: 8px; border-radius: 36px;
    background: var(--bg);
    overflow: hidden;
    display: flex; flex-direction: column;
  }
  .demo-statusbar {
    height: 50px; display: flex; align-items: flex-end; justify-content: space-between;
    padding: 0 26px 6px; font-size: 11px; color: white;
  }
  .demo-statusbar-right { display: flex; align-items: center; gap: 5px; }
  .demo-bars, .demo-wifi, .demo-batt {
    display: inline-block; background: white; opacity: .9;
  }
  .demo-bars { width: 14px; height: 8px; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8'><rect x='0' y='5' width='2' height='3' fill='black'/><rect x='4' y='3' width='2' height='5' fill='black'/><rect x='8' y='1' width='2' height='7' fill='black'/><rect x='12' y='0' width='2' height='8' fill='black'/></svg>") center/contain no-repeat; }
  .demo-wifi { width: 12px; height: 8px; border-radius: 2px; }
  .demo-batt { width: 18px; height: 8px; border-radius: 2px; position: relative; }
  .demo-batt::after { content: ''; position: absolute; right: -2px; top: 2px; width: 2px; height: 4px; background: white; border-radius: 0 1px 1px 0; }

  .demo-app-head {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 22px 14px; border-bottom: 1px solid var(--hairline);
  }
  .demo-app-mark { width: 22px; height: 22px; border-radius: 6px; background: linear-gradient(135deg, var(--brand-1), var(--brand-2)); display: flex; align-items: center; justify-content: center; color: white; font-family: var(--font-display); font-weight: 600; font-size: 12px; }

  .demo-screen-stack { position: relative; flex: 1; }
  .demo-screen-wrap {
    position: absolute; inset: 0;
    opacity: 0; transform: scale(1.03); filter: blur(8px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1), filter .7s ease;
    pointer-events: none;
  }
  .demo-screen-wrap.on { opacity: 1; transform: scale(1); filter: blur(0); }

  .demo-screen { padding: 24px 22px; height: 100%; display: flex; flex-direction: column; gap: 14px; }
  .demo-screen-eyebrow {
    font-family: var(--font-mono); font-size: 10px; color: var(--text-muted);
    letter-spacing: .22em; text-transform: uppercase;
  }
  .demo-field { display: flex; flex-direction: column; gap: 6px; }
  .demo-field-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: .2em; color: var(--text-muted); text-transform: uppercase; }
  .demo-field-input {
    background: var(--surface-2); border: 1px solid var(--hairline);
    border-radius: 10px; padding: 12px 14px;
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; color: white; min-height: 44px;
  }
  .demo-field-input.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
  .demo-brand-mark { width: 22px; height: 22px; border-radius: 5px; }
  .typed-caret { color: var(--brand-1); animation: caretBlink 1s steps(2) infinite; }
  @keyframes caretBlink { 50% { opacity: 0; } }

  .demo-cta {
    margin-top: 4px;
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    color: white; border: 0; padding: 13px 16px; border-radius: 10px;
    font-size: 13px; font-weight: 500; letter-spacing: -0.005em;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 12px 28px -8px rgba(83,75,177,.5);
    cursor: pointer;
  }
  .demo-success {
    margin-top: 8px; padding: 12px 14px; border-radius: 10px;
    background: rgba(171,159,242,0.08); border: 1px solid rgba(171,159,242,0.18);
    display: flex; align-items: center; gap: 12px;
    opacity: 0; transform: translateY(6px); transition: opacity .5s ease, transform .5s ease;
  }
  .demo-success.in { opacity: 1; transform: translateY(0); }
  .demo-check {
    width: 22px; height: 22px; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
    color: white; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .demo-success-key { font-family: var(--font-mono); font-size: 9px; letter-spacing: .2em; color: var(--text-muted); text-transform: uppercase; }
  .demo-success-val { font-family: var(--font-mono); font-size: 13px; color: white; margin-top: 3px; }

  /* Earn screen */
  .demo-balance-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em; color: var(--text-muted); text-transform: uppercase; margin-top: 4px; }
  .demo-balance { font-family: var(--font-mono); display: flex; align-items: baseline; }
  .demo-balance-num { font-size: 38px; letter-spacing: -.03em; color: white; font-variant-numeric: tabular-nums; line-height: 1; }
  .demo-balance-unit { font-size: 18px; color: var(--text-muted); margin-left: 2px; font-variant-numeric: tabular-nums; }
  .demo-status-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 10px; border-radius: 999px;
    background: rgba(255,255,255,0.06); color: var(--text-muted);
    font-family: var(--font-mono); font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
    width: fit-content;
    transition: background .5s ease, color .5s ease;
  }
  .demo-status-pill.verified { background: rgba(16,185,129,0.12); color: #10B981; }
  .demo-status-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
  .demo-unlock { margin-top: 4px; padding: 14px; background: var(--surface-2); border: 1px solid var(--hairline); border-radius: 10px; }
  .demo-unlock-row { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-muted); }
  .demo-unlock-row .mono { color: white; }
  .demo-unlock-bar { margin-top: 10px; height: 3px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; }
  .demo-unlock-bar > div { height: 100%; background: linear-gradient(90deg, var(--brand-1), var(--brand-2)); border-radius: 999px; transition: width .15s linear; }

  /* Keep screen — gift card */
  .demo-card {
    margin-top: 6px;
    aspect-ratio: 1.6/1; border-radius: 14px;
    background: linear-gradient(135deg, #1f1d2e 0%, #2a2440 50%, #3b0764 100%);
    border: 1px solid rgba(171,159,242,0.25);
    padding: 18px; position: relative; overflow: hidden;
    display: flex; flex-direction: column; justify-content: space-between;
    box-shadow: 0 20px 40px -20px rgba(83,75,177,0.5);
  }
  .demo-card-shine {
    position: absolute; inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
    animation: cardShine 4s ease-in-out infinite;
  }
  @keyframes cardShine { 0%, 100% { transform: translateX(-30%); } 50% { transform: translateX(30%); } }
  .demo-card-stripe {
    position: absolute; left: -10px; top: 28px; width: calc(100% + 20px); height: 36px;
    background: linear-gradient(90deg, transparent, rgba(255,0,128,0.5), rgba(147,51,234,0.5), transparent);
    transform: skewY(-8deg); opacity: .5;
  }
  .demo-card-num { font-size: 12px; color: rgba(255,255,255,0.85); letter-spacing: .12em; position: relative; z-index: 1; }
  .demo-card-foot { display: flex; justify-content: space-between; align-items: flex-end; position: relative; z-index: 1; }
  .demo-card-key { font-family: var(--font-mono); font-size: 8px; letter-spacing: .22em; color: rgba(255,255,255,0.6); text-transform: uppercase; }
  .demo-card-val { font-size: 22px; color: white; margin-top: 4px; letter-spacing: -.02em; }
  .demo-card-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(16,185,129,0.18); color: #10B981;
    padding: 5px 9px; border-radius: 999px;
    font-family: var(--font-mono); font-size: 9px; letter-spacing: .15em;
    border: 1px solid rgba(16,185,129,0.25);
  }
  .demo-keep-tail { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 4px; }

  /* Floating receipts */
  .demo-receipt {
    position: absolute; z-index: 2;
    padding: 14px 16px;
    background: rgba(19,19,26,0.85);
    border: 1px solid var(--hairline);
    border-radius: 10px;
    font-family: var(--font-mono); font-size: 10px;
    backdrop-filter: blur(6px);
    width: 200px;
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.6);
  }
  .demo-receipt-row {
    display: flex; justify-content: space-between; gap: 16px;
    padding: 4px 0; border-bottom: 1px dashed rgba(255,255,255,0.06);
    color: var(--text-muted);
  }
  .demo-receipt-row:last-child { border-bottom: 0; }
  .demo-receipt-row span:last-child { color: white; }
  .demo-receipt-1 {
    left: calc(50% - 360px); top: 40px;
    transform: rotate(-7deg);
    animation: receiptFloat1 9s ease-in-out infinite;
  }
  .demo-receipt-2 {
    right: calc(50% - 380px); top: 130px;
    transform: rotate(5deg);
    animation: receiptFloat2 11s ease-in-out infinite;
  }
  .demo-receipt-3 {
    left: calc(50% - 320px); bottom: 40px;
    transform: rotate(4deg);
    animation: receiptFloat3 10s ease-in-out infinite;
  }
  @keyframes receiptFloat1 {
    0%, 100% { transform: rotate(-7deg) translateY(0); }
    50% { transform: rotate(-6deg) translateY(-12px); }
  }
  @keyframes receiptFloat2 {
    0%, 100% { transform: rotate(5deg) translateY(0); }
    50% { transform: rotate(6deg) translateY(-10px); }
  }
  @keyframes receiptFloat3 {
    0%, 100% { transform: rotate(4deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-14px); }
  }

  @media (max-width: 880px) {
    .demo-stage { height: 560px; margin-top: 56px; }
  }

  /* ============ FACTION WARS ============ */
  .faction-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
  .faction-board {
    margin-top: 64px;
    background: linear-gradient(180deg, rgba(25,25,34,0.6) 0%, rgba(19,19,26,0.4) 100%);
    border: 1px solid var(--hairline); border-radius: 18px;
    padding: 8px;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
  }
  /* Sweeping scanner line that moves down through the faction board */
  .faction-board::after {
    content: '';
    position: absolute; left: 0; right: 0; top: 0; height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(171,159,242,0.0) 15%, rgba(171,159,242,0.85) 50%, rgba(171,159,242,0.0) 85%, transparent 100%);
    box-shadow: 0 0 18px rgba(171,159,242,0.55), 0 0 4px rgba(255,0,128,0.6);
    animation: factionScan 5.5s cubic-bezier(.55,.02,.45,.98) infinite;
    pointer-events: none;
    z-index: 2;
  }
  @keyframes factionScan {
    0%   { transform: translateY(0);    opacity: 0; }
    8%   { opacity: 1; }
    92%  { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
  }
  .faction-row {
    display: grid; grid-template-columns: 32px 1fr auto;
    align-items: center; gap: 20px;
    padding: 22px 24px; border-radius: 12px;
    transition: background .3s ease;
    position: relative;
  }
  .faction-row + .faction-row { border-top: 1px solid var(--hairline); }
  .faction-row:hover { background: rgba(255,255,255,0.025); }
  .faction-rank { font-family: var(--font-mono); font-size: 12px; color: var(--text-dim); }
  .faction-mid { display: flex; align-items: center; gap: 16px; min-width: 0; }
  .faction-logo {
    width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    overflow: hidden;
  }
  .faction-logo.brand { background: transparent; }
  .faction-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .faction-name { font-family: var(--font-display); font-weight: 500; font-size: 16px; letter-spacing: -0.01em; }
  .faction-bar-wrap { flex: 1; height: 4px; background: rgba(255,255,255,0.05); border-radius: 999px; overflow: hidden; max-width: 420px; }
  .faction-bar {
    height: 100%; border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
    width: 0%;
    transition: width 1.6s cubic-bezier(.2,.7,.2,1);
    position: relative;
  }
  .faction-bar::after{
    content:''; position:absolute; right:0; top:0; bottom:0; width:30px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45));
    opacity: .6;
  }
  .faction-value { font-family: var(--font-mono); font-size: 14px; color: white; font-variant-numeric: tabular-nums; min-width: 110px; text-align: right; }
  .faction-tail { margin-top: 36px; color: var(--text-muted); font-size: 15px; }
  .faction-tail strong { color: var(--text); font-weight: 500; }

  /* ============ TOKEN ============ */
  .token { display: grid; grid-template-columns: 1.05fr 1fr; gap: 88px; align-items: center; }
  .token-copy .section-title { max-width: 480px; }
  .token-meta {
    margin-top: 32px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: var(--hairline); border: 1px solid var(--hairline); border-radius: 12px; overflow: hidden;
  }
  .token-meta-cell { background: var(--bg); padding: 18px 20px; }
  .token-meta-key { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; color: var(--text-muted); text-transform: uppercase; }
  .token-meta-val { font-family: var(--font-mono); font-size: 16px; margin-top: 6px; color: white; font-variant-numeric: tabular-nums; }
  .token-link { margin-top: 36px; display: inline-flex; align-items: center; gap: 8px; color: var(--brand-1); font-size: 14px; font-weight: 500; }
  .token-link:hover { color: white; }

  .donut-wrap { position: relative; width: 100%; aspect-ratio: 1; max-width: 460px; margin: 0 auto; }
  .donut-wrap svg { width: 100%; height: 100%; }
  .donut-center {
    position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; pointer-events: none;
  }
  .donut-center-num { font-family: var(--font-mono); font-size: 28px; letter-spacing: -.03em; line-height: 1; }
  .donut-center-label { margin-top: 6px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em; color: var(--text-muted); text-transform: uppercase; }
  .donut-legend { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
  .legend-row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
  .legend-dot { width: 8px; height: 8px; border-radius: 2px; }
  .legend-name { color: var(--text-muted); flex: 1; }
  .legend-pct { font-family: var(--font-mono); color: white; font-variant-numeric: tabular-nums; }
  .legend-row { transition: opacity .25s ease, transform .25s ease; cursor: pointer; }
  .legend-row.on { transform: translateX(2px); }
  .legend-row.dim { opacity: 0.4; }
  .legend-dot { transition: box-shadow .3s ease, transform .25s ease; }
  .legend-row.on .legend-dot { transform: scale(1.25); }
  .donut-center-num { transition: color .25s ease; }
  .donut-center-label { transition: color .25s ease; }

  /* ============ LOOPCHAIN ============ */
  .loopchain-section { position: relative; overflow: hidden; }
  .loopchain-bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    overflow: hidden;
  }
  .loopchain-bg img {
    position: absolute;
    right: -8%; top: 50%;
    width: 70%; height: auto;
    max-width: 1100px;
    transform: translateY(-50%);
    opacity: 0.45;
    mix-blend-mode: screen;
    filter: saturate(1.1);
    animation: loopchainDrift 60s ease-in-out infinite alternate;
  }
  .loopchain-bg-overlay {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 55% 60% at 35% 50%, rgba(10,10,15,0.85) 0%, rgba(10,10,15,0.5) 45%, rgba(10,10,15,0) 80%),
      linear-gradient(180deg, #0A0A0F 0%, rgba(10,10,15,0) 12%, rgba(10,10,15,0) 88%, #0A0A0F 100%);
  }
  @keyframes loopchainDrift {
    0%   { transform: translate(0, -50%) scale(1.0); }
    100% { transform: translate(-2%, -48%) scale(1.04); }
  }
  @media (prefers-reduced-motion: reduce) {
    .loopchain-bg img { animation: none; }
  }
  @media (max-width: 880px) {
    .loopchain-bg img { opacity: 0.18; right: -25%; width: 100%; }
  }
  .loopchain { text-align: center; position: relative; z-index: 1; }
  .loopchain-card {
    margin-top: 64px; padding: 64px 48px;
    background: radial-gradient(ellipse at top, rgba(83,75,177,0.18), transparent 70%), var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 22px;
    position: relative; overflow: hidden;
  }
  .loopchain-card::before{
    content:''; position:absolute; inset: -1px; border-radius: 22px; padding: 1px; pointer-events:none;
    background: linear-gradient(180deg, rgba(171,159,242,.4), transparent 60%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
  }
  .loopchain-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 56px; background: var(--hairline); border-radius: 12px; overflow:hidden; border: 1px solid var(--hairline); }
  .loopchain-stat { background: var(--surface-2); padding: 28px 24px; }
  .loopchain-stat-num { font-family: var(--font-display); font-weight: 500; font-size: 36px; letter-spacing: -.03em; line-height:1; }
  .loopchain-stat-label { margin-top: 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; color: var(--text-muted); text-transform: uppercase; }
  .loopchain-link { margin-top: 36px; display: inline-flex; align-items: center; gap:8px; color: var(--brand-1); font-size: 14px; font-weight: 500; }

  /* ============ VERIFICATION ============ */
  .verify-principles {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
    margin-top: 36px;
  }
  .verify-principle {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--hairline);
    border-radius: 12px;
  }
  .vp-icon {
    width: 32px; height: 32px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--hairline);
  }
  .verify-principle.tone-brand .vp-icon { color: var(--brand-1); }
  .verify-principle.tone-green .vp-icon { color: var(--live); border-color: rgba(16,185,129,0.25); background: rgba(16,185,129,0.06); }
  .vp-text {
    display: flex; flex-direction: column; line-height: 1.35;
    font-size: 14px; color: var(--text);
    font-weight: 400;
  }
  .vp-text span:nth-child(2) { color: var(--text-muted); }
  @media (max-width: 880px) {
    .verify-principles { grid-template-columns: 1fr 1fr; }
  }
  .tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 64px; }
  .tier {
    padding: 32px 28px; border-radius: 16px;
    border: 1px solid var(--hairline);
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    position: relative; overflow: hidden;
    transition: border-color .3s ease, transform .3s ease;
  }
  .tier:hover { border-color: var(--hairline-strong); transform: translateY(-2px); }
  .tier-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em; color: var(--text-muted); text-transform: uppercase; }
  .tier-name { font-family: var(--font-display); font-weight: 600; font-size: 24px; letter-spacing: -.02em; margin-top: 14px; }
  .tier-copy { color: var(--text-muted); font-size: 16px; margin-top: 14px; line-height: 1.6; font-weight: 300; }
  .tier-mark { position: absolute; right: 24px; top: 24px; width: 28px; height: 28px; border-radius: 50%; display:flex; align-items:center; justify-content:center; font-family: var(--font-mono); font-size: 11px; }
  .tier-mark.t0 { background: rgba(255,255,255,0.06); color: var(--text-muted); }
  .tier-mark.t1 { background: rgba(171,159,242,.18); color: var(--brand-1); }
  .tier-mark.t2 { background: linear-gradient(135deg, var(--brand-1), var(--brand-2)); color: white; }
  .tier-meter { margin-top: 28px; height: 3px; background: rgba(255,255,255,.05); border-radius: 999px; overflow: hidden; }
  .tier-meter > div { height: 100%; background: linear-gradient(90deg, var(--brand-1), var(--brand-2)); border-radius: 999px; }

  .brand-tier-note {
    margin-top: 36px; padding: 22px 24px; border-radius: 12px;
    border: 1px solid var(--hairline); background: rgba(19,19,26,0.5);
    display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap;
  }
  .brand-tier-note-key { font-family: var(--font-mono); font-size: 11px; color: var(--brand-1); letter-spacing: .18em; text-transform: uppercase; }
  .brand-tier-note-copy { color: var(--text-muted); font-size: 14px; line-height: 1.55; flex: 1; min-width: 280px; }

  /* ============ STAKE ============ */
  .stake { display: grid; grid-template-columns: 1fr 1.1fr; gap: 88px; align-items: center; }
  .pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 11px; border-radius: 999px;
    background: rgba(171,159,242,.12); color: var(--brand-1);
    font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
    border: 1px solid rgba(171,159,242,.18);
  }
  .stake .section-title { margin-top: 18px; }

  .queue-viz {
    position: relative; aspect-ratio: 1.2/1; padding: 28px;
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    border: 1px solid var(--hairline); border-radius: 18px;
    overflow: hidden;
  }

  /* ============ ROADMAP ============ */
  .phases { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 64px; }
  .phase {
    padding: 32px; border-radius: 16px;
    border: 1px solid var(--hairline); background: var(--surface);
    position: relative;
  }
  .phase.live { border-color: rgba(16,185,129,.35); }
  .phase-head { display: flex; align-items: center; justify-content: space-between; }
  .phase-num { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); letter-spacing: .2em; text-transform: uppercase; }
  .phase-status {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 999px;
  }
  .phase-status.live { background: rgba(16,185,129,.12); color: var(--live); border: 1px solid rgba(16,185,129,.25); }
  .phase-status.next { background: rgba(171,159,242,.12); color: var(--brand-1); border: 1px solid rgba(171,159,242,.2); }
  .phase-status.future { background: rgba(255,255,255,.04); color: var(--text-muted); border: 1px solid var(--hairline); }
  .phase-title { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin-top: 18px; letter-spacing: -.02em; }
  .phase-list { margin: 18px 0 0; padding: 0; list-style: none; }
  .phase-list li { color: var(--text-muted); font-size: 16px; padding: 12px 0; border-top: 1px solid var(--hairline); display: flex; gap: 10px; align-items: flex-start; line-height: 1.55; }
  .phase-list li:first-child { border-top: 0; }
  .phase-list li::before {
    content: ''; flex-shrink: 0; margin-top: 8px;
    width: 4px; height: 4px; border-radius: 50%; background: var(--brand-1);
  }

  /* ============ FAQ ============ */
  .faq-list { margin-top: 56px; border-top: 1px solid var(--hairline); }
  .faq-item { border-bottom: 1px solid var(--hairline); }
  .faq-q {
    width: 100%; background: none; border: 0; color: white; text-align: left;
    padding: 28px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px;
    font-family: var(--font-display); font-weight: 500; font-size: 19px; letter-spacing: -0.015em;
  }
  .faq-q:hover { color: var(--brand-1); }
  .faq-icon { width: 14px; height: 14px; position: relative; flex-shrink: 0; transition: transform .3s ease; }
  .faq-icon::before, .faq-icon::after {
    content: ''; position: absolute; left: 50%; top: 50%; background: var(--text-muted); transition: transform .3s ease, background .2s ease;
  }
  .faq-icon::before { width: 14px; height: 1px; transform: translate(-50%,-50%); }
  .faq-icon::after { width: 1px; height: 14px; transform: translate(-50%,-50%); }
  .faq-item.open .faq-icon::after { transform: translate(-50%,-50%) scaleY(0); }
  .faq-item.open .faq-icon::before { background: var(--brand-1); }
  .faq-a {
    overflow: hidden; max-height: 0; transition: max-height .35s ease;
    color: var(--text-muted); font-size: 17px; line-height: 1.65; font-weight: 300;
  }
  .faq-a-inner { padding: 0 0 28px; max-width: 720px; }

  /* ============ GENESIS CTA ============ */
  .genesis {
    text-align: center;
    padding: 140px 0 200px;
    overflow: hidden;
    position: relative;
  }
  .genesis-glow {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    width: 1100px; height: 700px; pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(255,0,128,0.16), rgba(147,51,234,0.10) 30%, transparent 65%);
    filter: blur(20px); z-index: 0;
  }
  .genesis-bg {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    overflow: hidden;
  }
  .genesis-bg img {
    position: absolute;
    width: 130%; height: 130%;
    left: -15%; top: -15%;
    object-fit: cover;
    opacity: 0.38;
    mix-blend-mode: screen;
    filter: saturate(1.15) contrast(1.05);
    transform-origin: 60% 50%;
    animation: genesisDrift 32s ease-in-out infinite alternate;
  }
  .genesis-vignette {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 55% at 50% 50%, rgba(10,10,15,0) 0%, rgba(10,10,15,0.4) 55%, #0A0A0F 100%),
      linear-gradient(180deg, #0A0A0F 0%, rgba(10,10,15,0) 14%, rgba(10,10,15,0) 86%, #0A0A0F 100%);
  }
  @keyframes genesisDrift {
    0%   { transform: translate(0, 0) scale(1.0); }
    100% { transform: translate(-3%, 2%) scale(1.06); }
  }
  @media (prefers-reduced-motion: reduce) {
    .genesis-bg img { animation: none; }
  }
  .genesis-inner { position: relative; z-index: 1; }
  .genesis-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(40px, 5.5vw, 76px); letter-spacing: -.035em; line-height: 1.05; }
  .genesis-sub { margin-top: 22px; color: var(--text-muted); font-size: 18px; max-width: 540px; margin-left: auto; margin-right: auto; font-weight: 300; }
  .email-form {
    margin-top: 44px; display: inline-flex; gap: 8px;
    background: var(--surface); border: 1px solid var(--hairline); border-radius: 999px;
    padding: 6px;
    transition: border-color .25s ease, box-shadow .25s ease;
  }
  .email-form:focus-within { border-color: rgba(171,159,242,.55); box-shadow: 0 0 0 4px rgba(171,159,242,.08); }
  .email-form input {
    background: transparent; border: 0; color: white; font: inherit;
    padding: 8px 16px; min-width: 280px; outline: 0; font-size: 14px;
  }
  .email-form input::placeholder { color: var(--text-muted); }
  .email-form button { padding: 11px 20px; }
  .email-form.email-form-lg { padding: 8px; }
  .email-form.email-form-lg input { padding: 14px 22px; font-size: 16px; min-width: 320px; }
  .email-form.email-form-lg button { padding: 18px 32px; font-size: 17px; }
  .genesis-wordmark-wrap { margin-bottom: 32px; display: flex; justify-content: center; }
  .genesis-fine { margin-top: 18px; font-size: 12px; color: var(--text-dim); }

  /* ============ FOOTER ============ */
  footer { border-top: 1px solid var(--hairline); padding: 80px 0 40px; }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
  .footer-col-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; color: var(--text-muted); text-transform: uppercase; margin: 0 0 22px; }
  .footer-link { display: block; padding: 8px 0; color: var(--text-muted); font-size: 14px; transition: color .2s ease; }
  .footer-link:hover { color: white; }
  .footer-tagline { color: var(--text-muted); font-size: 20px; line-height: 1.5; max-width: 560px; margin: 28px 0 32px; font-weight: 300; }
  .social-row { display: flex; gap: 10px; }
  .social-btn {
    width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--hairline);
    display: flex; align-items: center; justify-content: center; color: var(--text-muted);
    transition: color .2s ease, border-color .2s ease;
  }
  .social-btn:hover { color: white; border-color: var(--hairline-strong); }

  /* Secondary CTA — soft purple tint, hairline border */
  .btn-secondary {
    background: rgba(171, 159, 242, 0.08);
    color: white;
    box-shadow: inset 0 0 0 1px rgba(171, 159, 242, 0.35);
  }
  .btn-secondary:hover {
    background: rgba(171, 159, 242, 0.14);
    box-shadow: inset 0 0 0 1px rgba(171, 159, 242, 0.55), 0 12px 36px -10px rgba(171,159,242,.35);
    transform: translateY(-1px);
  }

  /* Footer wallet CTA strip */
  .footer-wallet {
    margin-top: 56px; padding: 32px 0; border-top: 1px solid var(--hairline);
    display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  }
  .footer-wallet-copy {
    font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
    color: var(--text-muted); text-transform: uppercase;
  }

  .footer-bottom {
    margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--hairline);
    color: var(--text-dim); font-size: 12px; line-height: 1.65;
    display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 880px) {
    .nav-links { display: none; }
    .nav-links.cta-only { display: flex; }
    .section { padding: 100px 0; }
    .problem-stats, .steps, .tiers, .phases, .loopchain-stats { grid-template-columns: 1fr; gap: 32px; }
    .token, .stake { grid-template-columns: 1fr; gap: 56px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .email-form input { min-width: 0; flex: 1; }
    .email-form { width: 100%; }
    .faction-row { grid-template-columns: 24px 1fr auto; padding: 18px 16px; gap: 14px; }
    .faction-bar-wrap { display: none; }
  }
