:root {
  --bg: #0D0F14;
  --bg-2: #141720;
  --bg-3: #1C2030;
  --fg: #F4F4F0;
  --fg-muted: #8A8F9E;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --border: rgba(255,255,255,0.08);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --max-w: 1100px;
  --space: clamp(1.5rem, 5vw, 4rem);
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem;
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav__tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-left: 1px solid var(--border);
  padding-left: 2rem;
}

/* HERO */
.hero {
  padding: var(--space) 2rem;
  padding-top: clamp(4rem, 10vw, 8rem);
  padding-bottom: var(--space);
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 600;
}
.hero__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  max-width: 14ch;
  margin-bottom: 2rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--accent);
}
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--fg-muted);
  max-width: 52ch;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}
.hero__stat-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  max-width: 12ch;
  line-height: 1.3;
}
.hero__stat-div {
  width: 1px;
  height: 3rem;
  background: var(--border);
}

/* PROOF */
.proof {
  background: var(--bg-2);
  padding: var(--space) 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.proof__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 3rem;
  font-weight: 600;
}
.proof__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.proof__step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.proof__step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  letter-spacing: -0.04em;
}
.proof__step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.proof__step-content p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* DIFFERENTIATORS */
.diff {
  padding: var(--space) 2rem;
}
.diff__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.diff__header {
  margin-bottom: 3.5rem;
}
.diff__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
  font-weight: 600;
}
.diff__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.diff__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}
.diff__card {
  background: var(--bg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.diff__card-icon {
  color: var(--accent);
  width: 44px;
  height: 44px;
  border: 1px solid var(--accent-dim);
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diff__card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
}
.diff__card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* COMPARISON TABLE */
.table {
  padding: var(--space) 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.table__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.table__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 2rem;
  font-weight: 600;
}
.table__wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 600px;
}
.comparison thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fg);
  text-align: center;
  padding: 1rem 1.25rem 1.25rem;
  border-bottom: 2px solid var(--border);
  line-height: 1.3;
}
.comparison thead th:first-child {
  text-align: left;
  color: var(--fg-muted);
  font-size: 0.75rem;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.comparison thead th:last-child {
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 6px 6px 0 0;
}
.comparison tbody td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--fg-muted);
  vertical-align: middle;
  line-height: 1.4;
}
.comparison tbody tr:last-child td {
  border-bottom: none;
}
.comparison tbody td:first-child {
  color: var(--fg);
  font-weight: 500;
  text-align: left;
}
.comparison tbody tr:last-child td:last-child {
  background: var(--accent-dim);
  border-radius: 0 0 6px 6px;
}
.yes {
  color: var(--accent) !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.maybe { color: #6B7280; }
.no { color: #3A3F4D; }

/* MANIFESTO */
.manifesto {
  padding: var(--space) 2rem;
  background: var(--bg);
}
.manifesto__inner {
  max-width: 680px;
  margin: 0 auto;
}
.manifesto__quote {
  margin-bottom: 3rem;
}
.manifesto__text {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}
.manifesto__text--muted { opacity: 0.7; }
.manifesto__text--accent {
  color: var(--fg);
}
.manifesto__attribution {
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}
.manifesto__sig {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.35rem;
}
.manifesto__bio {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* CLOSING */
.closing {
  padding: var(--space) 2rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing__inner {
  max-width: 680px;
  margin: 0 auto;
}
.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.closing__sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* FOOTER */
.footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 0.35rem;
}
.footer__tagline {
  font-size: 0.78rem;
  color: var(--fg-muted);
}
.footer__link {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__link:hover { color: var(--accent); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav__tagline { display: none; }
  .hero__stat-row { gap: 1.5rem; }
  .hero__stat-div { display: none; }
  .proof__steps { grid-template-columns: 1fr; gap: 3rem; }
  .diff__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 2.4rem; }
  .proof__step-num { font-size: 1.8rem; }
}