/* ─────────────────────────────────────────────────────────
   MINDSTRYDE WAITLIST v2 — style.css
   Brand: Dark premium, gold accent, direct, no hype
   Palette: #0A0A0B bg | #C9A84C gold | #E8E6E0 text | #888884 muted
   Fonts: Satoshi (body) + Instrument Serif (display)
───────────────────────────────────────────────────────── */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --gold:          #C9A84C;
  --gold-hover:    #E0BC65;
  --gold-dim:      rgba(201,168,76,0.12);
  --gold-border:   rgba(201,168,76,0.28);
  --gold-glow:     rgba(201,168,76,0.08);

  --bg:            #0A0A0B;
  --surface:       #111113;
  --surface-2:     #18181B;
  --surface-3:     #1E1E22;
  --border:        rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.11);

  --text:          #E8E6E0;
  --text-muted:    #888884;
  --text-faint:    #3E3E3C;

  --font-display:  'Instrument Serif', Georgia, serif;
  --font-body:     'Satoshi', 'Inter', system-ui, sans-serif;

  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --t:             180ms var(--ease);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --max-w:  1200px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
ul[role="list"] { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
h1,h2,h3 { text-wrap: balance; line-height: 1.12; }
p, li { text-wrap: pretty; }
::selection { background: var(--gold-dim); color: var(--gold); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: var(--r-sm); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .preloader { display: none !important; }
}

/* ── CONTAINER ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600;
  letter-spacing: 0.01em; border-radius: var(--r-md);
  transition: all var(--t); white-space: nowrap;
  border: 1px solid transparent; cursor: pointer;
}
.btn-sm  { padding: 0.5rem 1.125rem; font-size: 0.875rem; }
.btn-lg  { padding: 0.875rem 2rem;   font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-gold {
  background: var(--gold); color: #0A0A0B; border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-hover); border-color: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.28);
}
.btn-ghost {
  background: transparent; color: var(--text-muted); border-color: var(--border-strong);
}
.btn-ghost:hover { color: var(--text); border-color: var(--gold-border); background: var(--gold-dim); }
.btn-outline {
  background: transparent; color: var(--text); border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--gold-border); color: var(--gold); background: var(--gold-dim); }

/* ── LABELS ──────────────────────────────────────────────── */
.label-tag {
  display: inline-flex; align-items: center;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  padding: 5px 14px;
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  background: var(--gold-dim);
  margin-bottom: 1.25rem;
}

/* ── SECTION HEADERS ─────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.2rem + 2.5vw, 3.25rem);
  color: var(--text); margin-bottom: 1rem;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-sub {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.15rem);
  color: var(--text-muted); max-width: 54ch; margin-inline: auto; line-height: 1.7;
}
.body-text { font-size: 1rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; max-width: 60ch; }
.body-text.muted { color: var(--text-faint); }

/* ═══════════════════════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════════════════════ */
.preloader {
  position: fixed; inset: 0; z-index: 999;
  background: #0A0A0B;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.preloader.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  text-align: center;
}

/* Icon — animates in first */
.preloader-icon {
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  animation: preload-icon 0.7s var(--ease) 0.1s forwards;
}
.preloader-logo-icon {
  width: clamp(80px, 14vw, 140px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.35));
}

/* Wordmark — slides in just after */
.preloader-wordmark {
  opacity: 0;
  transform: translateY(10px);
  animation: preload-fade 0.6s var(--ease) 0.5s forwards;
}
.preloader-logo-full {
  width: clamp(220px, 40vw, 420px);
  height: auto;
}

/* Tagline */
.preloader-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  color: var(--gold);
  opacity: 0;
  animation: preload-fade 0.5s var(--ease) 0.9s forwards;
  letter-spacing: 0.04em;
}

/* Progress bar */
.preloader-bar {
  width: clamp(120px, 20vw, 200px);
  height: 2px;
  background: var(--border-strong);
  border-radius: 999px;
  overflow: hidden;
  opacity: 0;
  animation: preload-fade 0.4s var(--ease) 1s forwards;
}
.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 999px;
  animation: preload-bar 1.2s var(--ease) 1.1s forwards;
}

