/* ==========================================================================
   AGI INTELLIGENCE REPORT · ISSUE 02 · v3
   Cool lab-clean palette · Editorial-meets-tech · Soft futurism
   ========================================================================== */

:root {
  /* Cool paper palette */
  --paper:        #ECEFF3;
  --paper-warm:   #F4F6F9;
  --paper-soft:   #E2E7EE;
  --ink:          #0B0F14;
  --ink-soft:     #161B22;
  --graphite:     #2A323D;
  --slate:        #475160;
  --muted:        #6B7684;
  --rule:         #C5CCD6;
  --pale:         #D8DEE6;
  --hairline:     rgba(11, 15, 20, 0.08);

  /* Signal accents */
  --signal:       oklch(0.58 0.18 250);
  --signal-soft:  oklch(0.94 0.04 250);
  --signal-glow:  oklch(0.58 0.18 250 / 0.16);

  /* Modality hues (used in spectrum hero & dashboard) */
  --mod-text:     oklch(0.55 0.02 250);  /* graphite */
  --mod-image:    oklch(0.60 0.16 220);  /* steel blue */
  --mod-audio:    oklch(0.65 0.14 180);  /* teal */
  --mod-video:    oklch(0.58 0.18 280);  /* violet */

  /* Type */
  --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-sans:    'DM Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-serif:   'Fraunces', 'Source Serif Pro', Georgia, serif;
  --font-mono:    'JetBrains Mono', 'Geist Mono', ui-monospace, SFMono-Regular, monospace;

  /* Density (modified by tweak panel) */
  --density-scale: 1;
  --density-line: 1.6;
  --gap-xs:  calc(8px  * var(--density-scale));
  --gap-sm:  calc(16px * var(--density-scale));
  --gap-md:  calc(24px * var(--density-scale));
  --gap-lg:  calc(40px * var(--density-scale));
  --gap-xl:  calc(64px * var(--density-scale));
  --gap-2xl: calc(96px * var(--density-scale));

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

body.density-compact     { --density-scale: 0.82; --density-line: 1.5;  }
body.density-comfortable { --density-scale: 1;    --density-line: 1.6;  }
body.density-editorial   { --density-scale: 1.18; --density-line: 1.72; }

/* ========================================================================== */
/* RESET                                                                       */
/* ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: var(--density-line);
  font-feature-settings: "ss01", "cv01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: var(--rule); transition: color .2s, text-decoration-color .2s; }
a:hover { color: var(--signal); text-decoration-color: var(--signal); }
button { font: inherit; cursor: pointer; }
::selection { background: var(--ink); color: var(--paper); }

/* ========================================================================== */
/* TYPOGRAPHY                                                                  */
/* ========================================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink);
}
h1 { font-size: clamp(56px, 9vw, 132px); letter-spacing: -0.04em; }
h2 { font-size: clamp(36px, 5.5vw, 64px); letter-spacing: -0.03em; font-weight: 700; }
h3 { font-size: clamp(24px, 3.2vw, 38px); font-weight: 600; letter-spacing: -0.02em; }
h4 { font-size: 18px; font-weight: 600; }

/* Italic emphasis inside headings switches to Fraunces */
h1 em, h2 em, h3 em, h4 em, .cover-title .em {
  font-family: var(--font-serif);
  font-weight: 400; font-style: italic;
  letter-spacing: -0.015em;
}

p {
  font-size: calc(15.5px * var(--density-scale));
  line-height: var(--density-line);
  margin-bottom: 1em;
  text-wrap: pretty;
}
.lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.32;
  color: var(--graphite);
  font-weight: 400;
  letter-spacing: -0.015em;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
}
.eyebrow-signal { color: var(--signal); }
.mono { font-family: var(--font-mono); }
.serif { font-family: var(--font-display); }
.small { font-size: 13px; color: var(--muted); }
.byline { font-size: 13px; color: var(--muted); font-family: var(--font-mono); letter-spacing: 0.04em; }

em { font-style: italic; color: var(--graphite); font-family: var(--font-serif); }
strong { font-weight: 700; color: var(--ink); }

/* ========================================================================== */
/* LAYOUT PRIMITIVES                                                           */
/* ========================================================================== */
.container       { max-width: 760px;  margin: 0 auto; padding: 0 24px; }
.container-wide  { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-full  { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

section.major { padding: var(--gap-2xl) 0; border-top: 1px solid var(--hairline); position: relative; }

.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  margin-bottom: var(--gap-lg);
  align-items: end;
}
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; gap: 20px; } }
.section-head .section-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(72px, 9vw, 128px);
  line-height: 0.85;
  color: var(--ink);
  letter-spacing: -0.05em;
}
.section-head .section-num .dot {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  background: var(--signal); vertical-align: super; margin-left: 6px;
  box-shadow: 0 0 0 4px var(--signal-glow);
}
.section-head .section-headline { font-size: clamp(28px, 4vw, 48px); margin-bottom: 14px; font-weight: 700; letter-spacing: -0.025em; }
.section-head .section-headline em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.section-head .section-deck {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--graphite);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
  max-width: 640px;
  letter-spacing: -0.005em;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}
.section-head .section-meta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-top: 12px; display: flex; gap: 18px; flex-wrap: wrap;
}

/* ========================================================================== */
/* TOP CHROME — masthead + ticker                                              */
/* ========================================================================== */
.top-chrome {
  position: sticky; top: 0; z-index: 50;
  background: rgba(236, 239, 243, 0.85);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.masthead {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1440px; margin: 0 auto;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
}
.masthead .brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 600; }
.masthead .brand svg { width: 18px; height: 18px; color: var(--ink); }
.masthead .brand-name { letter-spacing: 0.18em; }
.masthead .meta-group { display: flex; gap: 28px; align-items: center; color: var(--slate); }
.masthead .live-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--signal); margin-right: 8px;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--signal-glow); }
  50%      { opacity: 0.5; box-shadow: 0 0 0 5px transparent; }
}
@media (max-width: 720px) {
  .masthead .meta-group .hide-mobile { display: none; }
}

