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

:root {
  --navy: #0d1f3c;
  --navy-light: #162f57;
  --amber: #f59e0b;
  --amber-light: #fbbf24;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

body {
  font-family: var(--sans);
  background: var(--off-white);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 31, 60, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}

/* HERO */
.hero {
  background: var(--navy);
  padding: 96px 32px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,158,11,0.4), transparent);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 88px);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 20px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
  width: fit-content;
}
.stat {
  padding: 28px 40px;
}
.stat-value {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.12);
}

/* MANIFESTO */
.manifesto {
  background: var(--navy-light);
  padding: 80px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.manifesto-inner {
  max-width: 700px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}
.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
  border-left: 3px solid var(--amber);
  padding-left: 28px;
}

/* FEATURES */
.features {
  padding: 96px 32px;
  background: var(--off-white);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  max-width: 600px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature {
  background: var(--white);
  padding: 40px 36px;
  border: 1px solid var(--gray-100);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 24px;
}
.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.feature-desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* DIFFERENTIATORS */
.differentiators {
  padding: 96px 32px;
  background: var(--navy);
}
.diff-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.differentiators .section-title {
  color: var(--white);
  margin-bottom: 48px;
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.diff-col {
  padding: 48px 44px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.diff-col--highlighted {
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.25);
}
.diff-col-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.diff-list li {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  padding-left: 20px;
  position: relative;
}
.diff-col--highlighted .diff-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
}
.diff-col:not(.diff-col--highlighted) .diff-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}

/* OUTCOMES */
.outcomes {
  padding: 80px 32px;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-300);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.outcome {
  text-align: center;
}
.outcome-number {
  display: block;
  font-family: var(--serif);
  font-size: 56px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
}
.outcome-label {
  display: block;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  background: var(--amber);
  padding: 96px 32px;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-text {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

/* FOOTER */
.footer {
  background: var(--navy);
  padding: 48px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  display: block;
}
.footer-note {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-headline { font-size: 44px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }
  .stat { padding: 24px 28px; }
  .feature-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .outcome-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .manifesto-text { font-size: 20px; }
}