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

:root {
  --midnight: #0D1B2A;
  --navy: #162236;
  --amber: #F5A623;
  --amber-light: #FDBA74;
  --cream: #F8F6F1;
  --cream-dark: #EDE8DF;
  --text-light: #E8E2D9;
  --text-muted: #8A9BB0;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

body {
  font-family: var(--sans);
  background: var(--midnight);
  color: var(--text-light);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 80px 48px 100px;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 62px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  font-weight: 300;
}

/* REC CARD */
.rec-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.rec-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rec-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--amber);
}
.rec-count {
  font-size: 12px;
  color: var(--text-muted);
}
.rec-list {
  padding: 8px 0;
}
.rec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}
.rec-item:last-child { border-bottom: none; }
.rec-item:hover { background: rgba(255,255,255,0.02); }
.rec-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rec-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--amber);
  flex-shrink: 0;
}
.rec-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 3px;
}
.rec-reason {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 240px;
}
.rec-score {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.score-bar {
  width: 64px;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.score-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  border-radius: 2px;
}
.score-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--amber);
  min-width: 24px;
  text-align: right;
}

/* SIGNAL */
.signal {
  background: var(--navy);
  padding: 100px 48px;
}
.signal-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  max-width: 600px;
  margin-bottom: 64px;
}
.signal-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.signal-step {
  display: flex;
  gap: 20px;
}
.step-num {
  font-family: var(--serif);
  font-size: 40px;
  color: rgba(245,166,35,0.25);
  line-height: 1;
  flex-shrink: 0;
}
.step-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.step-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* OUTCOMES */
.outcomes {
  background: var(--cream);
  padding: 100px 48px;
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.outcomes .section-headline {
  color: var(--midnight);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.outcome h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--midnight);
  margin: 16px 0 10px;
}
.outcome p {
  font-size: 15px;
  color: #5A6A7A;
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  background: var(--midnight);
  padding: 100px 48px;
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-headline {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 46px);
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.manifesto-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.manifesto-stat-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.stat {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stat:first-child { padding-top: 0; }
.stat:last-child { border-bottom: none; }
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 48px;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  background: var(--navy);
  padding: 100px 48px;
  text-align: center;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* FOOTER */
.footer {
  background: var(--midnight);
  padding: 40px 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 20px;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}
.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }
  .signal-steps { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer-note { text-align: left; }
}
@media (max-width: 600px) {
  .hero, .signal, .outcomes, .manifesto, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .nav { padding: 20px 24px; }
  .rec-reason { display: none; }
}