/* ═══════════════════════════════════════════════════
   HORIZON 2040 — Page Styles
   horizon2040.html — mandavkar.uk
   Four structural macro theses · Interactive research dossier
═══════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  /* Page-specific status palette (semantic colors not in tokens.css) */
  --amber:     oklch(0.62 0.13 60);
  --amber-bg:  color-mix(in srgb, var(--amber) 8%, transparent);
  --amber-br:  color-mix(in srgb, var(--amber) 22%, transparent);
  --red:       oklch(0.45 0.16 25);
  --red-bg:    color-mix(in srgb, var(--red) 8%, transparent);
  --red-br:    color-mix(in srgb, var(--red) 22%, transparent);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
p { text-align: justify; }
strong { color: var(--text); font-weight: 600; }
.hz-thesis-section--dark strong { color: var(--dark-text); }
::selection { background: rgba(47,72,88,0.12); color: var(--text); }

/* ── Reading Progress Bar ── */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: var(--teal);
  z-index: 300;
  transition: width 0.08s linear;
}

/* ═══════════════════════════════════════
   NAV  (dark-themed — hero is dark)
═══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 0;
  background: rgba(20, 20, 20, 0.92);
  border-bottom: 1px solid var(--dark-border);
  transition: padding 0.35s ease, background 0.35s ease;
}
#nav.scrolled { padding: 14px 0; }
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-text);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--ochre); }
.nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-dim);
  letter-spacing: 0.2px;
  transition: color var(--duration-fast);
}
.nav-links a:hover { color: var(--dark-text); }
.nav-links a.nav-active { color: var(--ochre); }
.nav-cta {
  background: var(--teal) !important;
  color: white !important;
  padding: 9px 20px !important;
  font-size: 13px !important;
  border: 1px solid var(--teal) !important;
  border-radius: 4px;
  transition: background var(--duration-fast) !important;
}
.nav-cta:hover { background: var(--accent) !important; border-color: var(--accent) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark-text);
  transition: background var(--duration-normal);
}

/* ═══════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--accent);
  z-index: 250;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close {
  position: absolute;
  top: 28px; right: 32px;
  background: none;
  border: none;
  font-size: 24px;
  color: color-mix(in srgb, var(--white) 60%, transparent);
  cursor: pointer;
}
.mobile-close:hover { color: white; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin-bottom: 28px; }
.mobile-menu a {
  font-family: 'Fraunces', serif;
  font-size: 42px;
  font-weight: 700;
  color: color-mix(in srgb, var(--white) 90%, transparent);
  letter-spacing: -1px;
  transition: color var(--duration-fast);
}
.mobile-menu a:hover { color: white; }

/* ═══════════════════════════════════════
   SHARED LAYOUT HELPERS
═══════════════════════════════════════ */
.hz-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}
.hz-section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark-dim);
  display: block;
  margin-bottom: 14px;
}
.hz-section-label--light { color: var(--subtle); }
.hz-section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 16px;
}
.hz-section-title--dark  { color: var(--dark-text); }
.hz-section-title--light { color: var(--text); }
.hz-section-body {
  font-size: 16px;
  line-height: 1.72;
  max-width: 700px;
  margin-bottom: 40px;
}
.hz-section-body--dark  { color: var(--dark-dim); }
.hz-section-body--light { color: var(--dim); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hz-hero {
  background: var(--dark);
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
/* Dot grid */
.hz-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
/* Teal glow orb */
.hz-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 78% 50%, rgba(0,95,115,0.22) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hz-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hz-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark-dim);
  display: block;
  margin-bottom: 24px;
}
.hz-hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  color: var(--dark-text);
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 24px;
}
.hz-hero-title em {
  font-style: italic;
  color: var(--ochre);
}
.hz-hero-sub {
  font-size: 18px;
  color: var(--dark-dim);
  max-width: 600px;
  line-height: 1.72;
  margin-bottom: 56px;
}

/* Impact stats row */
.hz-impact-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--dark-border);
  margin-bottom: 48px;
  max-width: 820px;
}
.hz-impact-stat {
  flex: 1;
  padding: 22px 24px;
  border-inline-end: 1px solid var(--dark-border);
}
.hz-impact-stat:last-child { border-inline-end: none; }
.hz-impact-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--dark-text);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.hz-impact-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--white) 55.00000000000001%, transparent);
  line-height: 1.4;
  display: block;
}

