:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --fg: #e8e0d4;
  --fg-muted: #8a8078;
  --accent: #ff4d00;
  --accent-glow: rgba(255, 77, 0, 0.15);
  --accent-secondary: #ff8c00;
  --border: #1e1e1e;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* {
  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;
  overflow-x: hidden;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}

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

/* ── HERO ── */
.hero {
  position: relative;
  padding: 140px 24px 100px;
  text-align: center;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.flame-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255, 77, 0, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
  background: rgba(255, 77, 0, 0.06);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.hero .lede {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  padding: 20px 36px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

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

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

.step:hover {
  border-color: rgba(255, 77, 0, 0.3);
  background: var(--bg-card-hover);
}

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ── TIERS ── */
.tiers {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

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

.tier {
  padding: 40px 32px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
  transition: transform 0.3s, border-color 0.3s;
}

.tier:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 0, 0.2);
}

.tier-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255, 77, 0, 0.06) 0%, var(--bg-card) 100%);
  position: relative;
}

.tier-featured::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.tier-tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 28px;
}

.tier-price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--fg-muted);
}

.tier ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier li {
  font-size: 15px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.tier li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── WHY ── */
.why {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

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

.why-card {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
  transition: border-color 0.3s;
}

.why-card:hover {
  border-color: rgba(255, 77, 0, 0.25);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ── CLOSING ── */
.closing {
  position: relative;
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.closing-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.closing p {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.closing-glow {
  position: absolute;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 77, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ── FOOTER ── */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--fg-muted);
}

.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero {
    padding: 100px 24px 80px;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .hero-stats {
    gap: 20px;
    padding: 16px 24px;
  }

  .stat-num {
    font-size: 24px;
  }

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

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

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

  .footer-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section-label {
    margin-bottom: 32px;
  }

  .how, .tiers, .why {
    padding: 72px 0;
  }

  .closing {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 16px 60px;
  }

  .hero .lede {
    font-size: 16px;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-divider {
    display: none;
  }

  .step, .tier, .why-card {
    padding: 24px;
  }
}