:root {
  --bg: #0d0d10;
  --bg-surface: #16161c;
  --bg-card: #1e1e26;
  --fg: #f0ede8;
  --fg-muted: #8a8690;
  --accent: #e8a43a;
  --accent-dim: rgba(232, 164, 58, 0.12);
  --border: rgba(240, 237, 232, 0.08);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Nav */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* Hero */
.hero {
  padding: 6rem 2rem 5rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(232, 164, 58, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 4rem;
}
.hero-stats {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat {}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
  max-width: 160px;
}
.stat-divider {
  width: 1px;
  height: 3rem;
  background: var(--border);
  align-self: center;
}

/* How */
.how {
  background: var(--bg-surface);
  padding: 5rem 2rem;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {}
.step-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.step p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Features */
.features {
  padding: 5rem 2rem;
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem 2rem 2.25rem;
  border-radius: 4px;
}
.feature-icon {
  font-size: 0.6rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  letter-spacing: 0.2em;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.feature-card p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Proof */
.proof {
  background: var(--bg-surface);
  padding: 5rem 2rem;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.proof-item {}
.proof-stat {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.proof-desc {
  display: block;
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.proof-quote {
  border-left: 2px solid var(--accent);
  padding-left: 2rem;
  max-width: 600px;
}
.proof-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.proof-quote cite {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: normal;
}

/* Closing */
.closing {
  padding: 6rem 2rem;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
  margin-right: 1rem;
}
.footer-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.footer-meta {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* Mobile */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .stat-divider { display: none; }
  .steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .how, .features, .proof, .closing { padding: 3.5rem 1.5rem; }
}