/* ═══════════════════════════════════════════════════════════════
   AI Frame Problem — Shared Stylesheet
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg:         #0c0c12;
  --surface:    #131320;
  --card:       #191926;
  --border:     #252535;
  --border-hi:  #3a3a55;
  --ink:        #e4e0d8;
  --ink-soft:   #9a9488;
  --ink-muted:  #555060;
  --max:        1140px;

  --amber:   #d4892a;
  --red:     #c43030;
  --blue:    #4a82c4;
  --green:   #3d8a52;
  --teal:    #18b09a;
  --violet:  #7a52c4;
  --rose:    #c4457a;
  --crimson: #8c1f1f;
  --olive:   #6b8c2a;
  --steel:   #3d6fa8;
  --bronze:  #a86030;
  --indigo:  #4535a8;
  --sea:     #1a9090;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
a { color: inherit; text-decoration: none; }

/* ── Typography ───────────────────────────── */
.serif { font-family: "Fraunces", Georgia, serif; }
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 28px;
}
h2.section-title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
h2.section-title em {
  font-style: italic;
  font-variation-settings: "SOFT" 80;
}
.section-lede {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 680px;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* ── Hero ─────────────────────────────────── */
header.hero {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 80% 60% at 50% -10%, #1c1c30 0%, var(--bg) 70%);
}
.hero-inner { max-width: 800px; }
h1.hero-title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
h1.hero-title em {
  font-style: italic;
  color: var(--ink-soft);
  font-variation-settings: "SOFT" 80, "WONK" 1;
}
.hero-situation {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 660px;
  margin-bottom: 40px;
}
.hero-situation strong { color: var(--ink); font-weight: 500; }
.hero-meta {
  font-size: 13px;
  color: var(--ink-muted);
}
.hero-meta a { border-bottom: 1px solid var(--border-hi); transition: color .15s; }
.hero-meta a:hover { color: var(--ink-soft); }

/* ── Page header (inner pages) ───────────── */
header.page-header {
  padding: 64px 0 52px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 60% 80% at 50% -20%, #1a1a2e 0%, var(--bg) 70%);
}
.page-header-inner { max-width: 680px; }
h1.page-title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
h1.page-title em {
  font-style: italic;
  color: var(--ink-soft);
  font-variation-settings: "SOFT" 80, "WONK" 1;
}
.page-lede {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 580px;
}

/* ── Sticky nav ───────────────────────────── */
nav.sitenav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 12, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.sitenav-inner {
  display: flex;
  gap: 0;
  align-items: stretch;
  height: 50px;
  overflow-x: auto;
  scrollbar-width: none;
}
.sitenav-inner::-webkit-scrollbar { display: none; }
.sitenav-inner a {
  display: flex;
  align-items: center;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.sitenav-inner a:hover { color: var(--ink); }
.sitenav-inner a.active { color: var(--ink); border-bottom-color: var(--ink-soft); }
.nav-brand {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-muted) !important;
  border-right: 1px solid var(--border);
  padding-right: 20px !important;
  margin-right: 4px;
  letter-spacing: -0.01em;
}
.nav-brand:hover { color: var(--ink-soft) !important; border-bottom-color: transparent !important; }

/* ── Sections ─────────────────────────────── */
section { padding: 88px 0; border-bottom: 1px solid var(--border); }
section:last-child { border-bottom: none; }

/* ── Race / Now fact blocks ───────────────── */
.race-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
}
.race-fact {
  background: var(--card);
  padding: 28px 32px;
}
.race-fact .stat {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.race-fact .stat-label {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.race-body {
  max-width: 720px;
}
.race-body p {
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.75;
}
.race-body p:last-child { margin-bottom: 0; }
.race-body p strong { color: var(--ink); font-weight: 500; }
.race-loop {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 40px 0;
  overflow-x: auto;
  padding-bottom: 4px;
}
.race-loop-node {
  flex: 0 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
}
.race-loop-arrow {
  flex: 0 0 auto;
  color: var(--ink-muted);
  padding: 0 6px;
  font-size: 16px;
}

/* ── Paths (Mostaque framework) ───────────── */
.paths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.path-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.path-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.path-feudalism::before    { background: var(--red); }
.path-fragmentation::before { background: var(--amber); }
.path-symbiosis::before    { background: var(--green); }
.path-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.path-title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.path-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ── Horizon split ────────────────────────── */
.horizon-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px) {
  .horizon-split { grid-template-columns: 1fr; gap: 32px; }
}
.horizon-col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.pdoom-stack { display: flex; flex-direction: column; gap: 20px; }
.pdoom-row { display: flex; gap: 14px; align-items: flex-start; }
.pdoom-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.pdoom-body { flex: 1; }
.pdoom-name { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.pdoom-bar-wrap {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 6px;
  overflow: hidden;
}
.pdoom-bar { height: 100%; border-radius: 2px; }
.pdoom-note { font-size: 12px; line-height: 1.55; color: var(--ink-soft); }
.counter-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
}
.thinker-zone-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zc);
  border: 1px solid var(--zc);
  border-radius: 999px;
  padding: 2px 10px;
  margin-bottom: 12px;
  opacity: 0.8;
}