.ticker-strip {
  border-top: 1px solid var(--hairline);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  height: 32px;
  display: flex; align-items: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
}
.ticker-strip .ticker-label {
  flex-shrink: 0; padding: 0 16px; height: 100%;
  display: flex; align-items: center; gap: 8px;
  background: var(--signal); color: var(--paper);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em;
}
.ticker-strip .ticker-track { display: flex; white-space: nowrap; animation: tickerScroll 80s linear infinite; }
.ticker-strip .ticker-item { padding: 0 32px; display: flex; align-items: center; gap: 10px; opacity: 0.9; }
.ticker-strip .ticker-item .tk-key { color: oklch(0.7 0.1 220); }
.ticker-strip .ticker-item .tk-sep { color: rgba(236, 239, 243, 0.3); margin-left: 32px; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========================================================================== */
/* CHAPTER RAIL — left sticky nav                                              */
/* ========================================================================== */
.chapter-rail {
  position: fixed;
  left: 24px; top: 50%; transform: translateY(-50%);
  z-index: 40;
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 12px;
  background: rgba(236, 239, 243, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--hairline);
  border-radius: 100px;
}
.chapter-rail .rail-item {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 8px; border-radius: 99px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  color: var(--muted); text-decoration: none;
  transition: color .25s, background .25s;
  position: relative;
}
.chapter-rail .rail-item .rail-num {
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--rule);
  font-weight: 600; color: var(--slate);
  font-size: 9px;
  transition: all .25s;
}
.chapter-rail .rail-item .rail-label {
  display: none; white-space: nowrap;
  text-transform: uppercase; font-weight: 500;
}
.chapter-rail:hover .rail-item .rail-label { display: inline; }
.chapter-rail .rail-item.active { color: var(--ink); background: var(--paper-warm); }
.chapter-rail .rail-item.active .rail-num {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.chapter-rail .rail-item:hover { color: var(--ink); }
@media (max-width: 1100px) { .chapter-rail { display: none; } }

/* ========================================================================== */
/* COVER / HERO with spectrum motif                                            */
/* ========================================================================== */
.cover {
  padding: 80px 24px 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}
.cover-inner { max-width: 1440px; margin: 0 auto; position: relative; z-index: 2; }
.cover-row1 {
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  margin-bottom: 80px; align-items: start;
}
.cover-row1 .col-issue {
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--slate);
}
.cover-row1 .col-issue .issue-num {
  font-family: var(--font-display); font-size: 14px; letter-spacing: 0; color: var(--ink);
  text-transform: none; font-style: italic;
}
.cover-row1 .col-meta { text-align: right; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--muted); }

.cover-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
  position: relative;
}
.cover-title .em {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--mod-text), var(--mod-image) 30%, var(--mod-audio) 60%, var(--mod-video));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cover-deck {
  max-width: 760px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.32;
  color: var(--graphite);
  margin-bottom: 56px;
  letter-spacing: -0.005em;
}

/* Spectrum motif */
.spectrum {
  width: 100%; height: 220px;
  position: relative;
  margin: 0 0 56px;
}
.spectrum svg { width: 100%; height: 100%; }
.spectrum-labels {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 12px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}
.spectrum-labels span { display: flex; align-items: center; gap: 8px; }
.spectrum-labels span::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
}
.spectrum-labels span:nth-child(1)::before { background: var(--mod-text); }
.spectrum-labels span:nth-child(2)::before { background: var(--mod-image); }
.spectrum-labels span:nth-child(3)::before { background: var(--mod-audio); }
.spectrum-labels span:nth-child(4)::before { background: var(--mod-video); }
.spectrum-tail {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; color: var(--slate);
  background: var(--paper); padding: 4px 10px; border: 1px solid var(--hairline); border-radius: 99px;
}

/* Cover TOC */
.cover-toc {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--hairline);
  margin-top: 16px;
}
@media (max-width: 900px) { .cover-toc { grid-template-columns: repeat(2, 1fr); } }
.cover-toc .toc-item {
  padding: 24px 16px 24px 0; border-right: 1px solid var(--hairline);
  text-decoration: none; display: block;
  transition: background .25s;
}
.cover-toc .toc-item:last-child { border-right: none; }
.cover-toc .toc-item:hover { background: var(--paper-warm); }
.cover-toc .toc-num {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  color: var(--muted); margin-bottom: 12px;
}
.cover-toc .toc-label {
  font-family: var(--font-display); font-size: 22px; line-height: 1.1;
  color: var(--ink); margin-bottom: 6px;
}
.cover-toc .toc-sub { font-size: 12px; color: var(--slate); line-height: 1.4; }

/* ========================================================================== */
/* STATE-OF-MULTIMODAL DASHBOARD                                               */
/* ========================================================================== */
.dashboard {
  background: var(--ink);
  color: var(--paper);
  padding: var(--gap-xl) 24px;
  position: relative;
  overflow: hidden;
}
.dashboard::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.dashboard-inner { max-width: 1440px; margin: 0 auto; position: relative; }
.dashboard-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
  padding-bottom: 20px; border-bottom: 1px solid rgba(236, 239, 243, 0.12);
}
.dashboard-head h2 {
  color: var(--paper);
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px); line-height: 1.05;
  letter-spacing: -0.025em;
}
.dashboard-head h2 .em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: oklch(0.78 0.1 240); }
.dashboard-head .head-meta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  color: rgba(236, 239, 243, 0.55); text-transform: uppercase; text-align: right;
}
.dashboard-head .head-meta .ts { color: oklch(0.78 0.1 240); }

.dash-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1px;
  background: rgba(236, 239, 243, 0.08);
  border: 1px solid rgba(236, 239, 243, 0.08);
}
@media (max-width: 960px) { .dash-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .dash-grid { grid-template-columns: 1fr; } }
.dash-cell {
  background: var(--ink);
  padding: 28px 24px;
  position: relative;
}
.dash-cell.feature { grid-row: span 2; }
.dash-cell .dc-eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  color: rgba(236, 239, 243, 0.5); text-transform: uppercase;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.dash-cell .dc-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: oklch(0.78 0.1 240);
  animation: pulse 2.4s ease-in-out infinite;
}
.dash-cell .dc-value {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 5vw, 64px); line-height: 1;
  color: var(--paper); letter-spacing: -0.04em;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.dash-cell .dc-value .dc-unit {
  font-family: var(--font-mono); font-size: 0.4em; letter-spacing: 0.08em;
  color: rgba(236, 239, 243, 0.55); margin-left: 4px;
}
.dash-cell .dc-delta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em;
  color: oklch(0.78 0.1 240); font-feature-settings: "tnum";
}
.dash-cell .dc-delta.down { color: oklch(0.7 0.14 30); }
.dash-cell .dc-caption {
  font-size: 12.5px; color: rgba(236, 239, 243, 0.65); line-height: 1.45;
  margin-top: 14px;
}

/* Fusion gauge (feature cell) */
.fusion-gauge { margin-top: 8px; }
.fusion-gauge .fg-rows { display: flex; flex-direction: column; gap: 10px; }
.fusion-gauge .fg-row { display: grid; grid-template-columns: 64px 1fr 50px; align-items: center; gap: 12px; }
.fusion-gauge .fg-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(236, 239, 243, 0.7); }
.fusion-gauge .fg-track {
  height: 6px; background: rgba(236, 239, 243, 0.08);
  border-radius: 3px; overflow: hidden; position: relative;
}
.fusion-gauge .fg-bar {
  height: 100%; width: 0; transition: width 1.4s var(--ease-out);
  border-radius: 3px; position: relative;
}
.fusion-gauge .fg-bar::after {
  content: ''; position: absolute; right: 0; top: 50%; width: 8px; height: 8px;
  background: inherit; border-radius: 50%; transform: translate(50%, -50%);
  box-shadow: 0 0 12px currentColor;
}
.fusion-gauge .fg-bar.text  { background: var(--mod-text);  color: var(--mod-text); }
.fusion-gauge .fg-bar.image { background: var(--mod-image); color: var(--mod-image); }
.fusion-gauge .fg-bar.audio { background: var(--mod-audio); color: var(--mod-audio); }
.fusion-gauge .fg-bar.video { background: var(--mod-video); color: var(--mod-video); }
.fusion-gauge .fg-val {
  font-family: var(--font-mono); font-size: 11px; color: rgba(236, 239, 243, 0.85);
  text-align: right; font-variant-numeric: tabular-nums;
}