/* Hero pullquote */
.hz-hero-quote {
  max-width: 640px;
  border-inline-start: 2px solid var(--ochre);
  padding: 14px 20px;
  margin-bottom: 40px;
  background: rgba(45,212,191,0.04);
}
.hz-hero-quote p {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: var(--dark-text);
  line-height: 1.65;
  letter-spacing: -0.01em;
}
.hz-hero-cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--dark-dim);
  display: inline-block;
  transition: color var(--duration-fast);
  cursor: pointer;
}
.hz-hero-cta:hover { color: var(--dark-text); }

/* ═══════════════════════════════════════
   SIGNAL INTEGRITY MATRIX
═══════════════════════════════════════ */
.hz-matrix-section {
  background: var(--dark);
  padding: 80px 0;
  border-top: 1px solid var(--dark-border);
}

/* Status badges */
.hz-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  display: inline-block;
  white-space: nowrap;
  border: 1px solid;
  line-height: 1.6;
}
.hz-status--intact      { background: rgba(16,185,129,0.12);  color: #10B981; border-color: rgba(16,185,129,0.25); }
.hz-status--risk        { background: rgba(245,158,11,0.12);  color: #F59E0B; border-color: rgba(245,158,11,0.25); }
.hz-status--compromised { background: rgba(239,68,68,0.10);   color: #EF4444; border-color: rgba(239,68,68,0.22); }
.hz-status--blind       { background: rgba(239,68,68,0.15);   color: #EF4444; border-color: rgba(239,68,68,0.30); }
.hz-status--unpriced    { background: rgba(168,85,247,0.10);  color: #A855F7; border-color: rgba(168,85,247,0.22); }
.hz-status--overstated  { background: rgba(245,158,11,0.10);  color: #F59E0B; border-color: rgba(245,158,11,0.22); }
.hz-status--understated { background: rgba(59,130,246,0.10);  color: #60A5FA; border-color: rgba(59,130,246,0.22); }
.hz-status--distorted   { background: rgba(239,68,68,0.10);   color: #F87171; border-color: rgba(239,68,68,0.22); }
.hz-status--degrading   { background: rgba(239,68,68,0.08);   color: #FCA5A5; border-color: rgba(239,68,68,0.18); }

/* Thesis tags */
.hz-thesis-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding: 3px 8px;
  border-radius: 2px;
  display: inline-block;
  cursor: pointer;
  transition: opacity var(--duration-fast);
  border: 1px solid;
  line-height: 1.6;
}
.hz-thesis-tag:hover { opacity: 0.7; }
.hz-thesis-tag--t01 { background: rgba(168,85,247,0.10);  color: #A855F7; border-color: rgba(168,85,247,0.22); }
.hz-thesis-tag--t02 { background: rgba(59,130,246,0.10);  color: #60A5FA; border-color: rgba(59,130,246,0.22); }
.hz-thesis-tag--t03 { background: rgba(16,185,129,0.10);  color: #10B981; border-color: rgba(16,185,129,0.22); }
.hz-thesis-tag--t04 { background: rgba(245,158,11,0.10);  color: #F59E0B; border-color: rgba(245,158,11,0.22); }

/* Live badge */
.hz-live-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(45,212,191,0.08);
  color: var(--ochre);
  border: 1px solid rgba(45,212,191,0.22);
  margin-inline-start: 6px;
  text-decoration: none;
  transition: background var(--duration-fast);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.6;
}
.hz-live-badge:hover { background: rgba(45,212,191,0.16); }
.hz-live-badge::before { content: '●'; font-size: 5px; animation: hz-pulse 2.5s ease-in-out infinite; }

@keyframes hz-pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

/* Matrix table */
.matrix-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  table-layout: auto;
}
.matrix-table thead tr {
  border-bottom: 1px solid color-mix(in srgb, var(--white) 10%, transparent);
}
.matrix-table thead th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--white) 60%, transparent);
  padding: 0 16px 12px 0;
  font-weight: 400;
  text-align: left;
}
.matrix-table tbody tr {
  border-bottom: 1px solid color-mix(in srgb, var(--white) 5%, transparent);
  cursor: default;
  transition: background 0.18s;
}
.matrix-table tbody tr:hover { background: color-mix(in srgb, var(--white) 4%, transparent); }
.matrix-table tbody td {
  padding: 13px 16px 13px 0;
  vertical-align: middle;
}
.matrix-col-signal {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-text);
  letter-spacing: -0.01em;
  min-width: 180px;
}
.matrix-col-measures {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: color-mix(in srgb, var(--white) 55.00000000000001%, transparent);
  max-width: 160px;
  line-height: 1.5;
}
.matrix-col-failure {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: color-mix(in srgb, var(--white) 57.99999999999999%, transparent);
  max-width: 260px;
  line-height: 1.55;
}
.matrix-col-status { min-width: 140px; white-space: nowrap; }
.matrix-col-thesis  { min-width: 80px; white-space: nowrap; }

/* Matrix footer */
.matrix-footer {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--dark-dim);
  padding-top: 24px;
  border-top: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  line-height: 1.6;
}
.matrix-footer a { color: var(--ochre); }
.matrix-footer a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════
   THESIS NAVIGATION (2×2 grid)
═══════════════════════════════════════ */
.hz-thesis-nav-section {
  background: var(--bg);
  padding: 80px 0;
}
.hz-thesis-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.hz-thesis-nav-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
  display: block;
}
.hz-thesis-nav-card:hover,
.hz-thesis-nav-card:focus {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,95,115,0.08);
  outline: none;
}
.hz-thesis-nav-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 80px;
  font-weight: 800;
  color: var(--border);
  position: absolute;
  top: -10px; right: 20px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.hz-thesis-nav-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 10px;
  display: block;
}
.hz-thesis-nav-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.hz-thesis-nav-claim {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.55;
  margin-bottom: 16px;
}
.hz-thesis-nav-key {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--amber);
}

/* ═══════════════════════════════════════
   THESIS SECTIONS (shared base)
═══════════════════════════════════════ */
.hz-thesis-section {
  padding: 80px 0;
}
.hz-thesis-section--cream { background: var(--bg); }
.hz-thesis-section--sand  { background: var(--bg2); }
.hz-thesis-section--dark  { background: var(--dark); }

.hz-thesis-inner { position: relative; }

/* Big faded background numeral */
.hz-thesis-num-bg {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 200px;
  font-weight: 800;
  position: absolute;
  top: -60px; right: -20px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}
.hz-thesis-section--cream .hz-thesis-num-bg,
.hz-thesis-section--sand  .hz-thesis-num-bg { color: var(--text); opacity: 0.035; }
.hz-thesis-section--dark  .hz-thesis-num-bg { color: white; opacity: 0.035; }

/* Thesis header row */
.hz-thesis-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.hz-thesis-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hz-thesis-section--cream .hz-thesis-eyebrow,
.hz-thesis-section--sand  .hz-thesis-eyebrow { color: var(--subtle); }
.hz-thesis-section--dark  .hz-thesis-eyebrow { color: var(--dark-dim); }

.hz-thesis-h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 20px;
}
.hz-thesis-section--cream .hz-thesis-h3,
.hz-thesis-section--sand  .hz-thesis-h3 { color: var(--text); }
.hz-thesis-section--dark  .hz-thesis-h3 { color: var(--dark-text); }

