:root {
  --bg: #0d0d0d;
  --bg-2: #141414;
  --fg: #f0ede8;
  --fg-muted: #8a8680;
  --accent: #ff6b35;
  --accent-dim: #c4521f;
  --border: #252525;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 6rem 2rem 5rem;
  max-width: 900px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
}

/* PROBLEM */
.problem {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.problem-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
}
.problem-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.problem-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.problem-text p {
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* HOW */
.how {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.how-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.step-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* OFFERINGS */
.offerings {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem;
}
.offerings-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  max-width: 900px;
  margin: 0 auto 2rem;
}
.offerings-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.offering-card {
  background: var(--bg-2);
  padding: 2rem;
}
.offering-icon {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.offering-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.offering-card p {
  color: var(--fg-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* NICHES */
.niches {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.niches-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}
.niches h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}
.niches-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.niche {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  letter-spacing: -0.01em;
}
.niches-cta {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fg-muted);
  letter-spacing: -0.02em;
}

/* CLOSING */
.closing {
  background: var(--accent);
  padding: 5rem 2rem;
  color: #fff;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 700px;
}
.closing-sub {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.closing-proof {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.proof-stat {
  text-align: left;
}
.proof-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.proof-label {
  font-size: 0.8rem;
  opacity: 0.75;
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.3);
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.footer-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .offerings-grid {
    grid-template-columns: 1fr;
  }
  .step {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
  }
  .closing-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .proof-divider { display: none; }
  .hero { padding: 4rem 1.5rem 3rem; }
}
