:root {
  --bg: #080b14;
  --surface: #0f1420;
  --surface2: #161c2e;
  --fg: #e8eaf0;
  --fg-muted: #7a8099;
  --accent: #e8631a;
  --accent-light: #f08040;
  --border: #1e2640;
}

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

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
}
.nav-inner { max-width: 1200px; margin: 0 auto; }
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(232,99,26,0.12) 0%, transparent 70%);
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232,99,26,0.3);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 32px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero-accent { color: var(--accent); }
.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0;
}
.proof-item {
  display: flex;
  flex-direction: column;
  padding: 0 28px;
}
.proof-item:first-child { padding-left: 0; }
.proof-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fg);
}
.proof-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── PROBLEMS ── */
.problems {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 36px;
  border-radius: 0;
}
.problem-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(232,99,26,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.icon-x {
  font-size: 0.85rem;
  color: var(--accent);
  font-style: normal;
}
.problem-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── OUTCOMES ── */
.outcomes {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.outcomes-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.outcomes-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-top: 16px;
}
.outcome-list { display: flex; flex-direction: column; gap: 0; }
.outcome-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.outcome-item:last-child { border-bottom: none; }
.outcome-check {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.outcome-item strong { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--fg); display: block; margin-bottom: 6px; }
.outcome-item p { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.6; }

/* ── HOW ── */
.how {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.how-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin: 20px 0 64px;
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 36px 32px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(232,99,26,0.2);
  line-height: 1;
  margin-bottom: 24px;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.step p { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.65; }

/* ── CLOSING ── */
.closing {
  padding: 120px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 32px;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 640px;
  line-height: 1.75;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .problems-grid, .steps, .outcomes-layout { grid-template-columns: 1fr; }
  .hero { padding: 100px 24px 60px; }
  .problems, .outcomes, .how, .closing { padding: 60px 24px; }
  .footer { padding: 32px 24px; }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 20px; }
  .proof-divider { display: none; }
  .proof-item { padding: 0; }
}