.hz-thesis-body {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.hz-thesis-section--cream .hz-thesis-body,
.hz-thesis-section--sand  .hz-thesis-body { color: var(--dim); }
.hz-thesis-section--dark  .hz-thesis-body { color: var(--dark-dim); }

/* Two-column content grid (60/40) */
.hz-content-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

/* Stats grid (2 columns by default) */
.hz-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.hz-stat {
  padding: 14px 16px;
}
.hz-thesis-section--cream .hz-stat,
.hz-thesis-section--sand  .hz-stat { background: var(--bg2); border: 1px solid var(--border); }
.hz-thesis-section--dark  .hz-stat { background: color-mix(in srgb, var(--white) 4%, transparent); border: 1px solid var(--dark-border); }

.hz-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1.1;
  margin-bottom: 4px;
}
.hz-thesis-section--cream .hz-stat-num,
.hz-thesis-section--sand  .hz-stat-num { color: var(--text); }
.hz-thesis-section--dark  .hz-stat-num { color: var(--teal-bright); }
.hz-stat-num--teal  { color: var(--teal) !important; }
.hz-stat-num--amber { color: var(--amber) !important; }
.hz-stat-num--red   { color: #EF4444 !important; }
.hz-stat-num--purple{ color: #A855F7 !important; }

.hz-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.4;
  display: block;
}
.hz-thesis-section--cream .hz-stat-label,
.hz-thesis-section--sand  .hz-stat-label { color: var(--dim); }
.hz-thesis-section--dark  .hz-stat-label { color: var(--dark-dim); }

/* Contrarian claim card — section-aware backgrounds */
.contrarian-claim {
  padding: 26px 30px;
  margin: 20px 0;
  border-inline-start: 3px solid var(--ochre);
}
/* On cream / sand sections: use navy (--accent) so text is readable */
.hz-thesis-section--cream .contrarian-claim,
.hz-thesis-section--sand  .contrarian-claim {
  background: var(--accent);
}
/* On dark sections: subtle white overlay */
.hz-thesis-section--dark .contrarian-claim {
  background: color-mix(in srgb, var(--white) 5%, transparent);
}
.contrarian-claim blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: var(--dark-text);
  line-height: 1.7;
  letter-spacing: -0.01em;
}
.contrarian-claim cite {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--white) 55.00000000000001%, transparent);
  font-style: normal;
  display: block;
  margin-top: 10px;
}

