:root {
  --bg: #0A0A0F;
  --surface: #111118;
  --surface-2: #1A1A24;
  --accent: #00E5A0;
  --accent-dim: rgba(0, 229, 160, 0.12);
  --text: #F0F0F5;
  --text-muted: #6E6E82;
  --text-dim: #9E9EB5;
  --border: rgba(255,255,255,0.07);
}

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

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

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* NAV */
.nav { padding: 1.5rem 2.5rem; border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.1rem; letter-spacing: -0.02em; }
.nav-badge { font-size: 0.7rem; font-weight: 500; background: var(--accent-dim); color: var(--accent); padding: 0.2rem 0.6rem; border-radius: 999px; letter-spacing: 0.04em; text-transform: uppercase; }

/* HERO */
.hero { padding: 7rem 2.5rem 5rem; max-width: 900px; }
.hero-eyebrow { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 500; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.75rem; }
.eyebrow-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; display: inline-block; }
.hero-headline { font-size: clamp(2.8rem, 6vw, 5rem); color: var(--text); margin-bottom: 1.5rem; }
.hero-lede { font-size: 1.2rem; color: var(--text-dim); max-width: 560px; margin-bottom: 3.5rem; line-height: 1.7; }
.hero-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--border); }
.hero-stat { background: var(--surface); padding: 1.75rem 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; }
.stat-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

/* SECTION UTILS */
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1.25rem; }
.section-sub { font-size: 1.05rem; color: var(--text-dim); max-width: 560px; line-height: 1.75; margin-bottom: 3rem; }

/* PROBLEM */
.problem { padding: 5rem 2.5rem; }
.problem-inner { max-width: 900px; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--border); }
.pain-card { background: var(--surface); padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.pain-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--accent-dim); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pain-card p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }

/* HOW IT WORKS */
.howitworks { padding: 5rem 2.5rem; background: var(--surface); }
.howitworks-inner { max-width: 900px; }
.step-list { display: flex; flex-direction: column; gap: 0; }
.step { display: grid; grid-template-columns: 4rem 1fr; gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid var(--border); align-items: start; }
.step:last-child { border-bottom: none; }
.step-num { font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.8rem; font-weight: 800; color: var(--accent); letter-spacing: 0.06em; padding-top: 0.3rem; }
.step-body h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.step-body p { font-size: 0.9rem; color: var(--text-dim); line-height: 1.7; max-width: 560px; }

/* ADVANTAGE */
.advantage { padding: 5rem 2.5rem; }
.advantage-inner { max-width: 900px; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.advantage-lede { font-size: 1.05rem; color: var(--text-dim); line-height: 1.75; margin-bottom: 1.25rem; }
.advantage-sub { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
.advantage-metrics { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 0.25rem; }
.metric { display: flex; flex-direction: column; gap: 0.25rem; }
.metric-val { font-family: 'Bricolage Grotesque', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--accent); line-height: 1; }
.metric-desc { font-size: 0.85rem; color: var(--text-muted); }

/* CLOSING */
.closing { padding: 7rem 2.5rem; }
.closing-inner { max-width: 700px; }
.closing-statement { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.closing-sub { font-size: 1.1rem; color: var(--text-dim); line-height: 1.7; max-width: 480px; }

/* FOOTER */
.footer { padding: 2rem 2.5rem; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; max-width: 900px; }
.footer-logo { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 0.9rem; }
.footer-tagline { font-size: 0.8rem; color: var(--text-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero, .problem-inner, .howitworks-inner, .advantage-inner, .closing-inner, .footer-inner { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hero { padding-top: 5rem; padding-bottom: 3.5rem; }
  .hero-stat-row { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .advantage-inner { grid-template-columns: 1fr; gap: 3rem; }
  .step { grid-template-columns: 2.5rem 1fr; gap: 1rem; }
}