@keyframes preload-icon {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes preload-fade {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes preload-bar {
  to { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,11,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--t);
}
.nav.scrolled { border-bottom-color: var(--border-strong); }
.nav-inner {
  max-width: var(--max-w); margin-inline: auto;
  padding: 0 var(--gutter);
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }

/* BIG nav wordmark — the logo is the nav */
.nav-wordmark {
  height: 42px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: opacity var(--t);
}
.nav-wordmark:hover { opacity: 0.85; }

.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-badge {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); padding: 4px 12px;
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  background: var(--gold-dim);
}
@media (max-width: 480px) { .nav-badge { display: none; } }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex; align-items: flex-start;
  padding-top: 68px;
  overflow: hidden;
}

/* Background grid + glows */
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 100%);
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(120px); pointer-events: none;
}
.hero-glow-1 {
  width: 700px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
  top: -15%; left: -10%;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  bottom: 5%; right: 0%;
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3.5rem) var(--gutter) clamp(3rem, 6vw, 5rem);
}

/* Hero logo — BIG, at the top */
.hero-logo-block {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.hero-wordmark {
  width: clamp(260px, 44vw, 580px);
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 32px rgba(201,168,76,0.15));
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem; color: var(--text-muted);
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 1rem + 3.8vw, 4.75rem);
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  max-width: 18ch;
  line-height: 1.1;
}
.hero-headline em { color: var(--gold); font-style: italic; display: block; }

.hero-sub {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.75;
  max-width: 54ch;
}

.hero-cta-group {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-social-proof { display: flex; align-items: center; gap: 1rem; }
.proof-avatars { display: flex; }
.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: white;
  margin-left: -9px;
}
.avatar:first-child { margin-left: 0; }
.av1 { background: #8B6914; }
.av2 { background: #5A5A5A; }
.av3 { background: #4a6741; }
.av4 { background: #5c3d7a; }
.av5 { background: #7a3d3d; }
.proof-text { font-size: 0.875rem; color: var(--text-muted); max-width: none; }
.proof-text strong {
  color: var(--gold); font-weight: 700;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  font-family: var(--font-display);
  margin-right: 0.25rem;
}

/* Decorative watermark icon */
.hero-icon-watermark {
  position: absolute; right: clamp(1rem, 6vw, 6rem);
  top: 50%; transform: translateY(-40%);
  z-index: 0; opacity: 0.05; pointer-events: none;
}
.hero-icon-watermark img { width: clamp(220px, 28vw, 400px); height: auto; }

/* ═══════════════════════════════════════════════════════════
   REASON SECTION
═══════════════════════════════════════════════════════════ */
.reason-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reason-inner {
  max-width: 800px; margin-inline: auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.reason-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.35rem, 0.8rem + 2vw, 2rem);
  color: var(--text);
  line-height: 1.5;
  position: relative;
  padding: 0 1.5rem;
}
.reason-quote::before {
  content: '\201C';
  position: absolute; left: 0; top: -0.1em;
  font-size: 3em; color: var(--gold);
  font-family: var(--font-display);
  line-height: 1; opacity: 0.6;
}
.reason-answer {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.8; max-width: 62ch;
}

/* ═══════════════════════════════════════════════════════════
   QUOTES TICKER
═══════════════════════════════════════════════════════════ */
.quotes-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.quotes-section .section-header { margin-bottom: clamp(2rem, 4vw, 3.5rem); }

.quotes-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  cursor: grab;
}
.quotes-track-wrap:active { cursor: grabbing; }

.quotes-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: scroll-quotes 55s linear infinite;
  will-change: transform;
}
.quotes-track:hover { animation-play-state: paused; }

@keyframes scroll-quotes {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.quote-card {
  flex-shrink: 0;
  width: clamp(280px, 35vw, 400px);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  padding: 1.75rem 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: border-color var(--t);
}
.quote-card:hover { border-color: var(--gold-border); }

.qcard-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.15rem);
  color: var(--text);
  line-height: 1.6;
  flex: 1; max-width: none;
}
.qcard-source {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.qcard-author { font-size: 0.875rem; font-weight: 600; color: var(--gold); }
.qcard-book   { font-size: 0.8rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   GAP SECTION
═══════════════════════════════════════════════════════════ */
.gap-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.gap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.gap-left .section-title { text-align: left; }
.gap-left .label-tag { margin-bottom: 1.5rem; }
.gap-right { display: flex; flex-direction: column; gap: 1rem; }

.gap-stat-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.75rem 2rem;
  transition: border-color var(--t);
}
.gap-stat-card:hover { border-color: var(--gold-border); }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1rem + 3vw, 3.5rem);
  color: var(--gold); line-height: 1; margin-bottom: 0.5rem;
}
.stat-desc { font-size: 0.9rem; color: var(--text-muted); max-width: none; }

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════ */
.how-section { padding-block: clamp(4rem, 8vw, 7rem); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.step-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2rem 2rem 2.25rem;
  transition: border-color var(--t), transform 0.3s var(--ease);
}
.step-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.step-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1rem + 2vw, 3rem);
  color: var(--text-faint); line-height: 1; margin-bottom: 1rem;
}
.step-icon { width: 48px; height: 48px; margin-bottom: 1.25rem; }
.step-title { font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 0.75rem; }
.step-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; max-width: none; }