/* Callout box (NIST etc.) */
.hz-callout {
  border: 1px solid;
  padding: 14px 18px;
  margin: 18px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.hz-thesis-section--cream .hz-callout,
.hz-thesis-section--sand  .hz-callout { border-color: var(--amber-br); background: var(--amber-bg); }
.hz-thesis-section--dark  .hz-callout { border-color: rgba(245,158,11,0.18); background: rgba(245,158,11,0.04); }
.hz-callout-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.hz-callout p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  line-height: 1.65;
  color: var(--amber);
}
.hz-thesis-section--dark .hz-callout p { color: #F59E0B; }

/* Chart wrapper */
.hz-chart-wrap {
  position: relative;
  height: 260px;
  margin: 20px 0;
}
.hz-chart-wrap canvas { display: block; }

.hz-chart-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.hz-thesis-section--cream .hz-chart-title,
.hz-thesis-section--sand  .hz-chart-title { color: var(--subtle); }
.hz-thesis-section--dark  .hz-chart-title { color: var(--dark-dim); }

.hz-chart-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  margin-top: 6px;
  display: block;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.hz-thesis-section--cream .hz-chart-note,
.hz-thesis-section--sand  .hz-chart-note { color: var(--subtle); }
.hz-thesis-section--dark  .hz-chart-note { color: var(--dark-dim); }

/* Two charts side by side */
.hz-charts-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

/* ── Mosca Visualization (T01) ── */
.mosca-wrap {
  margin: 20px 0;
  padding: 24px;
  background: var(--bg2);
  border: 1px solid var(--border);
}
.mosca-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 20px;
  display: block;
}
.mosca-viz {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mosca-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  align-items: center;
}
.mosca-bar-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--dim);
  text-align: right;
  line-height: 1.35;
}
.mosca-bar-track {
  position: relative;
  height: 22px;
  background: rgba(47,72,88,0.06);
  border: 1px solid var(--border);
}
.mosca-bar-fill {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.mosca-bar-fill--shelf {
  background: rgba(47,72,88,0.45);
  width: 90%;
}
.mosca-bar-fill--migrate {
  background: rgba(180,83,9,0.45);
  width: 55%;
  margin-inline-start: 30%;
}
.mosca-bar-fill--qday {
  background: rgba(174,32,18,0.55);
  width: 44%;
  margin-inline-start: 30%;
}
.mosca-bar-value {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: color-mix(in srgb, var(--white) 70%, transparent);
  font-weight: 500;
  white-space: nowrap;
}
.mosca-gap-zone {
  position: absolute;
  left: 30%;
  top: 0;
  width: 44%;
  height: 100%;
  border: 1px dashed rgba(174,32,18,0.3);
  pointer-events: none;
}
.mosca-gap-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--red);
  padding: 10px 14px;
  background: var(--red-bg);
  border: 1px solid var(--red-br);
  margin-top: 14px;
  line-height: 1.55;
}

/* Mobile Mosca: vertical stack < 640px */
@media (max-width: 640px) {
  .mosca-row { grid-template-columns: 1fr; gap: 5px; }
  .mosca-bar-label { text-align: left; font-size: 9px; }
  .mosca-bar-fill--migrate,
  .mosca-bar-fill--qday { margin-inline-start: 0; }
  .mosca-bar-value { display: none; }
  .mosca-gap-zone { display: none; }
}

/* Reflexivity SVG wrapper */
.hz-reflexivity-wrap {
  margin: 24px 0 12px;
  overflow: hidden;
}

