:root {
  --bg: #FAF8F4;
  --fg: #1A1814;
  --muted: #7A7269;
  --accent: #E8692C;
  --accent-light: rgba(232, 105, 44, 0.1);
  --surface: #F0EDE6;
  --border: #E0DBD1;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
}

/* SHARED */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* HERO */
.hero {
  padding: 100px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-inner { max-width: 820px; }
.hero-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.stat {
  display: flex;
  flex-direction: column;
  padding-right: 48px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 120px;
  line-height: 1.4;
}
.stat-sep {
  width: 1px;
  height: 56px;
  background: var(--border);
  margin-right: 48px;
  flex-shrink: 0;
}

/* PROBLEM */
.problem { background: var(--fg); color: var(--bg); padding: 96px 24px; }
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-header { margin-bottom: 56px; }
.problem-header .section-label { color: var(--accent); }
.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 540px;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  margin-bottom: 56px;
}
.pain-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px 28px;
}
.pain-icon { color: var(--accent); margin-bottom: 20px; }
.pain-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.pain-card p { font-size: 0.88rem; line-height: 1.65; color: rgba(250,248,244,0.6); }
.problem-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
}
.problem-bottom p { font-size: 1rem; color: rgba(250,248,244,0.5); max-width: 520px; line-height: 1.7; }
.problem-bottom em { font-style: normal; color: rgba(250,248,244,0.8); }

/* HOW */
.how { padding: 96px 24px; background: var(--bg); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 64px;
  max-width: 480px;
  line-height: 1.15;
}
.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-body p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.how-tools {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.tools-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.tools-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tool-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 500;
}

/* NICHES */
.niches { padding: 96px 24px; background: var(--surface); }
.niches-inner { max-width: 1100px; margin: 0 auto; }
.niches-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 560px;
  line-height: 1.2;
}
.niches-sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 56px;
  max-width: 520px;
  line-height: 1.7;
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.niche-card {
  background: var(--bg);
  padding: 36px 28px;
  border: 1px solid var(--border);
}
.niche-icon { color: var(--accent); margin-bottom: 20px; }
.niche-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.niche-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* OUTCOMES */
.outcomes { padding: 96px 24px; background: var(--fg); color: var(--bg); }
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.outcomes-left .section-label { color: var(--accent); }
.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 20px;
}
.outcomes-body { font-size: 0.95rem; color: rgba(250,248,244,0.6); line-height: 1.7; }
.outcome-list { display: flex; flex-direction: column; gap: 0; }
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.outcome-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.outcome-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  margin-top: 2px;
}
.outcome-item span { font-size: 0.95rem; line-height: 1.5; padding-top: 4px; }

/* CLOSING */
.closing { padding: 120px 24px; background: var(--accent); color: white; }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 32px;
}
.closing-body {
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto 20px;
}

/* FOOTER */
.footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 6px;
}
.footer-desc { font-size: 0.8rem; color: var(--muted); display: block; }
.footer-meta { text-align: right; }
.footer-meta span { display: block; font-size: 0.8rem; color: var(--muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 64px 20px 56px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 24px; }
  .stat { padding-right: 0; }
  .stat-sep { display: none; }
  .step-row { grid-template-columns: 1fr; gap: 40px; }
  .niche-grid { grid-template-columns: 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-meta { text-align: left; }
}

@media (max-width: 480px) {
  .pain-grid { grid-template-columns: 1fr; }
  .problem { padding: 72px 20px; }
  .how { padding: 72px 20px; }
  .niches { padding: 72px 20px; }
  .outcomes { padding: 72px 20px; }
  .closing { padding: 80px 20px; }
}