:root {
  --bg: #08080a;
  --surface: #111114;
  --surface-alt: #18181c;
  --fg: #e8e4dc;
  --fg-muted: #7a7672;
  --accent: #c4a55a;
  --accent-dim: #8a7240;
  --border: #222226;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-serif);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); }

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(8,8,10,0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}
.nav-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── SHARED EYEBROW ── */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

/* ── MANIFESTO ── */
.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 48px 100px;
  position: relative;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(196,165,90,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto-inner {
  max-width: 900px;
}
.manifesto-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
}
.manifesto-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 32px;
}
.manifesto-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--fg-muted);
  max-width: 620px;
  font-weight: 300;
}

/* ── PRINCIPLE ── */
.principle {
  border-top: 1px solid var(--border);
  padding: 100px 48px;
}
.principle-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
}
.principle-label-col {
  padding-top: 6px;
}
.principle-quote {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  line-height: 1.4;
  margin-bottom: 28px;
  border-left: 1px solid var(--accent-dim);
  padding-left: 24px;
}
.principle-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--fg-muted);
  margin-bottom: 18px;
  font-weight: 300;
}
.principle-body:last-child { margin-bottom: 0; }

/* ── TIERS ── */
.tiers {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
}
.tiers-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 0;
}
.tier-card {
  background: var(--surface);
  padding: 48px 40px;
  position: relative;
}
.tier-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.tier-name {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.tier-desc {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ── OUTCOMES ── */
.outcomes {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.outcomes-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.outcome-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.outcome-row:first-child { border-top: 1px solid var(--border); }
.outcome-marker {
  width: 1px;
  height: 100%;
  min-height: 60px;
  background: var(--accent-dim);
  position: relative;
  margin-top: 4px;
}
.outcome-marker::before {
  content: '';
  position: absolute;
  top: 0; left: -4px;
  width: 9px; height: 9px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}
.outcome-content h4 {
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.outcome-content p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--fg-muted);
  font-weight: 300;
  max-width: 640px;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 48px 140px;
  border-top: 1px solid var(--border);
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.closing::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--accent-dim), transparent);
}
.closing-statement {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--fg);
  max-width: 780px;
  margin: 0 auto 28px;
  letter-spacing: -0.01em;
}
.closing-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 48px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.footer-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  opacity: 0.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-nav { padding: 16px 24px; }
  .manifesto { padding: 120px 24px 80px; }
  .principle-inner { grid-template-columns: 1fr; gap: 32px; }
  .principle { padding: 72px 24px; }
  .tiers { padding: 72px 24px; }
  .tiers-grid { grid-template-columns: 1fr; }
  .outcomes { padding: 72px 24px; }
  .closing { padding: 80px 24px 100px; }
  .site-footer { padding: 20px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
  .manifesto-headline { font-size: 1.9rem; }
  .tier-card { padding: 32px 24px; }
  .outcome-row { grid-template-columns: 32px 1fr; }
}