/* === TOKENS === */
:root {
  --bg: #0F0F0F;
  --surface: #1A1A1A;
  --surface-2: #242424;
  --accent: #E8A838;
  --accent-dim: rgba(232, 168, 56, 0.12);
  --text: #F5F0E8;
  --text-muted: #8A8A8A;
  --border: #2E2E2E;
  --green: #4ADE80;
  --amber: #FBBF24;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Figtree', system-ui, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav__tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  padding: 80px 40px 60px;
}
.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.hero__eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero__headline em {
  font-style: italic;
  color: var(--accent);
}
.hero__sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 48px;
}

/* === LEDGER VISUAL === */
.ledger {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  font-family: var(--font-body);
}
.ledger__header {
  display: grid;
  grid-template-columns: 1fr 100px 100px 110px;
  padding: 12px 16px;
  background: var(--surface-2);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.ledger__row {
  display: grid;
  grid-template-columns: 1fr 100px 100px 110px;
  padding: 12px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background 0.3s;
}
.ledger__row:last-child { border-bottom: none; }
.ledger__row span:first-child { color: var(--text); }
.ledger__row span:nth-child(2),
.ledger__row span:nth-child(3) { color: var(--text-muted); font-variant-numeric: tabular-nums; }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.badge--done { background: rgba(74, 222, 128, 0.1); color: var(--green); }
.badge--live {
  background: rgba(251, 191, 36, 0.12);
  color: var(--amber);
  animation: pulse 1.5s ease-in-out infinite;
}
.badge--pending { background: var(--surface-2); color: var(--text-muted); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.ledger__row--done { background: rgba(74, 222, 128, 0.03); }
.ledger__row--live { background: rgba(251, 191, 36, 0.05); }

.hero__visual-note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* === PROOF STRIP === */
.proof {
  padding: 0 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.proof__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 40px 0;
}
.proof__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.proof__number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
}
.proof__label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}
.proof__divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* === HOW IT WORKS === */
.how {
  padding: 100px 40px;
}
.how__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1.2;
  max-width: 600px;
  margin-bottom: 64px;
}
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.how__step {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.how__step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 20px;
}
.how__step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  font-family: var(--font-display);
}
.how__step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === WHY === */
.why {
  padding: 0 40px 100px;
  background: var(--surface);
}
.why__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.why__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.why__sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.comparison {
  display: flex;
  gap: 1px;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 40px;
}
.comparison__col {
  flex: 1;
  padding: 28px 24px;
  background: var(--bg);
}
.comparison__col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 600;
}
.comparison__col--new h4 { color: var(--accent); }
.comparison__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.comparison__col li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.comparison__col--new li { color: var(--text); }
.comparison__col li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}
.comparison__col--new li::before { color: var(--accent); }

/* === CLOSING === */
.closing {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.closing__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.closing__statement {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -1px;
  max-width: 800px;
}

/* === FOOTER === */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.footer__sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .how__steps { grid-template-columns: 1fr; }
  .why__inner { grid-template-columns: 1fr; gap: 40px; }
  .proof__inner { flex-direction: column; gap: 32px; }
  .proof__divider { width: 60px; height: 1px; }
  .comparison { flex-direction: column; }
  .nav { padding: 16px 20px; }
  .hero, .how, .closing { padding: 60px 20px; }
  .why { padding: 0 20px 60px; }
  .why__inner { padding: 48px 0; }
}