/* 
 * Tipao Master Stylesheet
 * SINGLE SOURCE OF TRUTH for all Tipao episodes
 * Location: /intelligence/tipao-master.css
 * 
 * Episodes should ONLY contain:
 * 1. This stylesheet link
 * 2. Episode-specific content (text/data)
 * 3. NO embedded <style> blocks
 */

/* ==================== ROOT VARIABLES ==================== */
:root {
  /* Colors */
  --bg: #070914;
  --paper: #fafaf9;
  --paper-dark: #f5f5f4;
  --ink: #1c1917;
  --ink-light: #44403c;
  --ink-muted: #78716c;
  --muted: #9fb0c6;
  --muted2: #7a8a9f;
  --accent-primary: #0ea5e9;
  --accent-secondary: #10b981;
  --line-subtle: #e7e5e4;
  --line-medium: #d6d3d1;
  
  /* Shadows & Effects */
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --shadow-sm: 0 4px 12px rgba(0,0,0,.35);
  --radius: 8px;
  --radius2: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Typography */
  --font-serif: 'Merriweather', 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  
  /* MERCO Agent Colors */
  --merco-mentor: #0ea5e9;
  --merco-evaluator: #8b5cf6;
  --merco-recommender: #10b981;
  --merco-coordinator: #f59e0b;
  --merco-optimizer: #ef4444;
}

/* ==================== GLOBAL RESET ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: var(--font-serif);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, canvas, svg {
  max-width: 100%;
  height: auto;
}

/* ==================== SPLASH / BOOT SEQUENCE ==================== */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(7,9,12,1), rgba(7,9,12,.98));
  overflow: hidden;
}

.splash::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(900px 500px at 50% 20%, rgba(147,197,253,.16), transparent 60%),
    radial-gradient(700px 500px at 30% 70%, rgba(52,211,153,.10), transparent 60%),
    radial-gradient(700px 500px at 70% 80%, rgba(251,113,133,.08), transparent 60%);
  filter: blur(1px);
  opacity: .9;
}

.splash .cornerLogo {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: .95;
  z-index: 2;
}

.mark {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}

.mark svg {
  opacity: .95;
}

.brandText {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  color: white;
}

.brandText .t1 {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
}

.brandText .t2 {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* Watermark silhouette */
.watermark {
  position: absolute;
  inset: -10%;
  opacity: .12;
  z-index: 1;
  pointer-events: none;
  transform: rotate(-8deg);
}

.watermark svg {
  width: 140%;
  height: 140%;
  filter: blur(.2px);
}

.watermark img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(58vw, 540px);
  height: auto;
  transform: translate(-50%, -50%) rotate(-6deg);
  opacity: .72;
  filter: grayscale(1) contrast(1.05) brightness(1.08);
}

.splashInner {
  position: relative;
  z-index: 3;
  width: min(980px, calc(100% - 44px));
  text-align: center;
  padding: 46px 18px 34px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(12,15,20,.48);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.splashKicker {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted2);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.splashLine {
  font-size: clamp(18px, 2.2vw, 30px);
  line-height: 1.25;
  font-weight: 700;
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .9s ease, transform .9s ease;
  min-height: 3.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  color: white;
}

.splashLine.show {
  opacity: 1;
  transform: translateY(0);
}

.splashProgress {
  margin-top: 18px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  overflow: hidden;
}

.splashProgress > div {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(147,197,253,.95), rgba(52,211,153,.9), rgba(251,113,133,.85));
  border-radius: 999px;
  transition: width .25s linear;
}

.splashHint {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted2);
  opacity: 0;
  transition: opacity .5s ease .4s;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.splashHint .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted2);
  opacity: 0.6;
}

.splashHint.show {
  opacity: 1;
}

/* ==================== MAIN PAGE STRUCTURE ==================== */
.page,
.publication-wrapper {
  min-height: 100vh;
  padding: 0;
  opacity: 0;
  transition: opacity .5s ease;
}

.page.ready,
.publication-wrapper.ready {
  opacity: 1;
}

.publication {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(12px, 2.6vw, 28px) clamp(24px, 5vw, 80px);
  padding-bottom: calc(clamp(24px, 5vw, 80px) + 64px);
}

