:root {
  --bg: #0a0e17;
  --bg-surface: #111827;
  --bg-card: #1a2235;
  --fg: #e8eaf0;
  --fg-muted: #8892a4;
  --accent: #d4a04a;
  --accent-glow: rgba(212, 160, 74, 0.15);
  --accent-bright: #e8b95a;
  --border: rgba(255,255,255,0.06);
  --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;
}

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

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

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212, 160, 74, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: #fff;
}

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

.lede {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.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;
}

/* Problem */
.problem {
  padding: 100px 24px;
  background: var(--bg-surface);
}

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

.problem-label,
.how-label,
.numbers-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem h2,
.how h2,
.numbers h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 48px;
  max-width: 700px;
}

.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: 16px;
  padding: 36px 28px;
}

.problem-stat {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* How It Works */
.how {
  padding: 100px 24px;
}

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

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

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

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(212, 160, 74, 0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

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

/* Numbers */
.numbers {
  padding: 100px 24px;
  background: var(--bg-surface);
}

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

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

.number-block {
  text-align: center;
}

.number-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--accent-bright);
  margin-bottom: 8px;
  line-height: 1;
}

.number-desc {
  color: var(--fg-muted);
  font-size: 0.9rem;
}

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

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

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 24px;
}

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

/* Hero CTA */
.hero-cta-primary {
  display: inline-block;
  background: var(--accent);
  color: #0a0e17;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-cta-primary:hover { background: var(--accent-bright); }
.hero-cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--fg-muted);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
}
.hero-cta-secondary:hover { border-color: var(--accent); color: var(--accent); }

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

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 8px;
}

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

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

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

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

  .step-num {
    width: auto;
    font-size: 2.5rem;
  }

  .numbers-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

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

  .lede {
    font-size: 1rem;
  }

  .problem-stat {
    font-size: 2.4rem;
  }
}