:root {
  --bg: #0c0a09;
  --bg-warm: #1c1917;
  --bg-card: #292524;
  --fg: #fafaf9;
  --fg-muted: #a8a29e;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --accent-glow: rgba(245, 158, 11, 0.15);
  --peach: #fdba74;
  --rose: #fb7185;
  --radius: 16px;
  --radius-sm: 8px;
}

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

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

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: radial-gradient(ellipse at 50% 0%, var(--accent-glow) 0%, transparent 60%),
              var(--bg);
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent-light), var(--peach));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lede {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 40px;
  background: var(--bg-warm);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-light);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  max-width: 180px;
  display: block;
}

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

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

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

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 48px;
  text-align: center;
}

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

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

.problem-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* Features */
.features {
  padding: 100px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.section-sub {
  text-align: center;
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-top: -32px;
  margin-bottom: 64px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.feature-number {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(245, 158, 11, 0.2);
  line-height: 1;
  min-width: 80px;
  text-align: center;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* How / Audiences */
.how {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}

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

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

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

.how-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.how-point p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Closing */
.closing {
  padding: 120px 24px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 100%, var(--accent-glow) 0%, transparent 50%),
              var(--bg-warm);
}

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

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

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

/* Footer */
.site-footer {
  padding: 40px 24px;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--fg);
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

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

  .stat-label {
    max-width: 240px;
  }

  .problem-grid,
  .how-points {
    grid-template-columns: 1fr;
  }

  .feature-row {
    flex-direction: column;
    gap: 8px;
  }

  .feature-number {
    min-width: auto;
    text-align: left;
    font-size: 2rem;
  }

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