:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #e8e8e8;
  --fg-muted: #888;
  --accent: #e8b931;
  --accent-dim: rgba(232, 185, 49, 0.15);
  --accent-glow: rgba(232, 185, 49, 0.08);
  --border: #222;
  --radius: 12px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.hero-inner {
  max-width: 780px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* ========== SECTION LABELS ========== */
.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 20px;
}

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

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.problem h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 50px;
}

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.problem-stat {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: -2px;
}

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

/* ========== HOW IT WORKS ========== */
.how {
  padding: 100px 24px;
}

.how-inner {
  max-width: 800px;
  margin: 0 auto;
}

.how h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 60px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.step:last-child {
  border-bottom: 1px solid var(--border);
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--accent-dim);
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
}

.step-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 16px;
}

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

.numbers-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.numbers h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 60px;
}

.numbers-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.number-block {
  flex: 1;
}

.number-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.number-label {
  color: var(--fg-muted);
  font-size: 15px;
}

.number-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

/* ========== CLOSING ========== */
.closing {
  padding: 120px 24px;
  text-align: center;
}

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

.closing-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  border-radius: 10px;
  margin: 0 auto 40px;
}

.closing h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.closing-text {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
}

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

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

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

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

/* ========== CTA BUTTON ========== */
.btn-cta-primary {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0a;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.btn-cta-primary:hover { opacity: 0.85; }

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

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

  .hero-sub {
    font-size: 17px;
  }

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

  .problem-stat {
    font-size: 36px;
  }

  .step {
    flex-direction: column;
    gap: 12px;
  }

  .step-num {
    font-size: 40px;
    width: auto;
  }

  .numbers-row {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .number-divider {
    width: 60px;
    height: 1px;
  }

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

  .problem, .how, .numbers {
    padding: 70px 20px;
  }

  .closing {
    padding: 80px 20px;
  }
}