:root {
  --bg: #0d0d14;
  --surface: #14141f;
  --surface-2: #1c1c2a;
  --fg: #f0f0f8;
  --fg-muted: #8b8b9e;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --border: rgba(240, 240, 248, 0.08);
  --border-accent: rgba(245, 158, 11, 0.3);
}

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

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

h1, h2, h3 { font-family: 'Syne', sans-serif; font-weight: 700; line-height: 1.1; }

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  background: var(--surface);
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  border: 1px solid var(--border);
}

/* HERO */
.hero { padding: 5rem 2rem 4rem; }
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 44ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.75rem;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  padding: 1rem 1.5rem;
  border-radius: 12px;
}
.hero-stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}
.hero-stat-label { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.4; }

.hero-visual { display: flex; flex-direction: column; gap: 1.5rem; }
.hero-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.badge-icon { color: var(--accent); flex-shrink: 0; }
.badge-content { display: flex; align-items: baseline; gap: 0.75rem; }
.badge-value {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}
.badge-label { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.4; }

.hero-list { display: flex; flex-direction: column; gap: 0.85rem; }
.hero-list-item { display: flex; align-items: flex-start; gap: 0.85rem; font-size: 0.95rem; }
.check-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
}
.check-dot::after {
  content: '';
  position: absolute;
  top: 3px; left: 5px;
  width: 5px; height: 8px;
  border: 2px solid var(--accent);
  border-top: none; border-left: none;
  transform: rotate(40deg);
}

/* SECTION UTILS */
.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--fg);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

/* PROBLEM */
.problem { padding: 4rem 2rem; background: var(--surface); }
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.2s;
}
.problem-card:hover { border-color: var(--border-accent); }
.problem-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.problem-card h3 {
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.problem-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }

/* HOW */
.how { padding: 5rem 2rem; }
.how-inner { max-width: 900px; margin: 0 auto; }
.how-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  opacity: 0.7;
}
.step-body h3 {
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.step-body p { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.7; max-width: 54ch; }
.step-connector {
  width: 2px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--border-accent), transparent);
  margin-left: 2.5rem;
  margin-bottom: 0.5rem;
}

/* OUTCOMES */
.outcomes { padding: 5rem 2rem; background: var(--surface); }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.outcome-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.outcome-metric { margin-bottom: 1rem; }
.metric-val {
  font-family: 'Syne', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.metric-sub {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.outcome-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }

/* CLOSING */
.closing {
  padding: 6rem 2rem;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.closing-sub { font-size: 1.05rem; color: var(--fg-muted); line-height: 1.7; max-width: 52ch; margin: 0 auto; }

/* FOOTER */
.footer { padding: 2rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--fg); }
.footer-descriptor { display: block; font-size: 0.8rem; color: var(--fg-muted); margin-top: 0.2rem; }
.footer-meta { font-size: 0.8rem; color: var(--fg-muted); display: flex; align-items: center; gap: 0.5rem; }
.footer-sep { color: var(--border); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-headline { font-size: 2.25rem; }
  .problem-grid, .outcomes-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 50px 1fr; gap: 1rem; }
  .step-number { font-size: 1.75rem; }
  .nav { padding: 1rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero, .how, .closing { padding: 3.5rem 1.25rem; }
  .problem, .outcomes { padding: 3.5rem 1.25rem; }
}