:root {
  --bg: #F8F5F0;
  --bg-alt: #EEE9E2;
  --nav-bg: #0A1628;
  --fg: #0A1628;
  --fg-muted: #5A6478;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --white: #FFFFFF;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* Nav */
.nav {
  background: var(--nav-bg);
  padding: 16px 0;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: #8898AA;
  font-weight: 400;
}

/* Hero */
.hero {
  padding: 80px 0 72px;
  background: var(--nav-bg);
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 16px;
  color: #8898AA;
  max-width: 420px;
  line-height: 1.65;
}
.hero-stats-card {
  background: #112240;
  border: 1px solid #1D3557;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stat-row {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #1D3557;
}
.stat-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.stat-row:first-child {
  padding-top: 0;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 13px;
  color: #8898AA;
  margin-top: 2px;
}

/* How it works */
.howitworks {
  padding: 88px 0;
  background: var(--bg);
}
.howitworks-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
}
.step {
  flex: 1;
  padding-right: 32px;
}
.step-connector {
  width: 48px;
  height: 1px;
  background: #D4C9BC;
  align-self: center;
  flex-shrink: 0;
  margin: 0 0;
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Categories */
.categories {
  padding: 88px 0;
  background: var(--nav-bg);
}
.categories-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.categories .section-label {
  color: #8898AA;
}
.categories-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 48px;
  letter-spacing: -1px;
  line-height: 1.15;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.category-card {
  background: #112240;
  border: 1px solid #1D3557;
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s;
}
.category-card:hover {
  border-color: var(--accent);
}
.category-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  opacity: 0.15;
  border-radius: 8px;
  margin-bottom: 16px;
}
.category-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.category-desc {
  font-size: 13px;
  color: #8898AA;
}

/* Proof */
.proof {
  padding: 88px 0;
  background: var(--bg);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  text-align: center;
}
.proof-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  color: var(--fg);
  line-height: 1.35;
  max-width: 700px;
  letter-spacing: -0.5px;
}
.proof-context {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 16px;
}
.proof-stats {
  display: flex;
  gap: 80px;
}
.proof-stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -1px;
}
.proof-stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* Closing */
.closing {
  padding: 88px 0 96px;
  background: var(--nav-bg);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}
.closing-headline em {
  font-style: italic;
  color: var(--accent);
}
.closing-sub {
  font-size: 16px;
  color: #8898AA;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
.footer {
  padding: 32px 0;
  background: var(--bg-alt);
  border-top: 1px solid #D4C9BC;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}
.footer-meta {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-right {
    order: -1;
  }
  .hero {
    padding: 56px 0 56px;
  }
  .steps-grid {
    flex-direction: column;
    gap: 0;
  }
  .step-connector {
    width: 1px;
    height: 32px;
    margin: 0 auto;
  }
  .step {
    padding-right: 0;
    padding-bottom: 40px;
  }
  .step:last-child { padding-bottom: 0; }
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }
  .proof-stats {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
  .hero-headline {
    font-size: 32px;
  }
}