:root {
  --bg: #0b0d13;
  --surface: #12141c;
  --surface-2: #1a1d28;
  --fg: #f0ede8;
  --fg-muted: #7a7a8a;
  --accent: #ff5722;
  --accent-dim: rgba(255, 87, 34, 0.12);
}

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

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

/* Header */
.site-header {
  padding: 24px 48px;
  border-bottom: 1px solid rgba(240, 237, 232, 0.06);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
nav { display: flex; gap: 32px; }
nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover { color: var(--fg); }

/* Sections */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 64px;
}

/* Hero */
.hero { padding: 80px 0 96px; }
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 480px;
}

/* Widget */
.hero-widget {
  background: var(--surface);
  border: 1px solid rgba(240, 237, 232, 0.08);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.widget-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 28px;
}
.widget-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(240, 237, 232, 0.05);
}
.widget-row:last-of-type { border-bottom: none; }
.widget-stat {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
  min-width: 40px;
}
.widget-desc {
  font-size: 14px;
  color: var(--fg-muted);
}
.widget-row--highlight .widget-stat { color: var(--accent); }
.widget-badge {
  margin-top: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* How section */
.how { padding: 96px 0; background: var(--surface); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.step-card {
  background: var(--bg);
  padding: 40px 40px 40px 40px;
  position: relative;
}
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
.step-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}
.step-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* Differentiators */
.diff { padding: 96px 0; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.diff-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}
.diff-col p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--fg-muted);
}

/* Trust */
.trust { padding: 80px 0; background: var(--surface); }
.trust-bar {
  display: flex;
  align-items: center;
  gap: 0;
}
.trust-stat {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.trust-number {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.trust-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.trust-divider {
  width: 1px;
  height: 60px;
  background: rgba(240, 237, 232, 0.08);
}

/* Closing */
.closing { padding: 96px 0; }
.closing-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 32px;
  max-width: 800px;
}
.closing-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 48px;
}
.closing-note {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* Footer */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid rgba(240, 237, 232, 0.06);
}
.footer-brand .wordmark { display: block; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; color: var(--fg-muted); }
.footer-links { font-size: 12px; color: var(--fg-muted); opacity: 0.5; }

/* Responsive */
@media (max-width: 768px) {
  .site-header { padding: 20px 24px; }
  nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .hero { padding: 48px 0 64px; }
  .section-inner { padding: 0 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-bar { flex-direction: column; gap: 32px; }
  .trust-divider { width: 40px; height: 1px; }
}