/* Sparkline */
.sparkline {
  margin-top: 12px; height: 44px; width: 100%; position: relative;
}
.sparkline svg { width: 100%; height: 100%; overflow: visible; }
.sparkline path { fill: none; stroke: oklch(0.78 0.1 240); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.sparkline path.fill { fill: oklch(0.78 0.1 240 / 0.12); stroke: none; }
.sparkline .end-dot { fill: oklch(0.78 0.1 240); }

/* Heatmap */
.heat-grid {
  display: grid; grid-template-columns: 84px repeat(5, 1fr); gap: 4px;
  margin-top: 14px;
  font-family: var(--font-mono); font-size: 10px;
  font-variant-numeric: tabular-nums;
}
.heat-grid .h-head { color: rgba(236, 239, 243, 0.55); padding: 4px 0; letter-spacing: 0.1em; text-transform: uppercase; }
.heat-grid .h-row-label { color: rgba(236, 239, 243, 0.75); padding: 6px 0; }
.heat-grid .h-cell {
  aspect-ratio: 1.4 / 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
  color: var(--paper); font-weight: 500;
}

/* ========================================================================== */
/* FRONT MATTER                                                                */
/* ========================================================================== */
.front-matter { padding-top: calc(var(--gap-2xl) - 24px); }
.vision-statement {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.32; color: var(--ink);
  margin: 12px 0 32px;
  max-width: 760px;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.editors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 24px; }
@media (max-width: 600px) { .editors-grid { grid-template-columns: 1fr; } }
.editor-card { display: flex; gap: 16px; padding-top: 24px; border-top: 1px solid var(--hairline); }
.avatar {
  width: 56px; height: 56px; min-width: 56px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 22px; letter-spacing: -0.01em;
  position: relative;
}
.avatar::before {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 1px solid var(--rule); pointer-events: none;
}
.editor-card .name { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 4px; letter-spacing: -0.015em; }
.editor-card .role { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.editor-card .bio { font-size: 14px; line-height: 1.55; color: var(--slate); }
.contributors { font-size: 14px; color: var(--slate); line-height: 1.65; max-width: 760px; }

.ai-sidenote {
  font-size: 12.5px; line-height: 1.6; color: var(--slate);
  background: var(--paper-warm); border: 1px solid var(--hairline);
  padding: 20px 22px; margin-top: 40px;
  border-left: 2px solid var(--signal);
  border-radius: 2px;
}
.ai-sidenote .eyebrow { display: block; margin-bottom: 8px; color: var(--signal); }

/* ========================================================================== */
/* FOYER                                                                       */
/* ========================================================================== */
.foyer-column-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 16px; }
@media (max-width: 800px) { .foyer-column-pair { grid-template-columns: 1fr; gap: 56px; } }
.foyer-column { position: relative; }
.foyer-column .speaker-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--hairline);
}
.foyer-column .speaker-row .perspective-tag {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--signal); font-weight: 500;
}
.foyer-column .speaker-row .dateline { font-size: 12px; color: var(--muted); margin-top: 2px; font-family: var(--font-mono); }
.foyer-column h3 { font-size: clamp(26px, 2.8vw, 36px); margin-bottom: 16px; max-width: 30ch; font-weight: 700; }
.foyer-column .col-body p { font-size: 15px; line-height: 1.65; margin-bottom: 14px; color: var(--graphite); }
.foyer-column .col-body p:first-of-type::first-letter {
  font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 68px;
  float: left; line-height: 0.82; margin: 8px 12px 0 0; color: var(--ink);
}
.foyer-column .signoff {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  color: var(--signal); margin-top: 16px; text-transform: uppercase;
}

.history-frame {
  background: var(--paper-warm);
  padding: 32px;
  margin: 56px 0 48px;
  font-family: var(--font-serif);
  font-size: 17px; line-height: 1.6; color: var(--graphite);
  position: relative;
  border: 1px solid var(--hairline);
}
.history-frame::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--mod-text), var(--mod-image), var(--mod-audio), var(--mod-video));
}
.history-frame .eyebrow { display: block; margin-bottom: 12px; }
.history-frame strong { color: var(--ink); }

/* Signpost cards */
.signpost-row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 64px; margin-bottom: 16px; gap: 16px; flex-wrap: wrap;
}
.signpost-row h3 { font-size: clamp(24px, 2.4vw, 32px); }
.signpost-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
@media (max-width: 1000px) { .signpost-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .signpost-grid { grid-template-columns: 1fr; } }
.signpost-card {
  background: var(--paper); padding: 24px 22px;
  display: flex; flex-direction: column;
  position: relative; transition: background .25s;
}
.signpost-card:hover { background: var(--paper-warm); }
.signpost-card .num {
  font-family: var(--font-display); font-weight: 700; font-size: 42px; line-height: 1;
  color: var(--ink); letter-spacing: -0.04em;
}
.signpost-card .label {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--signal); margin: 12px 0 10px;
  font-weight: 500;
}
.signpost-card .desc { font-size: 13px; line-height: 1.5; color: var(--slate); flex: 1; }
.signpost-card .anchor-link {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase; margin-top: 14px; color: var(--ink); font-weight: 500;
  text-decoration: none; border-bottom: 1px solid var(--ink); align-self: flex-start;
  padding-bottom: 2px;
}

/* Subsection divider */
.subsection-rule {
  border-top: 1px solid var(--hairline);
  margin: 64px 0 32px; padding-top: 28px;
}
.subsection-rule .eyebrow { display: block; margin-bottom: 10px; }
.subsection-rule h3 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 8px; }
.subsection-rule p.sub-deck { color: var(--slate); font-size: 15px; max-width: 620px; }

