:root {
  --bg: #0c0c0f;
  --bg-subtle: #13131a;
  --bg-card: #1a1a24;
  --fg: #e8e6e1;
  --fg-muted: #9a9790;
  --fg-dim: #5a5850;
  --accent: #e5a823;
  --accent-glow: rgba(229, 168, 35, 0.15);
  --accent-border: rgba(229, 168, 35, 0.25);
  --amber-soft: #f5c842;
  --danger: #d44a3a;
  --radius: 12px;
  --max-width: 1120px;
}

* { 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.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hex {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--accent-glow);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.4;
}

.hex-1 { top: -40px; right: 10%; width: 280px; height: 280px; opacity: 0.25; }
.hex-2 { top: 60%; left: -60px; width: 180px; height: 180px; opacity: 0.2; }
.hex-3 { bottom: -30px; right: 30%; width: 120px; height: 120px; opacity: 0.3; }

.hero .container { position: relative; z-index: 1; }

.badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  margin-bottom: 32px;
  background: var(--accent-glow);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--fg);
  max-width: 700px;
  margin-bottom: 28px;
}

.lede {
  font-size: 1.25rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.6;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--accent);
  color: #0c0c0f;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 40px rgba(229,168,35,0.25);
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}

.hero-btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(229,168,35,0.35);
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  color: var(--fg-muted);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.2s, color 0.2s;
}

.hero-btn-ghost:hover {
  border-color: var(--accent-border);
  color: var(--accent);
}

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

.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 24px;
  color: var(--fg);
}

.problem-text p {
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.problem-text strong { color: var(--accent); font-weight: 600; }

.loss-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px;
}

.loss-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.loss-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 24px;
}

.loss-trail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trail-step {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.trail-step.faded {
  background: rgba(255,255,255,0.03);
  color: var(--fg-dim);
  border-left: 3px solid rgba(255,255,255,0.06);
}

.trail-step.lost {
  background: rgba(212, 74, 58, 0.12);
  color: var(--danger);
  border-left: 3px solid var(--danger);
  font-weight: 600;
}

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

.how h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 60px;
  text-align: center;
}

.flow-grid {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.flow-step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
}

.flow-step:hover {
  border-color: var(--accent-border);
  box-shadow: 0 0 40px var(--accent-glow);
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.flow-step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--fg);
}

.flow-step p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.flow-arrow {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: var(--accent);
  padding-top: 60px;
  flex-shrink: 0;
}

/* ===== STATS ===== */
.stats {
  padding: 80px 0;
  background: var(--bg-subtle);
}

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

.stat-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.5;
  max-width: 260px;
  margin: 0 auto;
}

/* ===== NICHES ===== */
.niches {
  padding: 100px 0;
}

.niches h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 52px;
  text-align: center;
}

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

.niche-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.niche-card:hover {
  border-color: var(--accent-border);
  box-shadow: 0 0 30px var(--accent-glow);
}

.niche-icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.niche-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--fg);
}

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

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

.closing-content {
  max-width: 680px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 24px;
}

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

.closing-tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-content {
  text-align: center;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 100px 0 70px; }
  .hero h1 { font-size: 2.2rem; }

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

  .flow-grid {
    flex-direction: column;
  }

  .flow-arrow {
    transform: rotate(90deg);
    padding: 0;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .niche-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  body { font-size: 15px; }
  .hero { padding: 80px 0 60px; }
  .hero h1 { font-size: 1.8rem; }
  .lede { font-size: 1.05rem; }
  .problem, .how, .niches { padding: 60px 0; }
  .stats { padding: 50px 0; }
  .closing { padding: 70px 0; }
}