:root {
  --bg: #0d0d0d;
  --fg: #f2ede8;
  --accent: #F97316;
  --accent-dim: rgba(249, 115, 22, 0.12);
  --muted: #7a7470;
  --surface: #1a1a1a;
  --border: rgba(242, 237, 232, 0.08);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* Nav */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--accent);
}

/* Hero */
.hero {
  padding: 7rem 2rem 5rem;
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.hero-kicker {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.15rem;
  color: #a09a94;
  max-width: 580px;
  line-height: 1.65;
}

/* Problem */
.problem {
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-inner {
  max-width: 900px;
  margin: 0 auto;
}
.problem-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.problem-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2.5rem;
}
.problem-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.stat {}
.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}
.problem-body {
  font-size: 1rem;
  color: #8a8580;
  max-width: 560px;
  line-height: 1.65;
}

/* Features */
.features {
  padding: 5rem 2rem;
}
.features-inner {
  max-width: 900px;
  margin: 0 auto;
}
.features-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 3rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature {}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.feature p {
  font-size: 0.9rem;
  color: #7a7470;
  line-height: 1.55;
}

/* Closing */
.closing {
  padding: 6rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-quote {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1rem;
  color: #7a7470;
}

/* Footer */
.footer {
  padding: 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 700px) {
  .hero { padding: 5rem 1.5rem 3.5rem; }
  .problem { padding: 3.5rem 1.5rem; }
  .features { padding: 3.5rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .problem-stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-headline { font-size: 2.4rem; }
}