:root {
  --bg: #0b0b0f;
  --fg: #f0ece4;
  --fg-muted: #8a877e;
  --accent: #e8a836;
  --accent-dim: rgba(232, 168, 54, 0.12);
  --surface: #16161a;
  --surface-2: #1e1e24;
  --border: rgba(240, 236, 228, 0.08);
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { font-size: 16px; }

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

/* NAV */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 6rem 2.5rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner { max-width: 820px; }
.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 3rem;
}
.hero-attributes {
  display: flex;
  align-items: center;
  gap: 0;
}
.attr { padding: 0 2rem; }
.attr:first-child { padding-left: 0; }
.attr-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.attr-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.attr-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* HOW IT WORKS */
.howitworks {
  background: var(--surface);
  padding: 5rem 2.5rem;
}
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 3.5rem;
  max-width: 640px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
}
.step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}
.step-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* DIFFERENCE */
.difference {
  padding: 5rem 2.5rem;
  background: var(--bg);
}
.diff-inner { max-width: 1100px; }
.diff-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  max-width: 600px;
}
.diff-body {
  color: var(--fg-muted);
  font-size: 1rem;
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.comparison-table {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  max-width: 680px;
}
.comp-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--surface-2);
  padding: 0.9rem 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
}
.comp-col.accent-col { color: var(--accent); }
.comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.comp-row:last-child { border-bottom: none; }
.comp-label { color: var(--fg-muted); }
.comp-val { padding-left: 0.5rem; }
.comp-val.negative { color: #6b6860; }
.comp-val.positive { color: #7ec97e; font-weight: 500; }

/* OUTCOMES */
.outcomes {
  background: var(--surface);
  padding: 5rem 2.5rem;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1100px;
}
.outcome {
  background: var(--bg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
}
.outcome-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.outcome-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}
.outcome-body {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 7rem 2.5rem;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* FOOTER */
.site-footer {
  padding: 2.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: #4a4844;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar { padding: 1.25rem 1.5rem; }
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .hero-attributes { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .attr { padding: 0; }
  .attr-divider { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 0; }
  .step:last-child { border-bottom: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .howitworks, .difference, .outcomes, .closing { padding: 4rem 1.5rem; }
}
@media (max-width: 480px) {
  .comparison-table { font-size: 0.82rem; }
  .comp-row { padding: 0.8rem 1rem; }
}