/* ========================================================================== */
/* FIELD NOTES                                                                 */
/* ========================================================================== */
.field-notes-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-top: 32px;
}
@media (max-width: 800px) { .field-notes-grid { grid-template-columns: 1fr; } }
.note-card { background: var(--paper); padding: 28px; display: flex; flex-direction: column; }
.note-card .note-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.note-card .note-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 18px;
  position: relative;
}
.note-card .note-meta .name { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.note-card .note-meta .affiliation { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.note-card .question {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  color: var(--signal); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.note-card .answer { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 17px; line-height: 1.45; margin-bottom: 16px; color: var(--ink); }
.note-card .qa-pair { margin-bottom: 14px; }
.note-card .qa-pair:last-child { margin-bottom: 0; }
.note-card .read-more {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--hairline);
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em;
  color: var(--muted); text-transform: uppercase;
}

.field-notes-routing {
  margin-top: 32px; padding: 22px 26px;
  background: var(--paper-warm); border: 1px solid var(--hairline);
  font-size: 13.5px; color: var(--slate); text-align: center;
}
.field-notes-routing strong { color: var(--ink); font-family: var(--font-mono); font-weight: 500; }

/* Portrait Gallery */
.portrait {
  display: grid; grid-template-columns: 240px 1fr; gap: 48px;
  margin-top: 40px; padding: 40px 0; border-top: 1px solid var(--hairline);
}
.portrait:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
@media (max-width: 800px) { .portrait { grid-template-columns: 1fr; gap: 24px; } }
.portrait-side { position: sticky; top: 100px; height: fit-content; }
.portrait-frame {
  width: 100%; aspect-ratio: 1; max-width: 200px;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 88px;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  position: relative; overflow: hidden;
}
.portrait-frame::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, transparent 49.5%, rgba(255,255,255,0.04) 50%, transparent 50.5%),
    linear-gradient(45deg, transparent 49.5%, rgba(255,255,255,0.04) 50%, transparent 50.5%);
  background-size: 24px 24px;
}
.portrait-name { font-family: var(--font-display); font-weight: 700; font-size: 24px; line-height: 1.1; margin-bottom: 6px; letter-spacing: -0.02em; }
.portrait-role { font-size: 13px; color: var(--slate); line-height: 1.5; margin-bottom: 16px; }
.portrait-meta {
  font-family: var(--font-mono); font-size: 10.5px; color: var(--muted);
  padding-top: 14px; border-top: 1px solid var(--hairline);
  letter-spacing: 0.04em;
}
.portrait-meta div { padding: 4px 0; display: flex; gap: 8px; }
.portrait-meta span.k {
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate);
  font-size: 9.5px; padding-top: 2px; min-width: 64px;
}
.portrait-body h4 { font-family: var(--font-display); font-weight: 700; font-size: 30px; line-height: 1.15; margin-bottom: 18px; letter-spacing: -0.025em; }
.portrait-body h4 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.portrait-body p { font-size: 15.5px; line-height: 1.65; color: var(--graphite); }
.portrait-body .pq {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 500;
  color: var(--signal); text-transform: uppercase; letter-spacing: 0.12em;
  margin: 22px 0 8px;
}
.portrait-body .pa { font-size: 15px; line-height: 1.6; margin-bottom: 0; }
.portrait-body .read-link {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; display: inline-block; margin-top: 22px;
  padding-top: 16px; border-top: 1px solid var(--hairline);
  text-decoration: none; color: var(--ink); font-weight: 500;
}
.portrait-body .read-link::after { content: ' →'; color: var(--signal); }

/* By the Numbers */
.numbers-block { margin-top: 72px; padding-top: 32px; border-top: 1px solid var(--hairline); }
.stats-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px;
  background: var(--hairline); border: 1px solid var(--hairline);
  margin-top: 24px;
}
@media (max-width: 1000px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card { background: var(--paper); padding: 24px 20px; position: relative; }
.stat-card .stat-value {
  font-family: var(--font-display); font-weight: 700; font-size: 44px;
  line-height: 1; letter-spacing: -0.04em; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat-card .stat-label {
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted); margin-top: 12px;
}
.stat-card .stat-delta { font-family: var(--font-mono); font-size: 10px; color: var(--signal); margin-top: 4px; letter-spacing: 0.04em; }

.trend-list { margin-top: 32px; border-top: 1px solid var(--hairline); }
.trend-row {
  display: grid; grid-template-columns: 200px 1fr 120px;
  align-items: center; padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
  gap: 20px;
}
@media (max-width: 700px) { .trend-row { grid-template-columns: 1fr; gap: 8px; } }
.trend-row .trend-topic { font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.trend-row .trend-bar-container {
  height: 4px; background: var(--paper-soft); border-radius: 2px; overflow: hidden;
  position: relative;
}
.trend-row .trend-bar { height: 100%; background: var(--ink); width: 0; transition: width 1.4s var(--ease-out); }
.trend-row .trend-bar.signal { background: var(--signal); }
.trend-row .trend-direction { font-family: var(--font-mono); font-size: 11px; color: var(--slate); text-align: right; letter-spacing: 0.04em; }
.trend-row .trend-direction.up { color: var(--signal); }

.event-preview {
  background: var(--ink); color: var(--paper);
  padding: 40px 36px; margin-top: 48px;
  position: relative; overflow: hidden;
  border: 1px solid var(--ink);
}
.event-preview::before {
  content: ''; position: absolute; top: 0; right: 0; width: 240px; height: 100%;
  background:
    radial-gradient(circle at 70% 50%, var(--signal-glow), transparent 70%);
  pointer-events: none;
}
.event-preview .ep-label {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: oklch(0.78 0.1 240); margin-bottom: 14px;
  font-weight: 500;
}
.event-preview .ep-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3vw, 40px); margin-bottom: 8px; line-height: 1.05; letter-spacing: -0.03em; }
.event-preview .ep-date { font-family: var(--font-mono); font-size: 12px; color: rgba(236, 239, 243, 0.7); margin-bottom: 24px; letter-spacing: 0.04em; }
.event-preview p { color: rgba(236, 239, 243, 0.8); font-size: 14.5px; line-height: 1.6; max-width: 680px; margin-bottom: 24px; }
.event-preview .ep-trackers {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 20px;
  border-top: 1px solid rgba(236, 239, 243, 0.15); padding-top: 24px;
}
.event-preview .ep-tracker {
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(236, 239, 243, 0.55);
}
.event-preview .ep-tracker .tracker-val {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  color: var(--paper); margin-top: 6px; text-transform: none; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

/* ========================================================================== */
/* DINNER TABLE                                                                */
/* ========================================================================== */
.menu-card {
  background: var(--paper-warm);
  border: 1px solid var(--hairline);
  padding: 56px 64px;
  margin-top: 32px;
  position: relative;
}
@media (max-width: 720px) { .menu-card { padding: 32px 24px; } }
.menu-card::before, .menu-card::after {
  content: ''; position: absolute;
  width: 20px; height: 20px;
  border: 1px solid var(--ink);
}
.menu-card::before { top: 16px; left: 16px; border-right: none; border-bottom: none; }
.menu-card::after  { bottom: 16px; right: 16px; border-left: none; border-top: none; }

.menu-header { text-align: center; margin-bottom: 36px; }
.menu-header svg { width: 28px; height: 28px; margin: 0 auto 14px; color: var(--ink); }
.menu-establishment {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--slate);
}
.menu-title { font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); font-weight: 700; margin: 8px 0; letter-spacing: -0.04em; line-height: 1; }
.menu-title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--signal); letter-spacing: -0.02em; }
.menu-date { font-family: var(--font-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.12em; }

.menu-host-block {
  display: flex; gap: 24px; align-items: center;
  padding: 24px 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  margin-bottom: 32px;
}
@media (max-width: 480px) { .menu-host-block { flex-direction: column; text-align: center; } }
.menu-host-block .host-avatar {
  width: 72px; height: 72px; min-width: 72px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 30px;
}
.menu-host-block .host-info .host-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.menu-host-block .host-info .host-name { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.015em; }
.menu-host-block .host-info .host-bio { font-size: 13.5px; color: var(--slate); margin-top: 6px; max-width: 460px; line-height: 1.5; }

.scene-set {
  font-family: var(--font-serif); font-style: italic;
  font-size: 19px; line-height: 1.5; color: var(--graphite);
  margin-bottom: 40px; padding: 0 0 0 24px;
  border-left: 2px solid var(--signal);
}
.menu-courses .course-divider {
  text-align: center;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--muted);
  margin: 40px 0 20px; display: flex; align-items: center; gap: 16px;
}
.menu-courses .course-divider::before, .menu-courses .course-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--hairline);
}
.menu-item { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px dotted var(--rule); }
.menu-item:last-child { border-bottom: none; }
.menu-item-header { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 8px; }
.menu-item-name { font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: -0.02em; }
.menu-item-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--signal); white-space: nowrap; font-weight: 500; }
.menu-item-desc { font-size: 14.5px; line-height: 1.65; color: var(--graphite); }
.menu-item-verdict {
  font-size: 14px; color: var(--slate); margin-top: 10px; font-style: italic; font-family: var(--font-serif);
  padding-left: 14px; border-left: 1px solid var(--rule);
}
.menu-footer {
  text-align: center; margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase;
}

