:root {
  --bg: #F7F3EE;
  --bg-alt: #EDE8E1;
  --fg: #0B1F3A;
  --fg-muted: #5A6A7E;
  --accent: #E8913A;
  --accent-dark: #C67A22;
  --navy: #0B1F3A;
  --cream: #F7F3EE;
  --border: rgba(11, 31, 58, 0.12);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 243, 238, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 80px 32px 64px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ORBIT VISUAL */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit {
  position: relative;
  width: 280px;
  height: 280px;
}
.orbit-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--navy);
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--accent), 0 0 40px rgba(232, 145, 58, 0.3);
}
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid var(--border);
}
.orbit-ring-1 { width: 140px; height: 140px; }
.orbit-ring-2 { width: 220px; height: 220px; border-style: dashed; }
.orbit-node {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
}
.orbit-node-1 { top: 12px; left: 50%; transform: translateX(-50%); }
.orbit-node-2 { bottom: 12px; left: 50%; transform: translateX(-50%); background: var(--navy); }
.orbit-node-3 { top: 50%; right: 12px; transform: translateY(-50%); }
.orbit-node-4 { top: 50%; left: 12px; transform: translateY(-50%); background: var(--navy); }

/* STATS */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 48px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 48px;
}

/* PILLARS */
.pillars {
  background: var(--navy);
  padding: 80px 32px;
}
.pillars-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.pillar {}
.pillar-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 145, 58, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 10px;
}
.pillar-desc {
  font-size: 15px;
  color: rgba(247, 243, 238, 0.6);
  line-height: 1.65;
}

/* PLAYBOOK */
.playbook {
  padding: 80px 32px;
  background: var(--bg-alt);
}
.playbook-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.playbook-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--navy);
  line-height: 1.1;
  margin: 16px 0 24px;
  letter-spacing: -0.02em;
}
.playbook-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 400px;
}
.cycle-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cycle {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.cycle:first-child { padding-top: 0; }
.cycle-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--accent);
  font-style: italic;
  min-width: 28px;
  padding-top: 2px;
}
.cycle-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.cycle-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* CLOSING */
.closing {
  padding: 96px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.closing-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--navy);
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.closing-quote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  color: var(--fg-muted);
  margin-top: 16px;
}
.closing-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 640px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
}
.footer-desc { font-size: 13px; color: var(--fg-muted); }
.footer-meta { font-size: 13px; color: var(--fg-muted); }
.footer-sep { margin: 0 8px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .pillars-grid { grid-template-columns: 1fr; gap: 32px; }
  .playbook-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 48px 24px 40px; }
  .hero-stats { gap: 0; }
  .stat { padding-right: 24px; }
  .stat-divider { margin-right: 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}