/* ═══════════════════════════════════════════════════════════
   TRANSFORMATION (BEFORE / AFTER)
═══════════════════════════════════════════════════════════ */
.transform-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.transform-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.transform-col {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2rem 2.25rem;
}
.transform-col.transform-after {
  border-color: var(--gold-border);
  background: linear-gradient(145deg, var(--surface-2) 0%, rgba(201,168,76,0.04) 100%);
}
.transform-col-label {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.25rem;
}
.transform-col-label.gold { color: var(--gold); }
.transform-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.875rem;
}
.transform-list li {
  font-size: 0.9375rem; color: var(--text-muted);
  padding-left: 1.5rem; position: relative; line-height: 1.6; max-width: none;
}
.transform-list li::before {
  content: '–';
  position: absolute; left: 0;
  color: var(--text-faint);
}
.transform-list-gold li { color: var(--text); }
.transform-list-gold li::before { content: '✓'; color: var(--gold); font-weight: 700; }

.transform-divider {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.transform-icon {
  width: clamp(48px, 6vw, 80px); opacity: 0.25;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.3));
}

/* ═══════════════════════════════════════════════════════════
   TIERS
═══════════════════════════════════════════════════════════ */
.tiers-section { padding-block: clamp(4rem, 8vw, 7rem); }
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; align-items: start;
}
.tier-card {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  position: relative; transition: border-color var(--t);
}
.tier-card:hover { border-color: var(--border-strong); }
.tier-hero {
  background: linear-gradient(145deg, var(--surface-2) 0%, rgba(201,168,76,0.06) 100%);
  border-color: var(--gold-border);
  box-shadow: 0 0 0 1px var(--gold-border), 0 24px 64px rgba(0,0,0,0.5);
}
.tier-hero:hover { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 32px 80px rgba(201,168,76,0.12); }
.tier-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0A0A0B;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 999px; white-space: nowrap;
}
.tier-name { font-size: 1.1rem; font-weight: 700; color: var(--text); letter-spacing: 0.02em; }
.tier-name.gold { color: var(--gold); }
.tier-price {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2rem);
  color: var(--text); line-height: 1;
}
.tier-period { font-size: 0.875rem; color: var(--text-muted); font-family: var(--font-body); }
.tier-annual { font-size: 0.75rem; color: var(--gold); margin-top: 0.35rem; }
.tier-features {
  list-style: none; display: flex; flex-direction: column; gap: 0.75rem; flex: 1;
}
.tier-features li {
  font-size: 0.875rem; color: var(--text-muted);
  display: flex; align-items: flex-start; gap: 0.625rem; max-width: none;
}
.check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0; margin-top: 2px;
  font-size: 9px; color: var(--text-muted);
}
.check::before { content: '✓'; }
.gold-check { background: var(--gold-dim); color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   PILLARS
═══════════════════════════════════════════════════════════ */
.pillars-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.pillar { display: flex; flex-direction: column; gap: 1rem; }
.pillar-icon {
  width: 48px; height: 48px;
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; padding: 10px;
}
.pillar-title { font-size: 1.1rem; font-weight: 600; color: var(--text); }
.pillar-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; max-width: none; }