/* ========================================================================== */
/* READING ROOM                                                                */
/* ========================================================================== */
.library-frame {
  background: var(--paper-warm); border: 1px solid var(--hairline);
  padding: 36px; margin-top: 20px; max-width: 980px;
}
.library-intro {
  font-family: var(--font-serif); font-style: italic;
  font-size: 18px; color: var(--graphite); line-height: 1.55;
  margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px dashed var(--rule);
}
.stack-row { display: flex; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--hairline); align-items: flex-start; }
.stack-row:last-child { border-bottom: none; }
.stack-spine {
  width: 20px; min-width: 20px; height: 120px;
  background: var(--ink); border-radius: 2px;
  position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 10px;
}
.stack-spine::before {
  content: ''; position: absolute; left: 4px; right: 4px; top: 8px; height: 1px;
  background: var(--paper); opacity: 0.5;
}
.stack-spine .call-number {
  color: var(--paper); font-family: var(--font-mono); font-size: 8px; font-weight: 500;
  text-align: center; letter-spacing: 0.06em; writing-mode: vertical-rl; transform: rotate(180deg);
}
.stack-content { flex: 1; }
.stack-content .stack-call { font-family: var(--font-mono); font-size: 10px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.stack-content .stack-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin: 6px 0 6px; letter-spacing: -0.02em; line-height: 1.15; }
.stack-content .stack-author { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-bottom: 10px; letter-spacing: 0.04em; }
.stack-content .stack-abstract { font-size: 14px; line-height: 1.6; color: var(--graphite); }
.stack-content .stack-link {
  font-family: var(--font-mono); font-size: 11px; margin-top: 12px; display: inline-block;
  letter-spacing: 0.04em; color: var(--signal); text-decoration: none;
  border-bottom: 1px solid var(--signal);
}

/* Briefing newspaper */
.briefing-masthead {
  border-top: 2px solid var(--ink); border-bottom: 1px solid var(--ink);
  padding: 14px 0; margin-bottom: 32px;
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em;
  flex-wrap: wrap; gap: 8px;
}
.briefing-columns { column-count: 3; column-gap: 32px; column-rule: 1px solid var(--hairline); }
@media (max-width: 960px) { .briefing-columns { column-count: 2; } }
@media (max-width: 600px) { .briefing-columns { column-count: 1; } }
.briefing-item { break-inside: avoid; margin-bottom: 26px; padding-bottom: 22px; border-bottom: 1px solid var(--hairline); }
.briefing-item .b-eyebrow { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--signal); font-weight: 500; margin-bottom: 8px; }
.briefing-item h4 { font-family: var(--font-display); font-size: 21px; line-height: 1.15; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.025em; }
.briefing-item p { font-size: 13.5px; line-height: 1.55; margin-bottom: 8px; color: var(--graphite); }
.briefing-item .source { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); letter-spacing: 0.04em; }
.briefing-item .source a { color: var(--ink); text-decoration: underline; }
.briefing-item.lead h4 { font-size: 26px; }

/* ========================================================================== */
/* GREAT HALL — longform                                                       */
/* ========================================================================== */
.longform-hero {
  background: var(--ink); color: var(--paper);
  padding: 88px 24px 72px;
  position: relative; overflow: hidden;
}
.longform-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 30%, oklch(0.5 0.18 250 / 0.3), transparent 50%),
    radial-gradient(circle at 20% 80%, oklch(0.5 0.18 280 / 0.2), transparent 50%);
  pointer-events: none;
}
.longform-hero-inner { max-width: 880px; margin: 0 auto; position: relative; }
.longform-hero .eyebrow { color: rgba(236, 239, 243, 0.6); margin-bottom: 16px; display: block; }
.longform-hero h2 { color: var(--paper); margin-bottom: 24px; font-size: clamp(36px, 6vw, 72px); font-weight: 700; letter-spacing: -0.03em; }
.longform-hero h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: oklch(0.78 0.1 240); }
.longform-hero .deck { color: rgba(236, 239, 243, 0.8); font-family: var(--font-serif); font-style: italic; font-size: clamp(20px, 2vw, 26px); line-height: 1.4; margin-bottom: 40px; max-width: 760px; }
.longform-hero .reading-meta {
  display: flex; gap: 24px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  color: rgba(236, 239, 243, 0.55); text-transform: uppercase;
  border-top: 1px solid rgba(236, 239, 243, 0.15); padding-top: 28px; flex-wrap: wrap;
}
.longform-body { padding: var(--gap-2xl) 0; }
.longform-body .container { max-width: 720px; }
.longform-body p { font-size: 17px; line-height: 1.75; color: var(--graphite); max-width: 680px; }
.longform-body p.lede { font-family: var(--font-serif); font-style: italic; font-size: 24px; line-height: 1.42; color: var(--ink); margin-bottom: 40px; font-weight: 400; letter-spacing: -0.005em; }
.longform-body h3 { margin-top: 56px; margin-bottom: 20px; max-width: 680px; font-size: clamp(26px, 3vw, 36px); font-weight: 700; letter-spacing: -0.025em; }
.longform-body h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--signal); }
.longform-body blockquote {
  border-left: 2px solid var(--signal);
  padding: 14px 0 14px 28px; margin: 40px 0;
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px); line-height: 1.35;
  max-width: 680px; letter-spacing: -0.01em;
  color: var(--ink);
}
.longform-body blockquote cite {
  display: block; font-style: normal; font-family: var(--font-mono);
  font-weight: 500; font-size: 11px; color: var(--muted);
  margin-top: 14px; letter-spacing: 0.1em; text-transform: uppercase;
}

