:root {
  --bg: #0D0F13;
  --bg-card: #14161C;
  --bg-card-hover: #1A1D24;
  --fg: #F0EEE8;
  --fg-muted: #8A8D94;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(240, 238, 232, 0.08);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ──────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.03em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  padding: 100px 40px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(245,166,35,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 820px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label { font-size: 13px; color: var(--fg-muted); }
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SECTION SHARED ───────────────────────── */
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* ── HOW ──────────────────────────────────── */
.how {
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}
.how-header {
  margin-bottom: 56px;
  max-width: 560px;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 28px 32px;
  transition: background 0.2s, border-color 0.2s;
}
.how-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(245,166,35,0.2);
}
.how-icon {
  margin-bottom: 16px;
  display: inline-flex;
}
.how-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.how-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── OUTCOMES ──────────────────────────────── */
.outcomes {
  padding: 80px 40px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.outcomes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
}
.outcomes-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: 20px;
}
.outcomes-metrics {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: var(--bg);
}
.metric-label { font-size: 14px; color: var(--fg-muted); }
.metric-value {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}

/* ── NICHES ────────────────────────────────── */
.niches {
  padding: 80px 40px;
}
.niches-header { margin-bottom: 48px; max-width: 560px; }
.niches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.niche-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
}
.niche-icon { margin-bottom: 14px; }
.niche-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.niche-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.55; }

/* ── PROCESS ───────────────────────────────── */
.process {
  padding: 80px 40px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.process-header { margin-bottom: 56px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.step p { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }

/* ── CLOSING ───────────────────────────────── */
.closing {
  padding: 100px 40px;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(245,166,35,0.05) 0%, transparent 60%);
}
.closing-inner { max-width: 680px; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── FOOTER ────────────────────────────────── */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
}
.footer-sub { font-size: 13px; color: var(--fg-muted); }
.footer-copy { font-size: 12px; color: var(--fg-muted); }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 60px; }
  .hero-headline { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .how { padding: 60px 24px; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .outcomes { padding: 60px 24px; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 40px; }
  .niches { padding: 60px 24px; }
  .niches-grid { grid-template-columns: 1fr 1fr; }
  .process { padding: 60px 24px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .closing { padding: 60px 24px; }
  .closing-headline { font-size: 28px; }
  .footer { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .how-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}