/* Support for article.publication structure */
article.publication {
  background: var(--paper);
  padding: clamp(24px, 5vw, 48px);
  padding-bottom: calc(clamp(24px, 5vw, 48px) + 64px);
  border-radius: var(--radius);
  line-height: 1.7;
  max-width: 100%;
}

article.publication p {
  margin: 1.2em 0;
  color: var(--ink);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.7;
}

article.publication h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin: 1.8em 0 .8em;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
}

article.publication h3 {
  font-size: clamp(18px, 2.4vw, 24px);
  margin: 1.4em 0 .6em;
  color: var(--ink-light);
  font-weight: 600;
}

article.publication strong {
  font-weight: 700;
  color: var(--ink);
}

article.publication em {
  font-style: italic;
}

article.publication a {
  color: var(--accent-primary);
  text-decoration: underline;
  text-decoration-color: rgba(14, 165, 233, 0.3);
  text-underline-offset: 2px;
  transition: var(--transition);
}

article.publication a:hover {
  text-decoration-color: var(--accent-primary);
}

/* ==================== HEADER / MASTHEAD ==================== */
.header {
  border-bottom: 1px solid var(--line-medium);
  padding-bottom: 28px;
  margin-bottom: 32px;
  background: var(--paper);
}

.tipaoMark {
  width: min(260px, 100%);
  margin: 0 auto 20px;
}

.tipaoMarkImage {
  display: block;
  width: min(230px, 100%);
  margin: 0 auto;
  height: auto;
  filter: grayscale(1) contrast(1.04);
}

.tipaoMark svg {
  width: 100%;
  height: auto;
}

.issueKicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: 8px;
}

.headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 14px;
  text-align: center;
}

.subheadline {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--ink-light);
  line-height: 1.35;
  text-align: center;
  margin: 0 0 18px;
}

.byline {
  text-align: center;
  font-size: 14px;
  color: var(--ink-muted);
  font-family: var(--font-sans);
}

.byline .author {
  font-weight: 600;
  color: var(--ink-light);
}

.byline-credits {
  margin-top: 8px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-muted);
  font-family: var(--font-sans);
}

/* ==================== ARTICLE TYPOGRAPHY ==================== */
article {
  background: var(--paper);
  padding: clamp(24px, 5vw, 48px);
  border-radius: var(--radius);
  line-height: 1.55;
}

article p {
  margin: 1.2em 0;
  color: var(--ink);
  font-size: clamp(16px, 1.8vw, 18px);
}

article p:first-of-type {
  margin-top: 0;
}

article p:last-of-type {
  margin-bottom: 0;
}

article h2 {
  font-size: clamp(22px, 3vw, 32px);
  margin: 1.8em 0 .8em;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
}

article h3 {
  font-size: clamp(18px, 2.4vw, 24px);
  margin: 1.4em 0 .6em;
  color: var(--ink-light);
  font-weight: 600;
}

article strong {
  font-weight: 700;
  color: var(--ink);
}

article em {
  font-style: italic;
}

article a {
  color: var(--accent-primary);
  text-decoration: underline;
  text-decoration-color: rgba(14, 165, 233, 0.3);
  text-underline-offset: 2px;
  transition: var(--transition);
}

article a:hover {
  text-decoration-color: var(--accent-primary);
}

/* ==================== MERCO CALLOUTS ==================== */
.merco-callout {
  margin: 24px 0;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(14, 165, 233, 0.2);
  background: rgba(14, 165, 233, 0.05);
  cursor: pointer;
  transition: var(--transition);
}

.merco-callout:hover {
  border-color: rgba(14, 165, 233, 0.4);
  background: rgba(14, 165, 233, 0.08);
}

.merco-callout.mentor { border-color: rgba(14, 165, 233, 0.3); background: rgba(14, 165, 233, 0.06); }
.merco-callout.evaluator { border-color: rgba(139, 92, 246, 0.3); background: rgba(139, 92, 246, 0.06); }
.merco-callout.recommender { border-color: rgba(16, 185, 129, 0.3); background: rgba(16, 185, 129, 0.06); }
.merco-callout.coordinator { border-color: rgba(245, 158, 11, 0.3); background: rgba(245, 158, 11, 0.06); }
.merco-callout.optimizer { border-color: rgba(239, 68, 68, 0.3); background: rgba(239, 68, 68, 0.06); }