/* ── Frames section ───────────────────────── */
.frames-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  align-items: center;
}
.frames-filter-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-right: 4px;
}
.thinker-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all .15s;
  user-select: none;
}
.thinker-chip:hover { border-color: var(--border-hi); color: var(--ink); }
.thinker-chip.active { color: var(--ink); }
.thinker-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0;
}
.filter-clear {
  font-size: 12px;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: color .15s;
}
.filter-clear:hover { color: var(--ink-soft); }
.frames-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.frame-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, opacity .2s;
  position: relative;
  overflow: hidden;
}
.frame-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
  transition: background .2s;
}
.frame-card.highlighted { border-color: var(--border-hi); }
.frame-card.highlighted::before { background: var(--highlight-color, var(--ink-muted)); }
.frame-card.dimmed { opacity: 0.35; }
.frame-number {
  font-family: "Fraunces", serif;
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 10px;
  font-weight: 300;
}
.frame-title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.frame-row { margin-bottom: 14px; }
.frame-row-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.frame-row p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.frame-thinkers {
  display: flex;
  gap: 6px;
  margin-top: auto;
  padding-top: 20px;
}
.frame-thinker-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
}

/* ── Section opener (large display statement) */
.section-opener {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  max-width: 660px;
  margin-bottom: 20px;
  font-variation-settings: "SOFT" 60;
}

/* ── Testimony cards (Now section) ───────── */
.testimony-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
}
.testimony {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 28px;
}
.testimony-attribution {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.testimony-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0;
}
.testimony-meta { flex: 1; }
.testimony-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.testimony-source {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 1px;
}
.testimony-finding {
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink-soft);
}
.testimony-finding strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

/* ── Thinkers section ─────────────────────── */
.thinkers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}
.thinker-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .15s;
}
.thinker-card:hover { border-color: var(--border-hi); }
.thinker-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 120px; height: 120px;
  border-radius: 50%;
  opacity: 0.05;
  background: var(--thinker-color);
  transform: translate(30%, 30%);
}
.thinker-avatar-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.thinker-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.thinker-id { flex: 1; }
.thinker-name {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.thinker-role {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 2px;
}
.thinker-podcast {
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.thinker-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}
.thinker-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 500;
  font-family: inherit;
  padding: 5px 12px;
  cursor: pointer;
  margin-bottom: 0;
  transition: color .15s, border-color .15s;
  display: inline-block;
}
.thinker-toggle:hover {
  color: var(--ink-soft);
  border-color: var(--border-hi);
}
.thinker-stance {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 0;
  margin-top: 14px;
  display: none;
}
.thinker-stance.visible {
  display: block;
  margin-bottom: 18px;
}
.thinker-quote {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  border-left: 2px solid var(--border-hi);
  padding-left: 16px;
  margin-bottom: 18px;
  font-weight: 300;
}
.thinker-frames-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.thinker-frame-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink-muted);
  font-weight: 500;
}
.thinker-pdoom {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 4px;
}
.thinker-pdoom strong { color: var(--ink-soft); }