.comparison-table { margin: 48px 0; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.comparison-row {
  display: grid; grid-template-columns: 160px 1fr 1fr;
  border-bottom: 1px solid var(--hairline); padding: 20px 0; align-items: start; gap: 24px;
}
@media (max-width: 700px) { .comparison-row { grid-template-columns: 1fr; gap: 8px; } }
.comparison-row:last-child { border-bottom: none; }
.comparison-row.header { background: transparent; font-family: var(--font-mono); font-weight: 500; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); padding: 14px 0; }
.comparison-row .col-label { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.015em; }
.comparison-row .col-content { font-size: 14px; line-height: 1.5; color: var(--graphite); }
.comparison-row.new-row { background: var(--paper-warm); padding-left: 16px; padding-right: 16px; }
.comparison-row.new-row .col-label { color: var(--signal); }

.broadcast-preview {
  background: var(--ink); color: var(--paper);
  margin: 48px 0; display: grid; grid-template-columns: 1fr 220px;
  position: relative; overflow: hidden;
}
@media (max-width: 600px) { .broadcast-preview { grid-template-columns: 1fr; } }
.broadcast-preview .bp-content { padding: 32px; }
.broadcast-preview .bp-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: oklch(0.78 0.1 240); margin-bottom: 10px; }
.broadcast-preview .bp-title { font-family: var(--font-display); font-weight: 700; font-size: 26px; line-height: 1.1; margin-bottom: 10px; letter-spacing: -0.025em; }
.broadcast-preview .bp-desc { font-size: 14px; color: rgba(236, 239, 243, 0.75); line-height: 1.55; margin-bottom: 18px; max-width: 480px; }
.broadcast-preview .bp-cta { font-family: var(--font-mono); font-size: 11px; color: var(--paper); text-decoration: underline; font-weight: 500; letter-spacing: 0.08em; }
.broadcast-preview .qr-box { background: var(--paper); display: flex; align-items: center; justify-content: center; padding: 28px; }
.qr-grid { width: 144px; height: 144px; display: grid; grid-template-columns: repeat(13, 1fr); gap: 1px; background: var(--ink); padding: 6px; }
.qr-grid div { background: var(--ink); }
.qr-grid div.light { background: var(--paper); }

.citation-panel {
  background: var(--paper-warm); border: 1px solid var(--hairline);
  padding: 28px 32px; margin: 40px 0;
}
.citation-panel .eyebrow { display: block; margin-bottom: 14px; }
.citation-panel ul { list-style: none; padding: 0; }
.citation-panel li { padding: 10px 0; border-bottom: 1px solid var(--hairline); font-size: 14px; line-height: 1.5; color: var(--graphite); }
.citation-panel li:last-child { border-bottom: none; }
.citation-panel li strong { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--ink); letter-spacing: -0.005em; }

/* ========================================================================== */
/* COUNTERTOP TALK                                                             */
/* ========================================================================== */
.countertop-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; margin-top: 32px; }
@media (max-width: 960px) { .countertop-layout { grid-template-columns: 1fr; gap: 48px; } }

/* Hot takes */
.hot-takes-sidebar {
  background: var(--paper-warm); border: 1px solid var(--hairline);
  padding: 24px; align-self: start;
  position: sticky; top: 100px;
}
.hot-takes-sidebar .eyebrow { display: block; margin-bottom: 6px; color: var(--signal); }
.hot-takes-sidebar h3 { font-size: 24px; margin-bottom: 8px; }
.hot-takes-sidebar p.sidebar-deck {
  font-size: 12.5px; color: var(--slate); line-height: 1.5;
  margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--hairline);
}
.hot-take { padding: 16px 0; border-bottom: 1px dashed var(--rule); }
.hot-take:last-of-type { border-bottom: none; padding-bottom: 4px; }
.hot-take .ht-topic { font-family: var(--font-mono); font-size: 9.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--signal); margin-bottom: 8px; }
.hot-take .ht-quote { font-family: var(--font-serif); font-style: italic; font-size: 17px; line-height: 1.4; color: var(--ink); margin-bottom: 8px; font-weight: 400; }
.hot-take .ht-attribution { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); letter-spacing: 0.04em; }
.hot-take .ht-source-tag {
  display: inline-block; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--paper); color: var(--ink); padding: 2px 8px;
  border: 1px solid var(--hairline);
  margin-left: 8px; font-weight: 500;
}
.submit-cta {
  margin-top: 20px; padding: 14px; background: var(--ink); color: var(--paper);
  text-align: center; font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  display: block; text-decoration: none;
}
.submit-cta:hover { background: var(--signal); color: var(--paper); }

