:root {
  --bg: #0E0A12;
  --bg-surface: #15101C;
  --bg-elevated: #1C1426;
  --fg: #F2EBE1;
  --fg-muted: #9A8FA6;
  --accent: #C9A96E;
  --accent-dim: rgba(201,169,110,0.15);
  --blush: #E8D5C4;
  --border: rgba(201,169,110,0.12);
}

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

html { scroll-behavior: smooth; }

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

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(14,10,18,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.25rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
  font-weight: 300;
}

/* Hero visual */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
}
.ring-1 { width: 280px; height: 280px; animation: spin 20s linear infinite; }
.ring-2 { width: 200px; height: 200px; border-color: rgba(201,169,110,0.2); animation: spin 14s linear infinite reverse; }
.ring-3 { width: 120px; height: 120px; border-color: rgba(232,213,196,0.15); animation: spin 8s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.visual-core {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 50%;
}
.visual-label {
  position: absolute;
  font-size: 0.7rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.label-top { top: 0; left: 50%; transform: translate(-50%, -8px); }
.label-right { right: 0; top: 50%; transform: translate(8px, -50%); }
.label-bottom { bottom: 0; left: 50%; transform: translate(-50%, 8px); }

/* Proof */
.proof {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.proof-stat {
  text-align: center;
  padding: 0 2rem;
}
.stat-number {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.4;
  font-weight: 300;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* Playbook */
.playbook {
  padding: 7rem 2rem;
}
.playbook-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}
.section-heading {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pillar {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
}
.pillar-icon {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.pillar-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.4rem;
  color: var(--fg);
  margin-bottom: 1rem;
}
.pillar-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Manifesto */
.manifesto {
  padding: 7rem 2rem;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.manifesto-quote {
  font-family: 'Instrument Serif', serif;
  font-size: 1.3rem;
  color: var(--blush);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.manifesto-attribution {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.manifesto-body .section-heading {
  margin-bottom: 1.5rem;
}
.manifesto-text {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

/* Closing */
.closing {
  padding: 7rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  font-weight: 300;
}
.closing-visual {
  margin-top: 2rem;
}
.cv-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.cv-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 0.4rem 0.8rem;
  font-weight: 500;
}
.cv-caption {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.1rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 300;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .proof-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .proof-divider { display: none; }
  .proof-stat { padding: 1rem 0; }
  .pillar-grid { grid-template-columns: 1fr; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}