.merco-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.merco-callout.mentor .merco-label { color: var(--merco-mentor); }
.merco-callout.evaluator .merco-label { color: var(--merco-evaluator); }
.merco-callout.recommender .merco-label { color: var(--merco-recommender); }
.merco-callout.coordinator .merco-label { color: var(--merco-coordinator); }
.merco-callout.optimizer .merco-label { color: var(--merco-optimizer); }

.merco-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-light);
}

/* ==================== INCIDENT REFERENCES / NEWS PILLS ==================== */
.incident-refs {
  margin: 32px 0;
}

.incident-refs-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
  font-weight: 700;
}

.incident-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.incident-pill {
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.incident-pill:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  border-color: var(--accent-primary);
}

.incident-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
}

.incident-content {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.incident-headline {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  font-family: var(--font-sans);
}

.incident-source {
  font-size: 12px;
  color: var(--ink-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ==================== FOOTER ==================== */
.footer {
  margin-top: 60px;
  padding: 24px;
  border-top: 1px solid var(--line-medium);
  text-align: center;
  background: var(--paper-dark);
}

.footer-text {
  font-size: 12px;
  color: var(--ink-muted);
  font-family: var(--font-sans);
  line-height: 1.6;
}

.footer a {
  color: var(--accent-primary);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* ==================== RESPONSIVE ADJUSTMENTS ==================== */
@media (max-width: 640px) {
  .publication {
    padding: clamp(16px, 5vw, 24px);
  }
  
  .incident-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  article {
    padding: clamp(18px, 5vw, 24px);
  }
}

/* ==================== UTILITY CLASSES ==================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

[data-tipao-clickable="true"],
.tipao-clickable {
  cursor: pointer;
}

/* ==================== PRINT STYLES ==================== */
@media print {
  .splash,
  .footer,
  .merco-callout {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .publication {
    padding: 0;
  }
  
  article {
    background: white;
  }
}


/* ==================== VISIBILITY: support both .ready and .visible ==================== */
.page.visible,
.publication-wrapper.visible {
  opacity: 1;
}

/* ==================== MASTHEAD ==================== */
.masthead {
  border-bottom: 2px solid var(--line-medium);
  background: rgba(250, 250, 249, 0.97);
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: clamp(10px, 1.8vw, 18px);
  box-shadow: 0 6px 18px rgba(28, 25, 23, 0.08);
  padding-bottom: 28px;
  margin-bottom: 32px;
  text-align: center;
}

.masthead-title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--ink);
  margin-bottom: 6px;
}

.masthead-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
}

.masthead-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.meta-divider {
  opacity: 0.4;
}

/* ==================== ARTICLE STRUCTURE ==================== */
.article {
  background: var(--paper);
  max-width: 100%;
}

.section {
  margin-bottom: 48px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-primary);
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(14,165,233,0.2);
}

.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 12px;
}

.subsection-title {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: var(--ink-light);
  line-height: 1.3;
  margin: 24px 0 12px;
}

.lede {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 400;
}

.body-text {
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.75;
  color: var(--ink-light);
}

.body-text p {
  margin: 1.1em 0;
  color: var(--ink);
  font-size: clamp(15px, 1.7vw, 17px);
}

.body-text ul {
  margin: 12px 0 12px 24px;
}

.body-text li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--ink);
}

.body-text blockquote {
  border-left: 3px solid var(--accent-primary);
  margin: 20px 0;
  padding: 12px 20px;
  font-style: italic;
  color: var(--ink-light);
  background: rgba(14,165,233,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.body-text strong {
  font-weight: 700;
  color: var(--ink);
}

/* ==================== MERCO INLINE ANCHORS ==================== */
.merco-anchor {
  border-bottom: 1px dashed var(--accent-primary);
  cursor: pointer;
  position: relative;
  display: inline;
}

.merco-chat-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: middle;
  cursor: pointer;
  flex-shrink: 0;
}

.merco-chat-indicator svg {
  width: 11px;
  height: 11px;
  fill: white;
}

.merco-chat-indicator.mentor { background: var(--merco-mentor); }
.merco-chat-indicator.evaluator { background: var(--merco-evaluator); }
.merco-chat-indicator.recommender { background: var(--merco-recommender); }
.merco-chat-indicator.coordinator { background: var(--merco-coordinator); }
.merco-chat-indicator.optimizer { background: var(--merco-optimizer); }

/* ==================== EVALUATOR BOX ==================== */
.evaluator-box {
  border: 1px solid rgba(139,92,246,0.25);
  background: rgba(139,92,246,0.05);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 20px 0;
}

.evaluator-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--merco-evaluator);
  margin-bottom: 8px;
}