/* Stack */
.stack-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); margin-top: 20px; }
.stack-card { background: var(--paper); }
.stack-card .stack-card-header { padding: 20px; border-bottom: 1px solid var(--hairline); }
.stack-card .stack-card-header .name { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.015em; }
.stack-card .stack-card-header .role { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); margin-top: 4px; letter-spacing: 0.06em; text-transform: uppercase; }
.stack-card .stack-card-header .quote { font-family: var(--font-serif); font-style: italic; font-size: 15px; line-height: 1.45; color: var(--graphite); margin-top: 12px; font-weight: 400; }
.stack-visual { padding: 20px; display: flex; gap: 14px; }
.stack-bars {
  width: 56px; min-width: 56px;
  display: flex; flex-direction: column-reverse;
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.stack-bars .seg {
  color: var(--paper); text-align: center;
  font-family: var(--font-mono); font-size: 8.5px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.06em; padding: 2px 0;
}
.seg.l1 { background: oklch(0.32 0.04 250); }
.seg.l2 { background: oklch(0.28 0.04 250); }
.seg.l3 { background: oklch(0.24 0.04 250); }
.seg.l4 { background: oklch(0.36 0.04 250); }
.seg.l5 { background: oklch(0.42 0.04 250); }
.seg.l6 { background: oklch(0.30 0.04 250); }
.seg.l7 { background: oklch(0.20 0.04 250); }
.stack-labels { flex: 1; display: flex; flex-direction: column-reverse; gap: 4px; }
.stack-labels .label-row { display: flex; align-items: center; gap: 8px; font-size: 11px; border-bottom: 1px dotted var(--hairline); padding-bottom: 4px; min-height: 18px; }
.stack-labels .label-row .layer-tag { font-family: var(--font-mono); font-weight: 500; color: var(--muted); font-size: 9px; letter-spacing: 0.08em; min-width: 22px; }
.stack-labels .label-row .tool { color: var(--graphite); }
.stack-labels .label-row .tool strong { color: var(--signal); }
.stack-legend { margin-top: 24px; padding: 22px; background: var(--paper-warm); border: 1px solid var(--hairline); font-size: 13px; line-height: 1.55; }
.stack-legend .eyebrow { display: block; margin-bottom: 10px; }
.stack-legend table { width: 100%; font-family: var(--font-mono); font-size: 11.5px; border-collapse: collapse; }
.stack-legend td { padding: 5px 0; border-bottom: 1px dotted var(--hairline); }
.stack-legend td:first-child { font-weight: 500; width: 40px; color: var(--signal); }
.stack-legend td:nth-child(2) { font-weight: 500; color: var(--ink); }
.stack-legend td:last-child { color: var(--muted); }

/* Kitchen Studio */
.kitchen-frame {
  background: var(--ink); color: var(--paper);
  padding: 48px 36px; margin-top: 48px;
  position: relative; overflow: hidden;
}
.kitchen-frame::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 10%, oklch(0.5 0.18 250 / 0.25), transparent 40%);
  pointer-events: none;
}
.kitchen-frame > * { position: relative; }
.kitchen-frame .eyebrow { color: oklch(0.78 0.1 240); display: block; margin-bottom: 8px; }
.kitchen-frame h3 { color: var(--paper); margin: 10px 0 18px; font-size: clamp(24px, 2.8vw, 32px); }
.kitchen-frame p { color: rgba(236, 239, 243, 0.85); font-size: 15px; line-height: 1.65; }
.kitchen-frame p.lede { font-family: var(--font-display); color: var(--paper); font-size: 19px; line-height: 1.4; }
.kitchen-frame .code-block {
  background: rgba(255,255,255,0.04); border-left: 2px solid var(--signal);
  padding: 16px 20px; font-family: var(--font-mono); font-size: 11.5px; line-height: 1.75;
  color: rgba(236, 239, 243, 0.85); margin: 16px 0;
}
.kitchen-frame .workflow-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08);
  margin: 18px 0;
}
.kitchen-frame .workflow-step {
  background: var(--ink); padding: 18px 16px;
  font-size: 12.5px; line-height: 1.5; color: rgba(236, 239, 243, 0.8);
}
.kitchen-frame .step-num { font-family: var(--font-display); font-size: 28px; color: var(--paper); }
.kitchen-frame .step-label { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: oklch(0.78 0.1 240); margin: 8px 0 8px; font-weight: 500; }

/* ========================================================================== */
/* FOOTER                                                                      */
/* ========================================================================== */
footer.report-footer {
  background: var(--ink); color: var(--paper);
  padding: 88px 24px 56px; margin-top: 96px;
  position: relative; overflow: hidden;
}
footer.report-footer::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top, oklch(0.5 0.18 250 / 0.25), transparent 50%);
  pointer-events: none;
}
footer.report-footer .footer-inner { max-width: 1180px; margin: 0 auto; position: relative; }
footer.report-footer .closing-word { border-bottom: 1px solid rgba(236, 239, 243, 0.15); padding-bottom: 48px; margin-bottom: 32px; }
footer.report-footer .closing-word .eyebrow { color: oklch(0.78 0.1 240); }
footer.report-footer .closing-word h3 { color: var(--paper); margin-top: 12px; margin-bottom: 24px; font-size: clamp(32px, 4vw, 56px); letter-spacing: -0.03em; font-weight: 700; }
footer.report-footer .closing-word h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: oklch(0.78 0.1 240); }
footer.report-footer .closing-word p { color: rgba(236, 239, 243, 0.85); max-width: 760px; font-size: 16px; line-height: 1.65; }
footer.report-footer .footer-meta {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px;
  font-family: var(--font-mono); font-size: 11px; color: rgba(236, 239, 243, 0.5); letter-spacing: 0.12em;
}

/* ========================================================================== */
/* SCROLL REVEAL                                                               */
/* ========================================================================== */
.reveal { transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.pre-reveal { opacity: 0; transform: translateY(16px); }
.reveal-delay-1.pre-reveal { transition-delay: 80ms; }
.reveal-delay-2.pre-reveal { transition-delay: 160ms; }
.reveal-delay-3.pre-reveal { transition-delay: 240ms; }

section[id] { scroll-margin-top: 80px; }

/* ========================================================================== */
/* TWEAKS PANEL                                                                */
/* ========================================================================== */
.tweaks-panel {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  background: var(--paper); border: 1px solid var(--hairline);
  padding: 20px; width: 280px;
  box-shadow: 0 16px 48px rgba(11, 15, 20, 0.12);
  font-family: var(--font-sans);
  display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-panel .tw-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--hairline); }
.tweaks-panel .tw-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); font-weight: 600; }
.tweaks-panel .tw-close { background: transparent; border: none; font-size: 18px; color: var(--muted); padding: 0; }
.tweaks-panel .tw-section-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.tweaks-panel .tw-segmented {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--hairline); border-radius: 2px;
  overflow: hidden;
}
.tweaks-panel .tw-segmented button {
  padding: 10px 8px; background: var(--paper); border: none;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--slate);
  border-right: 1px solid var(--hairline);
}
.tweaks-panel .tw-segmented button:last-child { border-right: none; }
.tweaks-panel .tw-segmented button.active { background: var(--ink); color: var(--paper); }
.tweaks-panel .tw-hint { font-size: 11.5px; color: var(--muted); margin-top: 12px; line-height: 1.5; }

/* ==========================================================================
   PLACEHOLDERS · image / video / audio / diagram / chart
   Striped fields with monospace explainers — never hand-draw imagery.
   ========================================================================== */
.ph {
  position: relative;
  background-color: var(--paper-warm);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 12px,
    rgba(11, 15, 20, 0.04) 12px,
    rgba(11, 15, 20, 0.04) 13px
  );
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate);
  overflow: hidden;
}
.ph .ph-inner { padding: 24px; max-width: 80%; }
.ph .ph-label { color: var(--ink); font-weight: 600; margin-bottom: 6px; display: block; letter-spacing: 0.16em; }
.ph .ph-meta  { color: var(--muted); font-size: 10px; letter-spacing: 0.1em; margin-top: 8px; }
.ph .ph-corner {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em;
  background: var(--ink); color: var(--paper);
  padding: 4px 8px; text-transform: uppercase; font-weight: 600;
}
.ph .ph-dim {
  position: absolute; bottom: 12px; right: 12px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; color: var(--muted);
}

.ph-image { aspect-ratio: 16 / 9; }
.ph-image.portrait { aspect-ratio: 4 / 5; }
.ph-image.square   { aspect-ratio: 1 / 1; }

.ph-figure { margin: 32px 0; }
.ph-figure figcaption {
  font-family: var(--font-serif); font-style: italic;
  font-size: 14px; line-height: 1.5; color: var(--slate);
  margin-top: 12px; max-width: 680px;
}

