:root {
  --midnight: #0B1F3A;
  --deep-navy: #0A1628;
  --gold: #D4A843;
  --gold-light: #E8C06A;
  --cream: #F8F4EE;
  --warm-white: #FDFBF8;
  --ink: #1A1A2E;
  --muted: #6B7A8D;
  --border: rgba(212, 168, 67, 0.2);
  --border-subtle: rgba(255,255,255,0.07);
}

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

body {
  background: var(--deep-navy);
  color: var(--cream);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.nav-tagline {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Manifesto ── */
.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 32px 100px;
  background: linear-gradient(160deg, var(--midnight) 0%, var(--deep-navy) 100%);
  position: relative;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background: radial-gradient(ellipse at 70% 30%, rgba(212,168,67,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.manifesto-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.manifesto-headline {
  font-size: clamp(38px, 5.5vw, 72px);
  color: var(--warm-white);
  margin-bottom: 32px;
  font-style: italic;
}
.manifesto-sub {
  font-size: 18px;
  color: rgba(248,244,238,0.75);
  max-width: 700px;
  margin-bottom: 20px;
  font-weight: 300;
}
.manifesto-sub--accent {
  color: var(--cream);
  font-size: 19px;
  font-weight: 400;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-left: -27px;
}
.manifesto-nucleus {
  margin-top: 40px;
  margin-left: -27px;
  padding: 20px 24px;
  background: rgba(212,168,67,0.06);
  border: 1px solid var(--border);
  border-radius: 4px;
  max-width: 680px;
}
.nucleus-label {
  font-size: 14px;
  color: rgba(248,244,238,0.6);
  font-style: italic;
}
.nucleus-label em {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
}

/* ── System ── */
.system {
  padding: 100px 32px;
  background: var(--midnight);
  border-top: 1px solid var(--border-subtle);
}
.system-inner { max-width: 1100px; margin: 0 auto; }
.section-heading {
  font-size: clamp(26px, 3vw, 38px);
  color: var(--warm-white);
  margin-bottom: 56px;
  font-weight: 400;
}
.forces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}
.force-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-subtle);
  padding: 48px 40px;
  position: relative;
}
.force-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 20px;
}
.force-title {
  font-size: 22px;
  color: var(--warm-white);
  margin-bottom: 16px;
  font-weight: 600;
}
.force-desc {
  font-size: 15px;
  color: rgba(248,244,238,0.6);
  line-height: 1.7;
  font-weight: 300;
}

/* ── Principles ── */
.principles {
  padding: 100px 32px;
  background: var(--deep-navy);
  border-top: 1px solid var(--border-subtle);
}
.principles-inner { max-width: 1100px; margin: 0 auto; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-subtle);
}
.value-item {
  background: var(--deep-navy);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.value-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold-light);
  font-weight: 600;
}
.value-arrow {
  font-size: 14px;
  color: rgba(212,168,67,0.4);
  line-height: 1;
}
.value-shadow {
  font-size: 14px;
  color: rgba(248,244,238,0.35);
  font-style: italic;
}
.value-desc {
  font-size: 14px;
  color: rgba(248,244,238,0.55);
  margin-top: 6px;
  font-weight: 300;
  line-height: 1.6;
}

/* ── Compass ── */
.compass-section {
  padding: 100px 32px;
  background: var(--midnight);
  border-top: 1px solid var(--border-subtle);
}
.compass-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.compass-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.compass-title {
  font-size: clamp(30px, 4vw, 52px);
  color: var(--warm-white);
  margin-bottom: 28px;
}
.compass-desc {
  font-size: 17px;
  color: rgba(248,244,238,0.65);
  margin-bottom: 16px;
  font-weight: 300;
  line-height: 1.75;
}
.compass-waitlist {
  margin-top: 36px;
  padding: 18px 28px;
  border: 1px solid var(--border);
  display: inline-block;
}
.waitlist-note {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

/* ── Author ── */
.author {
  padding: 100px 32px;
  background: var(--deep-navy);
  border-top: 1px solid var(--border-subtle);
}
.author-inner { max-width: 700px; margin: 0 auto; }
.author-bio p {
  font-size: 16px;
  color: rgba(248,244,238,0.65);
  margin-bottom: 16px;
  line-height: 1.75;
  font-weight: 300;
}
.author-bio strong { color: var(--cream); font-weight: 600; }

/* ── Closing ── */
.closing-section {
  padding: 100px 32px;
  background: var(--midnight);
  border-top: 1px solid var(--border-subtle);
}
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.2vw, 24px);
  color: rgba(248,244,238,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 400;
  font-style: italic;
}

/* ── Footer ── */
.site-footer {
  padding: 48px 32px;
  background: var(--deep-navy);
  border-top: 1px solid var(--border-subtle);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--gold);
}
.footer-meta {
  font-size: 13px;
  color: rgba(248,244,238,0.3);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .manifesto { padding: 120px 24px 80px; }
  .manifesto-sub--accent { margin-left: 0; border-left: none; padding-left: 0; }
  .manifesto-nucleus { margin-left: 0; }
  .values-grid { grid-template-columns: 1fr; }
  .force-card { padding: 36px 28px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}