.evaluator-explore {
  margin-top: 10px;
  font-size: 13px;
  color: var(--merco-evaluator);
  cursor: pointer;
  font-family: var(--font-sans);
}

/* ==================== RECOMMENDER CARD ==================== */
.recommender-card {
  border: 1px solid rgba(16,185,129,0.25);
  background: rgba(16,185,129,0.05);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 20px 0;
}

.recommender-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.recommender-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--merco-recommender);
}

.confidence-score {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--merco-recommender);
  background: rgba(16,185,129,0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.recommender-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.recommender-card p {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.5;
  margin-bottom: 10px;
}

.recommender-action {
  font-size: 13px;
  color: var(--merco-recommender);
  cursor: pointer;
  font-family: var(--font-sans);
}

/* ==================== OPTIMIZER HINT ==================== */
.optimizer-hint {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(239,68,68,0.2);
  background: rgba(239,68,68,0.04);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin: 20px 0;
}

.optimizer-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.optimizer-content p {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.5;
  margin-bottom: 8px;
}

.optimizer-action {
  font-size: 13px;
  color: var(--merco-optimizer);
  cursor: pointer;
}

/* ==================== COORDINATOR LINK ==================== */
.coordinator-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(245,158,11,0.25);
  background: rgba(245,158,11,0.05);
  border-radius: var(--radius);
  margin: 16px 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
  transition: var(--transition);
}

.coordinator-link:hover {
  border-color: rgba(245,158,11,0.5);
  background: rgba(245,158,11,0.09);
}

.coordinator-icon {
  width: 20px;
  height: 20px;
  fill: var(--merco-coordinator);
  flex-shrink: 0;
}

.coordinator-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--merco-coordinator);
}

.resource-type {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-muted);
  white-space: nowrap;
}

/* ==================== BOTTOM LINE ==================== */
.bottom-line {
  margin-top: 48px;
  padding: 28px;
  border: 2px solid var(--accent-primary);
  border-radius: var(--radius);
  background: rgba(14,165,233,0.04);
}

.bottom-line-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: 12px;
}

.bottom-line h3 {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.3;
}

.bottom-line p {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--ink-light);
  line-height: 1.7;
  margin: 10px 0;
}

.call-to-action {
  font-style: italic;
  color: var(--ink-light);
}

/* ==================== TICKER ==================== */
.tipao-ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: rgba(7,9,12,0.92);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  z-index: 1000;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
}

.tipao-ticker.visible {
  opacity: 1;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
  height: 44px;
  cursor: pointer;
  flex-shrink: 0;
}

.ticker-item:hover .ticker-label {
  color: white;
}

.ticker-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--accent-primary);
  background: rgba(14,165,233,0.12);
  padding: 2px 6px;
  border-radius: 3px;
}

.ticker-label {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-sans);
  transition: color 0.2s ease;
}

.ticker-hint {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.35);
}

/* ==================== PUBLICATION FOOTER ==================== */
.publication-footer {
  margin-top: 60px;
  padding: 28px 24px;
  border-top: 2px solid var(--line-medium);
  background: var(--paper-dark);
  text-align: center;
}

.footer-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
}

.footer-description {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 14px;
  font-family: var(--font-sans);
}

.footer-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-muted);
  opacity: 0.6;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-watermark {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-muted);
  opacity: 0.45;
  line-height: 1.8;
}

/* ==================== INCIDENT REFS SECTION ==================== */
.incident-refs {
  margin: 32px 0;
}

.incident-refs-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-primary);
  font-weight: 700;
  margin-bottom: 14px;
}
