:root {
  --bg: #F8F6F1;
  --bg-alt: #F0EDE5;
  --fg: #1A1A1A;
  --fg-muted: #6B6760;
  --accent: #E85D04;
  --accent-hover: #CC5203;
  --border: #D9D5CC;
}

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

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

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.nav-tag {
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
}

/* SHARED */
.section-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px 80px;
  position: relative;
}
.hero-eyebrow {
  margin-bottom: 28px;
}
.eyebrow-pill {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}
.hero-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--fg);
  margin-bottom: 28px;
  max-width: 700px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
}

/* PROBLEM */
.problem {
  background: var(--fg);
  color: #fff;
  padding: 96px 32px;
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.problem .section-label { color: var(--accent); }
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 52px;
}
.stat {
  background: #252522;
  padding: 40px 36px;
}
.stat-number {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.stat-desc {
  font-size: 0.88rem;
  color: #A8A5A0;
  line-height: 1.5;
}
.problem-callout {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}

/* FEATURES */
.features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.feature {
  background: var(--bg);
  padding: 40px 36px;
}
.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.feature h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.feature p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* HOW */
.how {
  background: var(--bg-alt);
  padding: 96px 32px;
}
.how-inner { max-width: 1100px; margin: 0 auto; }
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  min-width: 72px;
}
.step-body h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.step-body p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
}

/* PRICING */
.pricing {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  margin-bottom: 40px;
}
.price-card {
  background: var(--bg);
  padding: 48px 40px;
}
.price-card.accent { background: var(--fg); color: #fff; }
.price-card.accent .price-note { color: #A8A5A0; }
.price-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.price-card.accent .price-label { color: #A8A5A0; }
.price-amount {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.price-note {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.55;
}
.pricing-context {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* CLOSING */
.closing {
  background: var(--accent);
  padding: 96px 32px;
  text-align: center;
}
.closing-statement {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.closing-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

/* FOOTER */
.footer {
  background: var(--fg);
  color: #fff;
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.03em;
}
.footer-sub {
  font-size: 0.8rem;
  color: #6B6760;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 64px 24px 56px; }
  .problem { padding: 64px 24px; }
  .features { padding: 64px 24px; }
  .how { padding: 64px 24px; }
  .pricing { padding: 64px 24px; }

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

  .step { gap: 20px; }
  .step-num { font-size: 2rem; min-width: 48px; }

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

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .stat-number { font-size: 2.4rem; }
  .price-amount { font-size: 1.9rem; }
}