/* === BASE === */
:root {
  --bg: #0D0D12;
  --bg-alt: #13131A;
  --surface: #1A1A24;
  --border: #2A2A36;
  --fg: #F0EDE6;
  --fg-muted: #8A8A9A;
  --accent: #E8A838;
  --accent-dim: rgba(232,168,56,0.12);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Instrument Sans', system-ui, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,18,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === SECTION BASE === */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 500;
}
.section-heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  color: var(--fg);
}

/* === HERO === */
.hero {
  padding: 6rem 2rem 5rem;
  background: var(--bg);
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* === ORBIT GRAPHIC === */
.hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}
.orbit-system {
  position: relative;
  width: 320px;
  height: 320px;
}
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 32px rgba(232,168,56,0.4), 0 0 80px rgba(232,168,56,0.15);
  animation: pulse-glow 3s ease-in-out infinite;
}
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(232,168,56,0.18);
}
.orbit-ring-1 { width: 140px; height: 140px; animation: spin 12s linear infinite; }
.orbit-ring-2 { width: 220px; height: 220px; animation: spin 20s linear infinite reverse; }
.orbit-ring-3 { width: 300px; height: 300px; border-color: rgba(232,168,56,0.09); animation: spin 28s linear infinite; }
.orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(232,168,56,0.6);
}
.orbit-dot-1 { top: 50%; left: calc(100% - 4px); transform: translateY(-50%); }
.orbit-dot-2 { top: calc(100% - 4px); left: 50%; transform: translateX(-50%); }
.orbit-dot-3 { top: 4px; left: 50%; transform: translateX(-50%); }
.orbit-dot-4 { top: 50%; left: 4px; transform: translateY(-50%); }
.orbit-core-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 0.8rem;
  color: var(--bg);
  font-weight: 400;
  letter-spacing: 0.05em;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 32px rgba(232,168,56,0.4), 0 0 80px rgba(232,168,56,0.15); }
  50% { box-shadow: 0 0 48px rgba(232,168,56,0.6), 0 0 120px rgba(232,168,56,0.25); }
}
@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* === WHAT IT DOES === */
.what-it-does {
  padding: 6rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}
.do-item {
  background: var(--bg-alt);
  padding: 2rem 1.8rem;
  transition: background 0.2s;
}
.do-item:hover { background: var(--surface); }
.do-icon {
  margin-bottom: 1rem;
  display: flex;
}
.do-item h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.do-item p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === PLAYBOOK === */
.playbook {
  padding: 6rem 0;
  background: var(--bg);
}
.playbook-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--border);
  font-weight: 400;
  line-height: 1;
  padding-top: 0.2rem;
}
.step-content h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--fg);
}
.step-content p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === OUTCOMES === */
.outcomes {
  padding: 6rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.outcome {}
.outcome-stat {
  display: block;
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--accent);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.outcome-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}
.outcome-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 7rem 0;
  background: var(--bg);
}
.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 2rem;
  max-width: 760px;
}
.philosophy-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 1rem;
}

/* === CLOSING === */
.closing {
  padding: 6rem 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.closing-line {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2rem;
}
.closing-pricing {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--accent);
}

/* === FOOTER === */
.footer {
  padding: 2rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--fg);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-graphic {
    order: -1;
  }
  .do-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .do-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 50px 1fr; gap: 1rem; }
  .outcome-stat { font-size: 2.8rem; }
  .nav, .footer { padding: 0 1.5rem; }
}