/* ── Tensions section ─────────────────────── */
.tensions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(520px, 1fr));
  gap: 16px;
}
@media (max-width: 600px) {
  .tensions-grid { grid-template-columns: 1fr; }
}
.tension-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.tension-header {
  padding: 22px 28px 18px;
  border-bottom: 1px solid var(--border);
}
.tension-title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.tension-sides {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.tension-side {
  padding: 22px 24px;
  position: relative;
}
.tension-side:first-child { border-right: 1px solid var(--border); }
.tension-side-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.tension-side-thinker {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 10px;
}
.tension-side p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ── Footing section ──────────────────────── */
.footing-body { max-width: 720px; }
.footing-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.footing-body p strong { color: var(--ink); font-weight: 500; }
.footing-questions {
  margin: 48px 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.footing-question {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-variation-settings: "SOFT" 60;
}
.footing-question:last-child { border-bottom: none; }
.footing-close {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-muted);
  max-width: 640px;
  margin-top: 40px;
}

/* ── About page ───────────────────────────── */
.about-body { max-width: 720px; }
.about-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.about-body p:last-child { margin-bottom: 0; }
.about-body p strong { color: var(--ink); font-weight: 500; }
.about-section-head {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  margin-top: 56px;
  color: var(--ink);
}
.about-section-head:first-of-type { margin-top: 0; }
.about-callout {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 40px 0;
}
.about-callout p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 0;
}
.about-callout p strong { color: var(--ink); font-weight: 500; }
.about-sources {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin: 32px 0;
}
.about-source {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
}
.about-source-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}
.about-source-role {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.4;
}

/* ── Footer ───────────────────────────────── */
footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  font-family: "Fraunces", serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-muted);
}
.footer-brand em { font-style: italic; }
.footer-link {
  font-size: 13px;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--border-hi);
  transition: color .15s;
}
.footer-link:hover { color: var(--ink-soft); }

/* ── Horizon Spectrum ─────────────────────── */
.spectrum-wrap {
  margin-top: 48px;
}
.spectrum-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}
.spectrum-label-left,
.spectrum-label-right {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.spectrum-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
}
.spectrum-track {
  position: relative;
  height: 210px;
  min-width: 720px;
}
.spectrum-axis {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--crimson) 0%, var(--border-hi) 50%, var(--rose) 100%);
  opacity: 0.5;
}
.spectrum-node {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 108px;
}
.spectrum-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.spectrum-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  margin-top: 10px;
  line-height: 1.3;
}
.spectrum-pdoom {
  font-size: 11px;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 3px;
  font-variant-numeric: tabular-nums;
}
.spectrum-quote {
  font-size: 11px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 6px;
  font-style: italic;
  font-family: "Fraunces", serif;
  line-height: 1.4;
}
.spectrum-bridge {
  margin-top: 36px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  max-width: 640px;
}
.spectrum-bridge p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-top: 6px;
}
.spectrum-bridge strong {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ── Footing CTA cards ────────────────────── */
.footing-ctas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0 36px;
}
.footing-cta {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  transition: border-color .2s, background .2s;
  text-decoration: none;
}
.footing-cta:hover {
  border-color: var(--border-hi);
  background: var(--surface);
}
.footing-cta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.footing-cta-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}
.footing-cta-arrow {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  header.hero { padding: 60px 0 52px; }
  header.page-header { padding: 48px 0 40px; }
  section { padding: 60px 0; }
  .tension-sides { grid-template-columns: 1fr; }
  .tension-side:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .frames-grid { grid-template-columns: 1fr; }
  .thinkers-grid { grid-template-columns: 1fr; }
  .tensions-grid { grid-template-columns: 1fr; }
  .footing-ctas { grid-template-columns: 1fr; }
}
