:root {
  --bg: #0A0E1A;
  --surface: #111827;
  --fg: #FFFFFF;
  --fg-muted: #9CA3AF;
  --accent: #FF4D00;
  --accent-dim: rgba(255, 77, 0, 0.12);
  --amber: #F5A623;
  --border: rgba(255,255,255,0.08);
  --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 {
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-mark {
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 4px;
  display: block;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Section shared */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

/* Hero */
.hero {
  padding: 6rem 2.5rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-inner { max-width: 820px; }
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat { padding: 0 2rem; }
.stat:first-child { padding-left: 0; }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.2rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* How it works */
.how-it-works {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.step { position: relative; }
.step-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Features */
.features {
  padding: 6rem 0;
  background: var(--surface);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  transition: border-color 0.2s;
}
.feature:hover { border-color: rgba(255,77,0,0.3); }
.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border-radius: 6px;
  margin-bottom: 1rem;
}
.feature-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Outcomes */
.outcomes {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.outcome { padding: 1.5rem; border: 1px solid var(--border); border-radius: 8px; }
.outcome-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.outcome-comparison {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.comparison-old {
  font-size: 0.875rem;
  color: var(--fg-muted);
  text-decoration: line-through;
  opacity: 0.6;
}
.comparison-arrow { display: none; }
.comparison-new {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

/* Objections */
.objections {
  padding: 6rem 0;
  background: var(--surface);
}
.objections-list { display: flex; flex-direction: column; gap: 2rem; max-width: 720px; }
.objection { padding: 1.5rem; border-left: 3px solid var(--accent); }
.objection-q {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.objection-a { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; }

/* Closing */
.closing {
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 600px;
}

/* Footer */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.footer-tagline { font-size: 0.875rem; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
  .section-inner { padding: 0 1.5rem; }
  .how-it-works, .features, .outcomes, .objections, .closing { padding: 4rem 0; }
  .footer-inner { padding: 0 1.5rem; }
}