:root {
  --bg: #0D1B2A;
  --surface: #132338;
  --surface2: #1a2f47;
  --accent: #00E5C3;
  --accent-dim: rgba(0, 229, 195, 0.12);
  --fg: #F4F7FA;
  --fg-muted: rgba(244, 247, 250, 0.55);
  --fg-dim: rgba(244, 247, 250, 0.3);
  --border: rgba(244, 247, 250, 0.08);
  --font-head: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1100px;
  --radius: 14px;
  --section-pad: 96px;
}

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

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

/* ── NAV ── */
.nav {
  padding: 28px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}

/* ── HERO ── */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px 96px;
}
.hero-eyebrow {
  margin-bottom: 28px;
}
.eyebrow-pill {
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(0, 229, 195, 0.2);
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  width: fit-content;
  overflow: hidden;
}
.stat {
  padding: 22px 36px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── PROBLEM ── */
.problem {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad) 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.problem-label, .section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.problem-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--fg);
}
.problem-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.problem-icon {
  color: #ff6b6b;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  font-family: sans-serif;
}
.problem-item p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ── WHAT ── */
.what { padding: var(--section-pad) 40px; }
.what-inner { max-width: var(--max-w); margin: 0 auto; }
.what-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.what-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 56px;
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.what-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.what-card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.what-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.what-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── TOOLS ── */
.tools {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--section-pad) 40px;
}
.tools-inner { max-width: var(--max-w); margin: 0 auto; }
.tools-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 40px;
  line-height: 1.2;
}
.tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.tool-badge {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 20px;
  letter-spacing: -0.3px;
}
.tools-note {
  font-size: 15px;
  color: var(--fg-muted);
}

/* ── RESULTS ── */
.results { padding: var(--section-pad) 40px; }
.results-inner { max-width: var(--max-w); margin: 0 auto; }
.results-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 56px;
  line-height: 1.2;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.result-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.result-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 16px;
}
.result-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.result-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing {
  background: linear-gradient(135deg, var(--accent) 0%, #00b89c 100%);
  padding: var(--section-pad) 40px;
}
.closing-inner { max-width: var(--max-w); margin: 0 auto; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  color: #0D1B2A;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(13, 27, 42, 0.7);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.closing-offer {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(13, 27, 42, 0.1);
  border-radius: 12px;
  padding: 24px 28px;
  width: fit-content;
}
.offer-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0D1B2A;
  opacity: 0.6;
  flex-shrink: 0;
  padding-top: 2px;
}
.offer-main {
  font-size: 16px;
  color: #0D1B2A;
  line-height: 1.6;
  font-weight: 500;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.footer-brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
}
.footer-copy {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav, .hero, .what, .tools, .results, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .hero { padding-top: 56px; padding-bottom: 64px; }
  .hero-headline { letter-spacing: -1px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }
  .stat { padding: 18px 24px; width: 100%; }
  .stat-number { font-size: 24px; }
  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
  .what-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .closing-offer { flex-direction: column; }
  .what, .tools, .results, .problem { padding-top: 64px; padding-bottom: 64px; }
}
@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; }
  .tools-row { gap: 8px; }
  .tool-badge { font-size: 13px; padding: 8px 14px; }
}