:root {
  --bg: #F8F7F4;
  --bg-alt: #F0EFE9;
  --fg: #1A1A2E;
  --fg-muted: #5A5A72;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --border: #E2E0D8;
  --white: #FFFFFF;
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1100px;
  --section-pad: 100px 24px;
  --radius: 14px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

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

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 32px;
  background: rgba(248, 247, 244, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-head); font-size: 20px; font-weight: 700; letter-spacing: -0.03em; color: var(--fg); }
.logo-accent { color: var(--accent); }
.nav-badge {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245, 158, 11, 0.1);
  padding: 5px 10px;
  border-radius: 20px;
}

/* Hero */
.hero {
  padding: 140px 24px 80px;
}
.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 19px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
.hero-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(26, 26, 46, 0.12), 0 4px 20px rgba(26, 26, 46, 0.06);
  aspect-ratio: 16/9;
}
.hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Section label */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* How */
.how { background: var(--bg-alt); padding: var(--section-pad); }
.how-inner { max-width: var(--max-w); margin: 0 auto; }
.how-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 64px;
  max-width: 600px;
}
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 64px;
}
.step { flex: 1; }
.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 36px;
  color: var(--fg-muted);
  flex-shrink: 0;
}
.step-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.step-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.step-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }
.how-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 16px 60px rgba(26, 26, 46, 0.1);
  aspect-ratio: 16/7;
  object-fit: cover;
}

/* Features */
.features { padding: var(--section-pad); }
.features-inner { max-width: var(--max-w); margin: 0 auto; }
.features-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 520px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow 0.2s ease;
}
.feature-card:hover { box-shadow: 0 8px 32px rgba(26, 26, 46, 0.07); }
.feature-icon { margin-bottom: 18px; color: var(--accent); }
.feature-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.feature-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* Outcomes */
.outcomes { background: var(--fg); padding: var(--section-pad); }
.outcomes-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.outcomes-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: 56px;
}
.outcomes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto 48px; }
.outcome-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 40px;
  text-align: left;
}
.outcome-card--accent { background: rgba(245, 158, 11, 0.12); border-color: rgba(245, 158, 11, 0.25); }
.outcome-big {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.05em;
  display: block;
  margin-bottom: 12px;
}
.outcome-card--accent .outcome-big { color: var(--accent); }
.outcome-context { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.outcomes-tagline {
  font-size: 19px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.outcomes-tagline strong { color: var(--accent); }

/* Closing */
.closing { padding: 120px 24px; background: var(--bg); text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 20px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Footer */
.footer { background: var(--fg); padding: 36px 24px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--white); letter-spacing: -0.03em; }
.footer-copy { font-size: 14px; color: rgba(255,255,255,0.45); }
.footer-link { color: var(--accent); text-decoration: none; }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 120px 20px 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .hero-headline { font-size: 38px; }
  .how-steps { flex-direction: column; }
  .step-arrow { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .nav { padding: 16px 20px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .closing { padding: 80px 20px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 32px; }
  .hero-lede { font-size: 17px; }
  .stat-number { font-size: 22px; }
  .outcome-big { font-size: 44px; }
  .closing-headline { font-size: 36px; }
}