/* ═══════════════════════════════════════
   LIVE SIGNALS CROSSOVER (Section 8)
═══════════════════════════════════════ */
.hz-live-section {
  background: var(--dark);
  padding: 80px 0;
  border-top: 1px solid var(--dark-border);
}
.hz-live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 32px;
}
.hz-live-panel {
  background: color-mix(in srgb, var(--white) 4%, transparent);
  border: 1px solid var(--dark-border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--duration-fast);
  min-height: 200px;
}
.hz-live-panel:hover { border-color: color-mix(in srgb, var(--white) 13%, transparent); }
.hz-live-panel-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-dim);
}
.hz-live-val {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--dark-text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hz-live-unit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--dark-dim);
  margin-inline-start: 5px;
}
.hz-live-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  display: inline-block;
  border: 1px solid;
  width: fit-content;
  line-height: 1.6;
}
.hz-live-status--risk     { background: rgba(245,158,11,0.12); color: #F59E0B; border-color: rgba(245,158,11,0.25); }
.hz-live-status--unpriced { background: rgba(168,85,247,0.12); color: #A855F7; border-color: rgba(168,85,247,0.25); }

.hz-live-insight {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: color-mix(in srgb, var(--white) 57.99999999999999%, transparent);
  line-height: 1.65;
  padding-top: 12px;
  border-top: 1px solid var(--dark-border);
  flex: 1;
}
.hz-live-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: rgba(45,212,191,0.85);
  transition: color var(--duration-fast);
  display: inline-block;
}
.hz-live-link:hover { color: var(--ochre); }

/* Skeleton loader */
.hz-skeleton {
  background: color-mix(in srgb, var(--white) 6%, transparent);
  border-radius: 2px;
  animation: hz-skeleton-pulse 1.8s ease-in-out infinite;
}
.hz-skeleton--val  { height: 36px; width: 100px; display: block; margin-bottom: 4px; }
.hz-skeleton--text { height: 10px; width: 80%; display: block; margin-bottom: 6px; }
.hz-skeleton--text2{ height: 10px; width: 60%; display: block; }

@keyframes hz-skeleton-pulse {
  0%,100% { opacity: 0.35; }
  50%      { opacity: 0.7; }
}

/* Stale data badge (panel-credit only — BAMLH0A0HYM2 can lag >3 days) */
.hz-stale-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,158,11,0.8);
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.18);
  padding: 2px 7px;
  border-radius: 2px;
  display: inline-block;
  line-height: 1.6;
}

/* Error state */
.hz-live-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--dark-dim);
  text-align: center;
}

/* CTA below grid */
.hz-live-cta {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--dark-border);
}
.hz-live-cta a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ochre);
  transition: color var(--duration-fast);
}
.hz-live-cta a:hover { color: white; }

/* ═══════════════════════════════════════
   CLOSING (Section 9)
═══════════════════════════════════════ */
.hz-closing {
  background: var(--dark);
  padding: 80px 0 64px;
  border-top: 1px solid var(--dark-border);
}
.hz-closing-intro {
  font-size: 16px;
  color: var(--dark-dim);
  max-width: 640px;
  line-height: 1.72;
  margin-bottom: 40px;
}

/* Meta summary table */
.meta-summary-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 64px;
  font-family: 'JetBrains Mono', monospace;
}
.meta-summary-table thead tr { border-bottom: 1px solid color-mix(in srgb, var(--white) 10%, transparent); }
.meta-summary-table thead th {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--white) 60%, transparent);
  padding: 0 14px 10px 0;
  font-weight: 400;
  text-align: left;
}
.meta-summary-table tbody tr { border-bottom: 1px solid color-mix(in srgb, var(--white) 4%, transparent); }
.meta-summary-table tbody td {
  padding: 11px 14px 11px 0;
  font-size: 11px;
  color: var(--dark-dim);
  vertical-align: middle;
  line-height: 1.5;
}
.meta-summary-table tbody td:first-child {
  color: var(--dark-text);
  font-weight: 500;
}

/* Closing pullquote */
.closing-pullquote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--ochre);
  letter-spacing: -0.03em;
  line-height: 1.18;
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

/* CTA row */
.hz-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hz-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border-radius: 3px;
  text-decoration: none;
  transition: background var(--duration-fast), color var(--duration-fast), border-color var(--duration-fast);
  display: inline-block;
}
.hz-btn--primary { background: var(--teal); color: white; border: 1px solid var(--teal); box-shadow: 0 0 20px rgb(from var(--teal) r g b / 25%); }
.hz-btn--primary:hover { background: #0E7490; border-color: #0E7490; }
.hz-btn--ghost { background: transparent; color: var(--dark-text); border: 1px solid var(--dark-border); }
.hz-btn--ghost:hover { border-color: color-mix(in srgb, var(--white) 30%, transparent); }

.hz-timestamp {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--white) 55.00000000000001%, transparent);
  text-align: center;
  display: block;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.hz-footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  padding: 28px 0;
}
.hz-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hz-footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--dark-dim);
  letter-spacing: 0.06em;
}
.hz-footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.hz-footer-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--dark-dim);
  letter-spacing: 0.06em;
  transition: color var(--duration-fast);
}
.hz-footer-links a:hover { color: var(--dark-text); }

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* (section angle dividers + glassmorphism layers removed in distill — 2026-05-05) */

/* Live signal panels (dark section) */
.hz-live-panel {
}

