:root {
  --bg: #0a0a0b;
  --bg-elevated: #141416;
  --bg-card: #1a1a1e;
  --fg: #f0ede6;
  --fg-muted: #8a8680;
  --accent: #f5c518;
  --accent-dim: rgba(245, 197, 24, 0.12);
  --accent-glow: rgba(245, 197, 24, 0.25);
  --green: #34d399;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 24px 60px;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.accent { color: var(--accent); }

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 36px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  max-width: fit-content;
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}

/* === HOW IT WORKS === */
.how {
  padding: 100px 24px;
  background: var(--bg);
}

.how-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.how h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  padding: 36px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  transition: border-color 0.3s;
}

.step:hover {
  border-color: var(--accent-glow);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* === PLAYBOOKS === */
.playbooks {
  padding: 100px 24px;
  background: var(--bg-elevated);
}

.playbooks-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.playbooks h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.playbooks-sub {
  color: var(--fg-muted);
  margin-bottom: 48px;
  font-size: 1.05rem;
}

.playbook-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.playbook-card {
  padding: 36px;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  position: relative;
  transition: transform 0.2s, border-color 0.3s;
}

.playbook-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-glow);
}

.playbook-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  display: block;
}

.playbook-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.playbook-card p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.playbook-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(52, 211, 153, 0.1);
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* === PROOF / RULES === */
.proof {
  padding: 100px 24px;
  background: var(--bg);
}

.proof-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.proof-block {
  margin-bottom: 48px;
}

.proof h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.proof-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.rule {
  padding: 32px;
  background: var(--bg-elevated);
  border-left: 3px solid var(--accent);
  border-radius: 4px 16px 16px 4px;
}

.rule-icon {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--accent);
}

.rule h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.rule p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* === CLOSING === */
.closing {
  padding: 120px 24px;
  background: var(--bg-elevated);
  text-align: center;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.closing-small {
  font-size: 0.92rem !important;
  opacity: 0.7;
}

/* === FOOTER === */
.site-footer {
  padding: 48px 24px;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 60px 20px 48px;
  }

  .hero-glow {
    width: 300px;
    height: 300px;
    top: -10%;
    right: -20%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px 28px;
    align-items: flex-start;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .playbook-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rules-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .how, .playbooks, .proof {
    padding: 64px 20px;
  }

  .closing {
    padding: 80px 20px;
    text-align: left;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .step, .playbook-card, .rule {
    padding: 24px;
  }
}