/* ═══════════════════════════════════════════════════════════
   COMPARISON
═══════════════════════════════════════════════════════════ */
.compare-section { padding-block: clamp(4rem, 8vw, 7rem); }
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
}
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare-table th, .compare-table td {
  padding: 1rem 1.5rem; text-align: center;
  border-bottom: 1px solid var(--border);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table thead th { background: var(--surface-2); font-weight: 600; }
.col-feature { text-align: left; width: 42%; }
.col-us {
  background: rgba(201,168,76,0.06); color: var(--gold); font-weight: 700;
  border-left: 2px solid var(--gold-border);
  border-right: 1px solid var(--border);
}
.col-them { color: var(--text-muted); }
.feature-name { text-align: left; color: var(--text); font-weight: 500; }
.val-us { background: rgba(201,168,76,0.04); }
.tick { color: var(--gold); font-weight: 700; font-size: 1rem; }
.cross { color: var(--text-faint); font-size: 1rem; }
.dash { color: var(--text-faint); }
.compare-note {
  text-align: center; font-size: 0.875rem;
  color: var(--text-muted); margin-top: 1.5rem; font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   WAITLIST
═══════════════════════════════════════════════════════════ */
.waitlist-section {
  position: relative;
  padding-block: clamp(5rem, 10vw, 9rem);
  overflow: hidden;
}
.waitlist-bg { position: absolute; inset: 0; pointer-events: none; }
.waitlist-glow {
  position: absolute; width: 900px; height: 900px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 60%);
  border-radius: 50%; filter: blur(60px);
}
.waitlist-inner {
  position: relative; z-index: 1;
  max-width: 640px; margin-inline: auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
}
.waitlist-logo-block {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  margin-bottom: 0.5rem;
}
.waitlist-icon {
  width: 72px; height: 72px; object-fit: contain;
  background: var(--surface); border: 1px solid var(--gold-border);
  border-radius: var(--r-lg); padding: 12px;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.2));
}
.waitlist-wordmark {
  width: clamp(200px, 38vw, 340px); height: auto;
}
.waitlist-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1rem + 3vw, 3.25rem);
  color: var(--text);
}
.waitlist-sub {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.1rem);
  color: var(--text-muted); max-width: 50ch; line-height: 1.7;
}
.waitlist-form {
  width: 100%; display: flex; flex-direction: column; gap: 1rem;
  margin-top: 0.5rem; text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }
.form-input {
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--r-md); padding: 0.75rem 1rem;
  font-size: 0.9375rem; color: var(--text);
  font-family: var(--font-body);
  transition: border-color var(--t), box-shadow var(--t); outline: none;
}
.form-input:focus {
  border-color: var(--gold-border);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-input::placeholder { color: var(--text-faint); }
.goal-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.chip {
  font-size: 0.8rem; font-weight: 500;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text-muted);
  cursor: pointer; transition: all var(--t);
}
.chip:hover { border-color: var(--gold-border); color: var(--gold); background: var(--gold-dim); }
.chip.selected { background: var(--gold-dim); border-color: var(--gold); color: var(--gold); }
.form-success {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(201,168,76,0.1); border: 1px solid var(--gold-border);
  border-radius: var(--r-md); padding: 1rem 1.25rem;
  font-size: 0.9rem; color: var(--gold);
}
.form-privacy { font-size: 0.75rem; color: var(--text-faint); text-align: center; max-width: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn-loading svg { animation: spin 0.8s linear infinite; }

/* ═══════════════════════════════════════════════════════════
   REFERRAL
═══════════════════════════════════════════════════════════ */
.referral-section { padding-block: clamp(4rem, 8vw, 7rem); }
.referral-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.referral-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2.5rem 2rem;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem;
  transition: border-color var(--t), transform 0.3s var(--ease);
}
.referral-card:hover { border-color: var(--gold-border); transform: translateY(-4px); }
.referral-card-gold {
  border-color: var(--gold-border);
  background: linear-gradient(145deg, var(--surface) 0%, rgba(201,168,76,0.05) 100%);
}
.referral-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2rem + 3vw, 5rem);
  color: var(--gold); line-height: 1;
}
.referral-reward { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.referral-desc { font-size: 0.875rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  padding-block: 3.5rem 2.5rem;
  border-top: 1px solid var(--border);
}
.footer-logo-block {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  text-align: center; margin-bottom: 3rem;
}
.footer-wordmark {
  width: clamp(160px, 25vw, 260px); height: auto; opacity: 0.6;
  transition: opacity var(--t);
}
.footer-wordmark:hover { opacity: 1; }
.footer-tagline {
  font-family: var(--font-display); font-style: italic;
  color: var(--gold); font-size: 1rem; letter-spacing: 0.04em;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-faint); max-width: none; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: var(--text-faint); transition: color var(--t); }
.footer-legal a:hover { color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .tiers-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .gap-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .transform-grid { grid-template-columns: 1fr; }
  .transform-divider { display: none; }
  .hero-icon-watermark { display: none; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .referral-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; }
  .hero-wordmark { width: min(85vw, 380px); }
}