/* Thesis nav cards (cream section) — upgrade to glass */
.hz-thesis-nav-card {
  background: color-mix(in srgb, var(--white) 57.99999999999999%, transparent) !important;
  border: 1px solid color-mix(in srgb, var(--white) 90%, transparent) !important;
  box-shadow: 0 2px 20px color-mix(in srgb, #000000 6%, transparent),
              inset 0 1px 0 color-mix(in srgb, var(--white) 100%, transparent) !important;
}
.hz-thesis-nav-card:hover,
.hz-thesis-nav-card:focus {
  background: color-mix(in srgb, var(--white) 78%, transparent) !important;
}

/* Contrarian claim — add blur to existing section-aware bg */
.contrarian-claim {
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1000px) {
  .hz-content-grid { grid-template-columns: 1fr; gap: 32px; }
  .hz-charts-duo { grid-template-columns: 1fr; }
  .matrix-col-failure { display: none; }
}

@media (max-width: 800px) {
  .hz-impact-stats { flex-wrap: wrap; max-width: 100%; }
  .hz-impact-stat { min-width: 48%; }
  .hz-thesis-nav-grid { grid-template-columns: 1fr; }
  .hz-live-grid { grid-template-columns: 1fr; }
  .matrix-col-measures { display: none; }
}

@media (max-width: 768px) {
  .hz-hero { min-height: auto; padding: 100px 0 64px; }
  .hz-hero-inner { padding: 0 20px; }
  .hz-container { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hz-impact-stat { min-width: 100%; }
  .meta-summary-table { font-size: 10px; }
  .meta-summary-table thead { display: none; }
  .hz-thesis-nav-grid { grid-template-columns: 1fr; }
  .hz-stat-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hz-footer-inner { flex-direction: column; gap: 14px; text-align: center; }
  .closing-pullquote { font-size: 24px; }
  .hz-thesis-num-bg { font-size: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}


/* ═══════════════════════════════════════
   CHOKEPOINTS PAGE — chokepoints.html
═══════════════════════════════════════ */

/* ── Tier Navigation Bar ── */
.cp-tier-nav {
  position: sticky;
  top: 60px;
  z-index: 150;
  background: #1a1a1a;
  border-bottom: 1px solid var(--dark-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--white) 15%, transparent) transparent;
}
.cp-tier-nav::-webkit-scrollbar { height: 3px; }
.cp-tier-nav::-webkit-scrollbar-thumb { background: color-mix(in srgb, var(--white) 15%, transparent); border-radius: 2px; }
.cp-tier-nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 28px;
  white-space: nowrap;
  align-items: center;
}
.cp-tier-group {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
}
.cp-tier-group + .cp-tier-group {
  border-inline-start: 1px solid color-mix(in srgb, var(--white) 8%, transparent);
  padding-inline-start: 28px;
}
.cp-tier-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--white) 35%, transparent);
  margin-inline-end: 4px;
}
.cp-tier-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: color-mix(in srgb, var(--white) 60%, transparent);
  padding: 4px 7px;
  border-radius: 2px;
  transition: color var(--duration-fast), background var(--duration-fast);
  text-decoration: none;
}
.cp-tier-link:hover,
.cp-tier-link.active {
  color: var(--ochre);
  background: rgba(45,212,191,0.08);
}

/* ── Chokepoint Status Badges ── */
.cp-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  border: 1px solid;
  line-height: 1.6;
  display: inline-block;
  white-space: nowrap;
}
.cp-status--active-crisis {
  background: rgba(239,68,68,0.15);
  color: #EF4444;
  border-color: rgba(239,68,68,0.30);
}
.cp-status--active-crisis::before {
  content: '\25CF';
  margin-inline-end: 4px;
  animation: hz-pulse 2.5s ease-in-out infinite;
}
.cp-status--critical {
  background: rgba(239,68,68,0.10);
  color: #EF4444;
  border-color: rgba(239,68,68,0.22);
}
.cp-status--high {
  background: rgba(245,158,11,0.12);
  color: #F59E0B;
  border-color: rgba(245,158,11,0.25);
}
.cp-status--medium {
  background: rgba(138,133,128,0.12);
  color: #8A8580;
  border-color: rgba(138,133,128,0.25);
}
.cp-status--low {
  background: rgba(16,185,129,0.12);
  color: #10B981;
  border-color: rgba(16,185,129,0.25);
}

