:root {
  --bg: #0B1628;
  --surface: #111E33;
  --surface-alt: #162540;
  --fg: #F0F4FF;
  --fg-muted: #8899AA;
  --accent: #F5A623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(240, 244, 255, 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; }

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

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tag {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
.hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 600;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 460px;
}
.hero-proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.proof-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  font-weight: 600;
}
.proof-stat {
  margin-bottom: 20px;
}
.proof-stat:last-of-type { margin-bottom: 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-desc {
  font-size: 13px;
  color: var(--fg-muted);
}
.proof-note {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* Metrics */
.metrics {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.metrics-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.metric-icon {
  margin-bottom: 16px;
}
.metric-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.metric-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Process */
.process {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}
.section-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 600;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 48px;
  letter-spacing: -0.5px;
  max-width: 520px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 20px;
}
.step-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Outcomes */
.outcomes {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}
.outcome-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.outcome-card:last-child { margin-bottom: 0; }
.outcome-image-wrap {
  overflow: hidden;
  height: 200px;
}
.outcome-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.outcome-content {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.outcome-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.outcome-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.4;
}
.outcome-stats {
  display: flex;
  gap: 32px;
}
.outcome-stat {}
.o-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.o-stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Manifesto */
.manifesto {
  padding: 80px 0;
  background: var(--surface);
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  max-width: 700px;
  line-height: 1.2;
}
.manifesto-body {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.manifesto-stats {
  display: flex;
  gap: 48px;
}
.m-stat {}
.m-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.m-label {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Footer */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.footer-contact {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .metrics-inner { grid-template-columns: 1fr; gap: 32px; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .outcome-card { grid-template-columns: 1fr; }
  .outcome-image-wrap { height: 160px; }
  .outcome-stats { gap: 20px; }
  .manifesto-stats { gap: 32px; flex-wrap: wrap; }
  .hero { padding: 56px 0 48px; }
  .manifesto-headline { font-size: 26px; }
}