:root {
  --bg: #0f1923;
  --bg-surface: #162032;
  --bg-elevated: #1c2a3e;
  --fg: #fafaf8;
  --fg-muted: #94a3b8;
  --fg-faint: #4a6080;
  --accent: #f0a500;
  --accent-dim: rgba(240, 165, 0, 0.12);
  --border: rgba(148, 163, 184, 0.1);
  --radius: 6px;
  --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; }

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

/* ── Navigation ── */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}

/* ── Section common ── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

/* ── Hero ── */
.hero {
  padding: 5rem 2rem 4.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(240, 165, 0, 0.2);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--fg);
  max-width: 700px;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.hero-meta-item {
  font-size: 0.78rem;
  color: var(--fg-faint);
  font-weight: 500;
}
.hero-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--fg-faint);
}

/* ── Proof / Stats ── */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
  padding: 3rem 2rem;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.proof-stat { text-align: center; }
.proof-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.proof-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  max-width: 180px;
  margin: 0 auto;
  line-height: 1.5;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ── Features ── */
.features {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.features-header {
  margin-bottom: 3.5rem;
}
.features-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
  max-width: 540px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.feature-card:hover {
  border-color: rgba(240, 165, 0, 0.3);
}
.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.feature-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── How ── */
.how {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
  max-width: 540px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.steps {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.step-arrow {
  color: var(--fg-faint);
  flex-shrink: 0;
}
.step-number {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.step-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── Niche ── */
.niche {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.niche-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.niche-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.niche-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.niche-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.niche-stat {
  border-left: 2px solid var(--accent);
  padding-left: 1.25rem;
}
.niche-stat-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
.niche-stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── Closing ── */
.closing {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--fg);
  max-width: 680px;
  margin: 0 auto 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-left: 0.75rem;
}
.footer-meta {
  font-size: 0.75rem;
  color: var(--fg-faint);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .proof-divider { display: none; }
  .proof-label { max-width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .niche-inner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}