/* Diagram placeholder — wider, with corner ticks */
.ph-diagram { aspect-ratio: 21 / 9; }
.ph-diagram::before, .ph-diagram::after,
.ph-diagram .tick-tr, .ph-diagram .tick-bl {
  content: ''; position: absolute; width: 14px; height: 14px;
  border: 1px solid var(--ink);
}
.ph-diagram::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.ph-diagram::after  { bottom: 0; right: 0; border-left: none; border-top: none; }
.ph-diagram .tick-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.ph-diagram .tick-bl { bottom: 0; left: 0; border-right: none; border-top: none; }

/* Video player block (Great Hall) — large, controls */
.ph-media {
  background: var(--ink); color: var(--paper);
  display: grid; grid-template-columns: 1fr; gap: 0;
  margin: 48px 0;
  border: 1px solid var(--ink);
  position: relative; overflow: hidden;
}
.ph-media .pm-frame {
  aspect-ratio: 16 / 9;
  position: relative;
  background-color: oklch(0.12 0.02 250);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 16px,
    rgba(255, 255, 255, 0.025) 16px,
    rgba(255, 255, 255, 0.025) 17px
  );
  display: flex; align-items: center; justify-content: center;
}
.ph-media .pm-frame::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, oklch(0.5 0.18 250 / 0.18), transparent 50%);
  pointer-events: none;
}
.ph-media .pm-play {
  width: 72px; height: 72px; border-radius: 50%;
  border: 1.5px solid var(--paper); background: rgba(11, 15, 20, 0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--paper); cursor: pointer;
  transition: transform .2s, background .2s;
  z-index: 2;
}
.ph-media .pm-play:hover { transform: scale(1.08); background: var(--signal); border-color: var(--signal); }
.ph-media .pm-play svg { width: 26px; height: 26px; margin-left: 4px; }
.ph-media .pm-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(236, 239, 243, 0.7);
  border-top: 1px solid rgba(236, 239, 243, 0.1);
  flex-wrap: wrap; gap: 12px;
}
.ph-media .pm-meta .pm-title { color: var(--paper); font-weight: 600; }
.ph-media .pm-progress {
  flex: 1; height: 2px; background: rgba(236, 239, 243, 0.15); position: relative;
  min-width: 120px;
}
.ph-media .pm-progress::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 18%;
  background: var(--signal);
}
.ph-media .pm-corner {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.16em;
  background: var(--signal); color: var(--paper);
  padding: 4px 8px; text-transform: uppercase; font-weight: 600;
  z-index: 2;
}
.ph-media .pm-runtime {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em;
  color: rgba(236, 239, 243, 0.7);
  z-index: 2;
}

/* Audio player block — slimmer */
.ph-media.audio .pm-frame {
  aspect-ratio: auto;
  height: 120px;
  background-image: none;
  position: relative;
}
.ph-media.audio .pm-frame .waveform {
  position: absolute; inset: 24px 80px 24px 80px;
  display: flex; align-items: center; gap: 2px;
}
.ph-media.audio .pm-frame .waveform .bar {
  flex: 1; background: rgba(236, 239, 243, 0.35); border-radius: 1px;
  min-height: 4px;
}
.ph-media.audio .pm-frame .waveform .bar.active { background: var(--signal); }

/* Comparison chart (law/economics) — table chart placeholder */
.compare-chart {
  margin: 48px 0;
  border: 1px solid var(--ink);
  background: var(--paper);
}
.compare-chart-head {
  background: var(--ink); color: var(--paper);
  padding: 18px 24px;
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  flex-wrap: wrap;
}
.compare-chart-head .cc-title {
  font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.015em;
}
.compare-chart-head .cc-source {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(236, 239, 243, 0.6);
}
.compare-chart-body { padding: 24px; }
.compare-chart-row {
  display: grid;
  grid-template-columns: 160px 1fr 110px;
  gap: 24px; align-items: center;
  padding: 14px 0; border-bottom: 1px dotted var(--rule);
}
.compare-chart-row:last-child { border-bottom: none; }
@media (max-width: 700px) { .compare-chart-row { grid-template-columns: 1fr; gap: 8px; } }
.compare-chart-row.head {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); padding-bottom: 12px; border-bottom: 1px solid var(--ink);
}
.compare-chart-row .cc-label {
  font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: -0.01em;
}
.compare-chart-row .cc-bar-wrap { position: relative; height: 28px; display: flex; align-items: center; }
.compare-chart-row .cc-bar {
  height: 14px; background: var(--ink); border-radius: 1px;
  position: relative;
  transition: width 1.6s var(--ease-out);
}
.compare-chart-row .cc-bar.signal { background: var(--signal); }
.compare-chart-row .cc-bar.outline { background: transparent; border: 1px solid var(--ink); }
.compare-chart-row .cc-bar.outline.signal { border-color: var(--signal); background: transparent; }
.compare-chart-row .cc-val {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink);
  font-variant-numeric: tabular-nums; text-align: right;
}
.compare-chart-foot {
  padding: 14px 24px;
  font-family: var(--font-serif); font-style: italic; font-size: 13px;
  color: var(--slate); border-top: 1px solid var(--hairline);
}

/* ==========================================================================
   FILTERED BRIEFING (The Yard)
   ========================================================================== */
.filter-row {
  display: flex; gap: 8px; flex-wrap: wrap; margin: 20px 0 28px;
  padding: 14px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--hairline);
}
.filter-row .filter-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); padding: 6px 0;
  margin-right: 8px;
}
.filter-row .filter-chip {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 6px 12px;
  background: var(--paper); color: var(--slate);
  border: 1px solid var(--rule);
  cursor: pointer;
  transition: all .2s;
  font-weight: 500;
}
.filter-row .filter-chip:hover { color: var(--ink); border-color: var(--ink); }
.filter-row .filter-chip.active {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.filter-row .filter-chip .count {
  margin-left: 6px; opacity: 0.6; font-weight: 400;
}
.briefing-item { transition: opacity .25s; }
.briefing-item.hidden { display: none; }

/* ==========================================================================
   PRINT + NON-INTERACTIVE
   Hide all interactive chrome on print
   ========================================================================== */
@media print {
  .top-chrome, .chapter-rail, .tweaks-panel, .ticker-strip,
  .filter-row, .ph-media .pm-play,
  .submit-cta { display: none !important; }
  body { background: white; color: black; }
  .dashboard, .longform-hero, .event-preview, .kitchen-frame, .ph-media, footer.report-footer {
    background: white !important; color: black !important;
  }
  .dashboard *, .longform-hero *, .event-preview *, .kitchen-frame *, footer.report-footer * {
    color: black !important;
  }
  section.major { page-break-inside: avoid; padding: 32px 0; }
  .briefing-columns { column-count: 2; }
  a { color: black; }
}

/* Hide chrome when user prefers reduced motion + minimal */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; }
  .ticker-strip .ticker-track { animation: none; }
  .live-dot, .dc-eyebrow .dot { animation: none; }
}