/* ── Tier Badge (small tag next to H2) ── */
.cp-tier-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  border: 1px solid;
  line-height: 1.6;
}
.cp-tier-badge--1 { background: rgba(168,85,247,0.10); color: #A855F7; border-color: rgba(168,85,247,0.22); }
.cp-tier-badge--2 { background: rgba(59,130,246,0.10); color: #60A5FA; border-color: rgba(59,130,246,0.22); }
.cp-tier-badge--3 { background: rgba(16,185,129,0.10); color: #10B981; border-color: rgba(16,185,129,0.22); }

/* ── Profile Container ── */
.cp-profile {
  padding: 48px 0;
}
.cp-profile + .cp-profile {
  border-top: 1px solid var(--dark-border);
}
.hz-thesis-section--cream .cp-profile + .cp-profile,
.hz-thesis-section--sand .cp-profile + .cp-profile {
  border-color: var(--border);
}
.cp-profile-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.cp-profile-header h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cp-oneliner {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ── Data Grid ── */
.cp-data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--dark-border);
  background: var(--dark-border);
  margin: 20px 0;
}
.cp-data-cell {
  padding: 16px 18px;
  background: var(--dark-surface);
}
.cp-data-cell-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 4px;
}
.cp-data-cell-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  display: block;
}
.cp-data-cell-caveat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  color: color-mix(in srgb, var(--white) 40%, transparent);
  display: block;
  margin-top: 4px;
}
/* Light section data grid */
.hz-thesis-section--cream .cp-data-grid,
.hz-thesis-section--sand .cp-data-grid {
  border-color: var(--border);
  background: var(--border);
}
.hz-thesis-section--cream .cp-data-cell { background: var(--white); }
.hz-thesis-section--sand .cp-data-cell { background: var(--bg); }
.hz-thesis-section--cream .cp-data-cell-num,
.hz-thesis-section--sand .cp-data-cell-num { color: var(--text); }
.hz-thesis-section--cream .cp-data-cell-label,
.hz-thesis-section--sand .cp-data-cell-label { color: var(--subtle); }
.hz-thesis-section--cream .cp-data-cell-caveat,
.hz-thesis-section--sand .cp-data-cell-caveat { color: var(--subtle); }
/* Dark section */
.hz-thesis-section--dark .cp-data-cell-num { color: var(--dark-text); }
.hz-thesis-section--dark .cp-data-cell-label { color: color-mix(in srgb, var(--white) 50%, transparent); }
.hz-thesis-section--dark .cp-profile-header h2 { color: var(--dark-text); }
.hz-thesis-section--dark .cp-oneliner { color: var(--dark-dim); }

/* ── Current Status Block ── */
.cp-status-block {
  padding: 20px 24px;
  border-inline-start: 3px solid;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.7;
}
.cp-status-block--active-crisis {
  border-color: #EF4444;
  background: rgba(239,68,68,0.08);
}
.cp-status-block--critical {
  border-color: #EF4444;
  background: rgba(239,68,68,0.06);
}
.cp-status-block--high {
  border-color: #F59E0B;
  background: rgba(245,158,11,0.06);
}
.cp-status-block--medium {
  border-color: var(--subtle);
  background: rgba(138,133,128,0.06);
}
.cp-status-block--low {
  border-color: #10B981;
  background: rgba(16,185,129,0.06);
}
.cp-status-block-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

/* ── Alternative Route Table ── */
.cp-alt-route {
  margin: 20px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cp-alt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.cp-alt-table th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 10px 14px;
  text-align: left;
  white-space: nowrap;
}
.cp-alt-table td {
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.5;
}
.hz-thesis-section--dark .cp-alt-table th {
  color: color-mix(in srgb, var(--white) 50%, transparent);
  border-bottom: 1px solid var(--dark-border);
}
.hz-thesis-section--dark .cp-alt-table td {
  color: var(--dark-dim);
  border-bottom: 1px solid var(--dark-border);
}
.hz-thesis-section--cream .cp-alt-table th,
.hz-thesis-section--sand .cp-alt-table th {
  color: var(--subtle);
  border-bottom: 1px solid var(--border);
}
.hz-thesis-section--cream .cp-alt-table td,
.hz-thesis-section--sand .cp-alt-table td {
  color: var(--dim);
  border-bottom: 1px solid var(--border);
}

/* ── Financial Transmission Prose ── */
.cp-financial {
  margin: 24px 0;
}
.cp-financial-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.cp-financial p {
  font-size: 15px;
  line-height: 1.75;
  max-width: 780px;
  margin-bottom: 12px;
}
.hz-thesis-section--dark .cp-financial-label { color: color-mix(in srgb, var(--white) 45%, transparent); }
.hz-thesis-section--dark .cp-financial p { color: var(--dark-dim); }
.hz-thesis-section--cream .cp-financial-label,
.hz-thesis-section--sand .cp-financial-label { color: var(--subtle); }
.hz-thesis-section--cream .cp-financial p,
.hz-thesis-section--sand .cp-financial p { color: var(--dim); }

