:root {
  --bg: #FAF7F2;
  --ink: #1A1A2E;
  --ink-light: #4A4A5E;
  --accent: #D97706;
  --accent-dark: #B56206;
  --mastery: #4A7C59;
  --mastery-light: #6B8F71;
  --border: #E8E0D0;
  --muted: #A09888;
  --card-bg: #F3EEE5;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* Hero */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-light);
  line-height: 1.55;
  max-width: 380px;
}
.hero-graph {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-graph svg {
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 8px 32px rgba(26,26,46,0.12));
}
.graph-caption {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* The Map */
.themap {
  background: var(--ink);
  padding: 80px 32px;
}
.themap-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.themap-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.themap-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: #FAF7F2;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.themap-body {
  font-size: 17px;
  color: #A09888;
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.themap-chain {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.chain-node {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  border: 1px solid rgba(217,119,6,0.4);
  color: #FAF7F2;
  border-radius: 2px;
}
.chain-node.active {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
  font-weight: 600;
}
.chain-arrow {
  color: var(--accent);
  font-weight: 300;
  font-size: 18px;
}
.themap-sub {
  font-size: 12px;
  color: #6A6058;
  letter-spacing: 0.04em;
}

/* Voices */
.voices {
  padding: 80px 32px;
}
.voices-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.voices-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.voices-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.voices-body {
  font-size: 17px;
  color: var(--ink-light);
  margin-bottom: 40px;
}
.voices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.voice-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 2px;
}
.voice-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.voice-desc {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.5;
}

/* Mastery */
.mastery {
  padding: 80px 32px;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mastery-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.mastery-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mastery);
  margin-bottom: 20px;
}
.mastery-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.mastery-body {
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.65;
  margin-bottom: 12px;
}
.mastery-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mastery-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 20px 24px;
  border-radius: 2px;
}
.mastery-card.muted { opacity: 0.65; }
.mastery-node {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 10px;
}
.mastery-bar-track {
  background: var(--border);
  height: 4px;
  border-radius: 2px;
  margin-bottom: 8px;
}
.mastery-bar {
  height: 4px;
  background: var(--mastery);
  border-radius: 2px;
}
.mastery-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
.mastery-score { color: var(--mastery); font-weight: 600; }
.mastery-next { color: var(--muted); }
.mastery-progress {
  display: flex;
  gap: 4px;
  margin-top: 10px;
}
.progress-node {
  width: 32px;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
}
.progress-node.done { background: var(--mastery); }
.progress-node.active { background: var(--mastery-light); }

/* Ownership */
.ownership {
  padding: 64px 32px;
}
.ownership-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.ownership-rule {
  height: 1px;
  background: var(--border);
  margin-bottom: 40px;
}
.ownership-rule:last-child { margin-bottom: 0; margin-top: 40px; }
.ownership-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.ownership-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.ownership-body {
  font-size: 17px;
  color: var(--ink-light);
  line-height: 1.65;
  margin-bottom: 12px;
}

/* Manifesto */
.manifesto {
  background: var(--ink);
  padding: 96px 32px;
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-text {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
  color: #FAF7F2;
  line-height: 1.4;
  margin-bottom: 20px;
}
.manifesto-attribution {
  font-size: 13px;
  color: #6A6058;
}

/* Footer */
.footer {
  padding: 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--ink);
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 40px;
  }
  .hero-title { font-size: 40px; }
  .themap-title, .voices-title, .mastery-title { font-size: 32px; }
  .mastery-inner { grid-template-columns: 1fr; gap: 40px; }
  .ownership-title { font-size: 36px; }
  .manifesto-text { font-size: 22px; }
  .themap, .voices, .mastery { padding: 56px 24px; }
}