/* ── Historical Disruption Inset ── */
.cp-historical {
  padding: 20px 24px;
  border-inline-start: 3px solid var(--ochre);
  margin: 24px 0;
}
.hz-thesis-section--dark .cp-historical {
  background: rgba(45,212,191,0.04);
  border: 1px solid rgba(45,212,191,0.12);
  border-inline-start: 3px solid var(--ochre);
}
.hz-thesis-section--cream .cp-historical,
.hz-thesis-section--sand .cp-historical {
  background: rgba(45,212,191,0.04);
  border: 1px solid rgba(45,212,191,0.12);
  border-inline-start: 3px solid var(--ochre);
}
.cp-historical-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre);
  display: block;
  margin-bottom: 8px;
}
.cp-historical p {
  font-size: 14px;
  line-height: 1.7;
}
.hz-thesis-section--dark .cp-historical p { color: var(--dark-dim); }
.hz-thesis-section--cream .cp-historical p,
.hz-thesis-section--sand .cp-historical p { color: var(--dim); }

/* ── Signals to Watch ── */
.cp-signals {
  margin: 20px 0;
}
.cp-signals-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.cp-signals ul {
  list-style: none;
  padding: 0;
}
.cp-signals li {
  padding: 6px 0 6px 18px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
}
.cp-signals li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--ochre);
  font-weight: 700;
}
.hz-thesis-section--dark .cp-signals-label { color: color-mix(in srgb, var(--white) 45%, transparent); }
.hz-thesis-section--dark .cp-signals li { color: var(--dark-dim); }
.hz-thesis-section--cream .cp-signals-label,
.hz-thesis-section--sand .cp-signals-label { color: var(--subtle); }
.hz-thesis-section--cream .cp-signals li,
.hz-thesis-section--sand .cp-signals li { color: var(--dim); }

/* ── Source Line ── */
.cp-source {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  margin-top: 16px;
}
.hz-thesis-section--dark .cp-source { color: color-mix(in srgb, var(--white) 30%, transparent); }
.hz-thesis-section--cream .cp-source,
.hz-thesis-section--sand .cp-source { color: var(--subtle); }

/* ── Comparative Tables ── */
.cp-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
}
.cp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}
.cp-table th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
}
.cp-table td {
  padding: 12px 16px;
  line-height: 1.5;
}
.cp-table td:first-child {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 14px;
}
.hz-thesis-section--dark .cp-table th {
  color: color-mix(in srgb, var(--white) 50%, transparent);
  border-bottom: 2px solid color-mix(in srgb, var(--white) 15%, transparent);
}
.hz-thesis-section--dark .cp-table td {
  color: var(--dark-dim);
  border-bottom: 1px solid var(--dark-border);
}
.hz-thesis-section--cream .cp-table th,
.hz-thesis-section--sand .cp-table th {
  color: var(--subtle);
  border-bottom: 2px solid var(--border);
}
.hz-thesis-section--cream .cp-table td,
.hz-thesis-section--sand .cp-table td {
  color: var(--dim);
  border-bottom: 1px solid var(--border);
}

/* ── Data Notes ── */
.cp-data-notes {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.cp-data-notes p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  line-height: 1.7;
  color: var(--subtle);
  font-style: italic;
  max-width: 880px;
}

/* ── Tier Section Headers ── */
.cp-tier-header {
  padding: 56px 0 12px;
}
.cp-tier-header h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.cp-tier-header p {
  font-size: 16px;
  line-height: 1.65;
}
.hz-thesis-section--dark .cp-tier-header h2 { color: var(--dark-text); }
.hz-thesis-section--dark .cp-tier-header p { color: var(--dark-dim); }
.hz-thesis-section--cream .cp-tier-header h2,
.hz-thesis-section--sand .cp-tier-header h2 { color: var(--text); }
.hz-thesis-section--cream .cp-tier-header p,
.hz-thesis-section--sand .cp-tier-header p { color: var(--dim); }

/* ── Chokepoints Responsive ── */
@media (max-width: 768px) {
  .cp-data-grid { grid-template-columns: 1fr 1fr; }
  .cp-profile-header { flex-direction: column; gap: 8px; }
  .cp-tier-nav-inner { padding: 0 16px; gap: 16px; }
  .cp-profile { padding: 32px 0; }
  .cp-status-block { padding: 16px 18px; }
  .cp-financial p { font-size: 14px; }
}
@media (max-width: 480px) {
  .cp-data-grid { grid-template-columns: 1fr; }
}
