  @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800;900&display=swap');

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

  :root {
    /* Ã¢ÂÂÃ¢ÂÂÃ¢ÂÂ FOUR FINGERS NEWS Ã¢ÂÂ WSJ/NYT NEWSPRINT PALETTE Ã¢ÂÂÃ¢ÂÂÃ¢ÂÂ
       White page, black ink, red nameplate. Structure from rules
       and typography, not from color. Atmosphere through accent
       sparingly, never through ground. */
    --bg: #ffffff;              /* pure paper */
    --surface: #ffffff;         /* cards blend into page, structure from rules */
    --surface-hover: #f5f5f5;   /* neutral gray hover */
    --border: #d4d4d4;          /* neutral gray rule */
    --border-glow: #b5b5b5;     /* darker neutral rule for emphasis */
    --text: #121212;            /* near-black ink */
    --text-dim: #333333;        /* body-secondary */
    --text-muted: #6b6b6b;      /* tertiary / bylines */
    --accent: #8b4513;          /* saddle-brown whiskey accent */
    --accent-glow: rgba(139, 69, 19, 0.12);
    --green: #2d7a3e;           /* readable market green */
    --red: #a42020;             /* nameplate red / market down */
    --amber: #b8860b;           /* dark goldenrod Ã¢ÂÂ readable */
    --copper: #8b4513;          /* same as accent, for compatibility */
    --brass: #8a6d3b;           /* muted brass for rules */
    --forest-dark: #121212;     /* neutralized Ã¢ÂÂ legacy alias for ink */
    --forest-light: #121212;    /* neutralized Ã¢ÂÂ legacy alias for ink */
    --mountain-blue: #34495e;
    --mountain-slate: #566573;
    --seahawks-green: #69BE28;
    --seahawks-blue: #002244;
    --mariners-teal: #005C5C;
    --mariners-blue: #0C2C56;
    --kraken-teal: #99D9D9;
    --kraken-blue: #001628;
    --uw-purple: #4B2E83;
    --uw-gold: #B7A57A;
    --nba-blue: #1D428A;
    --nba-red: #C8102E;
  }

  /* ─── DARK MODE PALETTE ───
     Triggered by `data-theme="dark"` on <html>. Set by an inline preflight
     script in each page's <head> (before first paint, so no flash). User
     preference persists in localStorage('ffnTheme'); falls back to OS preference.
     Most rules already use the variables below, so this single override flips
     the entire site. Hardcoded colors get patched in spot rules underneath. */
  html[data-theme="dark"] {
    --bg: #0e0f12;
    --surface: #15171c;
    --surface-hover: #1d1f25;
    --border: #2a2d33;
    --border-glow: #3a3d44;
    --text: #ebe7d8;
    --text-dim: #b8b4a6;
    --text-muted: #807c70;
    --accent: #d4a017;
    --accent-glow: rgba(212, 160, 23, 0.18);
    --green: #5fbf75;
    --red: #e85e5e;
    --amber: #d4a017;
    --copper: #d4a017;
    --brass: #b89556;
    --forest-dark: #ebe7d8;
    --forest-light: #ebe7d8;
  }

  /* Spot-fix common hardcoded backgrounds that don't use --bg / --surface */
  html[data-theme="dark"] body { background: var(--bg); color: var(--text); }
  html[data-theme="dark"] .editor-note { background: #1a1c20 !important; color: var(--text); }
  html[data-theme="dark"] .editor-note .en-text { color: var(--text-dim) !important; }
  html[data-theme="dark"] .rd-panel,
  html[data-theme="dark"] .rd-rundown,
  html[data-theme="dark"] [class^="rd-"] { color: var(--text); }
  html[data-theme="dark"] .landing-card { background: var(--surface); border-color: var(--border); }
  html[data-theme="dark"] .landing-card:hover { background: var(--surface-hover); }
  html[data-theme="dark"] table { color: var(--text); }
  html[data-theme="dark"] th { background: var(--surface) !important; color: var(--text-dim) !important; }
  html[data-theme="dark"] td { background: transparent; color: var(--text); border-color: var(--border); }
  html[data-theme="dark"] .header { background: var(--surface) !important; border-color: var(--border); }
  html[data-theme="dark"] .header-title,
  html[data-theme="dark"] .header-subtitle { color: var(--text); }
  html[data-theme="dark"] .nav,
  html[data-theme="dark"] nav { background: var(--surface); border-color: var(--border); }
  html[data-theme="dark"] .nav a { color: var(--text-dim); }
  html[data-theme="dark"] .nav a:hover,
  html[data-theme="dark"] .nav a.active { color: var(--amber); }
  html[data-theme="dark"] .footer { background: var(--surface); color: var(--text-muted); border-color: var(--border); }
  html[data-theme="dark"] .footer a { color: var(--text-dim); }
  html[data-theme="dark"] .footer-text .highlight { color: var(--text); }
  html[data-theme="dark"] hr { border-color: var(--border); }

  /* Theme-toggle button (injected into header by app.js on every page) */
  .ffn-theme-toggle {
    position: relative;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-dim);
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    margin-left: 12px;
    padding: 0;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    flex-shrink: 0;
  }
  .ffn-theme-toggle:hover {
    background: var(--surface-hover);
    color: var(--amber);
    border-color: var(--amber);
  }
  .ffn-theme-toggle .ffn-icon-sun  { display: none; }
  .ffn-theme-toggle .ffn-icon-moon { display: inline; }
  html[data-theme="dark"] .ffn-theme-toggle .ffn-icon-sun  { display: inline; }
  html[data-theme="dark"] .ffn-theme-toggle .ffn-icon-moon { display: none; }


  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
  }

  /* Ã¢ÂÂÃ¢ÂÂ Newsprint Background Ã¢ÂÂ quiet warm page Ã¢ÂÂÃ¢ÂÂ */
  .bg-grid {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg);
    z-index: -1;
    pointer-events: none;
  }
  .bg-grid::after { content: none; }
  .particles { display: none !important; }

  /* &#9472;&#9472; Floating Particles &#9472;&#9472; */
  .particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  .particle {
    position: absolute;
    width: 2px; height: 2px;
    background: var(--forest-light);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
    box-shadow: 0 0 4px rgba(111, 184, 150, 0.4);
  }

  @keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
  }

  /* &#9472;&#9472; Main Container &#9472;&#9472; */
  .main {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 24px 60px;
  }

  /* &#9472;&#9472; Header &#9472;&#9472; */
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0 10px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
  }

  .header-left {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .logo-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--forest-light), var(--mountain-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    animation: logoPulse 3s ease-in-out infinite;
  }

  @keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 0, 0, 0.08); }
    50% { box-shadow: 0 0 30px rgba(0, 0, 0, 0.15); }
  }

  .header-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #1a1611;
  }

  .header-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 2px;
    margin-top: 2px;
    transition: opacity 0.35s ease;
    min-height: 1.2em;
  }
  .header-left { display: flex; align-items: center; }

  .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'JetBrains Mono', monospace;
  }

  .live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 2px;
  }

  .live-dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
  }

  @keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 4px var(--green); }
    50% { opacity: 0.4; box-shadow: 0 0 12px var(--green); }
  }

  .clock {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 500;
  }

  .clock-date {
    font-size: 11px;
    color: var(--text-muted);
  }

  /* &#9472;&#9472; Section Titles &#9472;&#9472; */
  .section-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 32px 0 16px;
  }

  .section-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--forest-light);
    padding: 5px 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.03);
  }

  .section-quip {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
  }

  /* Ã¢ÂÂÃ¢ÂÂ Suggestion Box Ã¢ÂÂÃ¢ÂÂ */
  .suggest-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
  }
  .suggest-inner {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .suggest-icon { font-size: 32px; flex-shrink: 0; }
  .suggest-text { flex: 1; }
  .suggest-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 4px;
  }
  .suggest-desc {
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.5;
  }
  .suggest-btn {
    flex-shrink: 0;
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--forest-light), var(--mountain-blue));
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }
  .suggest-btn:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
  }
  .suggest-note {
    margin-top: 12px;
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
  }
  @media (max-width: 600px) {
    .suggest-inner { flex-direction: column; text-align: center; }
    .suggest-btn { width: 100%; text-align: center; }
  }

  /* &#9472;&#9472; Birthday Banner &#9472;&#9472; */
  .birthday-banner {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1), rgba(255, 77, 106, 0.1), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(255, 184, 0, 0.3);
    border-radius: 12px;
    padding: 10px 18px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    animation: bannerShimmer 3s ease-in-out infinite;
  }

  @keyframes bannerShimmer {
    0%, 100% { border-color: rgba(255, 184, 0, 0.3); }
    33% { border-color: rgba(255, 77, 106, 0.4); }
    66% { border-color: rgba(0, 212, 255, 0.4); }
  }

  .birthday-banner::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 200%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 184, 0, 0.05), transparent);
    animation: bannerSweep 4s ease-in-out infinite;
  }

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

  .birthday-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .birthday-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .birthday-emoji {
    font-size: 22px;
    animation: bdayBounce 1s ease-in-out infinite;
  }

  @keyframes bdayBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  .birthday-name {
    font-size: 14px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--amber), #ff6b6b, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: nameGlow 2s ease-in-out infinite;
  }

  @keyframes nameGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
  }

  .birthday-detail {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 1px;
  }

  .birthday-detail span {
    color: var(--amber);
    font-weight: 600;
  }

  .birthday-right {
    text-align: right;
  }

  .birthday-stat {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.5;
  }

  .birthday-stat .val {
    color: var(--amber);
    font-weight: 600;
  }

  .birthday-roast {
    margin-top: 6px;
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
    border-top: 1px solid rgba(255, 184, 0, 0.1);
    padding-top: 4px;
  }

  /* &#9472;&#9472; Scrolling Ticker &#9472;&#9472; */
  .ticker-wrap {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 0;
    margin-bottom: 24px;
  }

  .ticker {
    display: flex;
    gap: 40px;
    animation: tickerScroll 60s linear infinite;
    white-space: nowrap;
    width: max-content;
  }

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

  .ticker-item {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .ticker-symbol {
    font-weight: 600;
    color: var(--text);
  }

  .ticker-price {
    color: var(--text-dim);
  }

  .ticker-change {
    font-weight: 600;
    font-size: 11px;
  }

  .ticker-change.up { color: var(--green); }
  .ticker-change.down { color: var(--red); }

  .ticker-sep {
    color: var(--text-muted);
    font-size: 11px;
  }

  /* &#9472;&#9472; Cards Grid &#9472;&#9472; */
    .cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 8px;
  }

  .cards-row-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 16px;
    margin-bottom: 8px;
  }

  .cards-row-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 8px;
  }

  .card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .card:hover {
    border-color: var(--border-glow);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  .card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    border-radius: 12px 12px 0 0;
  }

  .card-seahawks::before { background: linear-gradient(90deg, var(--seahawks-green), var(--seahawks-blue)); }
  .card-mariners::before { background: linear-gradient(90deg, var(--mariners-teal), var(--mariners-blue)); }
  .card-kraken::before { background: linear-gradient(90deg, var(--kraken-teal), var(--kraken-blue)); }
  .card-nba::before { background: linear-gradient(90deg, var(--nba-blue), var(--nba-red)); }
  .card-nhl::before { background: linear-gradient(90deg, #000000, #a2aaad); }
  .card-uw::before { background: linear-gradient(90deg, var(--uw-purple), var(--uw-gold)); }

  .card-team-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 8px;
  }

  .card-score {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
  }

  .card-detail {
    font-size: 12px;
    color: var(--text-dim);
    margin-bottom: 2px;
  }

  .card-quip {
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
  }

  .card-next {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--accent);
    background: rgba(0, 212, 255, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 8px;
  }

  /* &#9472;&#9472; Stock Cards &#9472;&#9472; */
  .stock-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.3s ease;
  }

  .stock-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-2px);
  }

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

  .stock-symbol {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
  }

  .stock-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
  }

  .stock-badge.up {
    color: var(--green);
    background: rgba(0, 230, 138, 0.1);
  }

  .stock-badge.down {
    color: var(--red);
    background: rgba(255, 77, 106, 0.1);
  }

  .stock-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
  }

  .stock-name {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
  }

  .sparkline-container {
    height: 40px;
    margin-top: 10px;
  }

  .sparkline-container canvas {
    width: 100%;
    height: 100%;
  }


/* ===== GAME DAY WAR ROOM ===== */
.gameday-banner{background:linear-gradient(135deg,rgba(0,44,89,0.3),rgba(0,91,50,0.2));border:2px solid rgba(0,91,50,0.5);border-radius:12px;padding:16px 20px;margin-bottom:16px;position:relative;overflow:hidden}
.gameday-banner::before{content:"";position:absolute;top:0;left:0;width:100%;height:3px;background:linear-gradient(90deg,var(--red),#0c2c56,var(--red))}
.gameday-title{font-size:12px;letter-spacing:4px;color:#c4ced4;font-weight:700;margin-bottom:8px}
.gameday-headline{font-size:20px;font-weight:900;color:#fff;margin-bottom:4px}
.gameday-sub{font-size:13px;color:var(--text-dim);margin-bottom:10px}
.gameday-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.gameday-stat{text-align:center;padding:8px 4px;background:rgba(0,0,0,0.2);border-radius:6px}
.gameday-stat-label{font-size:11px;letter-spacing:2px;color:var(--text-muted);margin-bottom:2px}
.gameday-stat-value{font-family:"JetBrains Mono",monospace;font-size:18px;font-weight:900;color:var(--accent)}
.gameday-stat-detail{font-size:11px;color:var(--text-dim);margin-top:2px}
.gameday-countdown{font-family:"JetBrains Mono",monospace;font-size:28px;font-weight:900;color:var(--amber);text-align:center;margin:8px 0}
.gameday-countdown-label{font-size:11px;color:var(--text-muted);text-align:center;letter-spacing:3px}
.gameday-matchup{display:flex;justify-content:space-around;align-items:center;margin:10px 0;padding:10px;background:rgba(0,0,0,0.15);border-radius:8px}
.gameday-team{text-align:center;flex:1}
.gameday-team-name{font-size:12px;font-weight:900;letter-spacing:2px}
.gameday-team-record{font-size:11px;color:var(--text-dim)}
.gameday-vs{font-size:14px;color:var(--text-muted);font-weight:300;padding:0 10px}
.gameday-hype{font-size:11px;color:var(--amber);font-style:italic;text-align:center;margin-top:8px}
.mariners-color{color:#0c2c56}
.guardians-color{color:#e31937}

/* ===== MARINERS SEASON HYPE ===== */
.ms-hype{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin-bottom:16px}
.ms-hype-card{background:var(--surface);border:1px solid var(--border);border-radius:8px;padding:10px 6px;text-align:center}
.ms-hype-name{font-size:11px;letter-spacing:2px;color:var(--text-dim);margin-bottom:4px}
.ms-hype-stat{font-family:"JetBrains Mono",monospace;font-size:20px;font-weight:900;color:var(--accent)}
.ms-hype-detail{font-size:11px;color:var(--text-muted);margin-top:2px}

/* ===== MARKET SENTIMENT ===== */
/* Single unified grid: gauge + tickers flow as peers. 4 cols fits gauge + 7 tickers in exactly 2 rows. */
.market-sentiment-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-bottom:16px}
@media(max-width:900px){.market-sentiment-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.market-sentiment-grid{grid-template-columns:1fr}}
/* Fill trailing blanks if ticker count ever lands on an odd row */
.market-sentiment-grid > .ticker-card:last-child:nth-child(4n+1):nth-child(n+5){grid-column:1 / -1}
.market-sentiment-grid > .ticker-card:last-child:nth-child(4n+2):nth-child(n+6){grid-column:2 / -1}
.market-sentiment-grid > .ticker-card:last-child:nth-child(4n+3):nth-child(n+7){grid-column:3 / -1}

/* Fear & Greed gauge — horizontal card layout matching ticker-card proportions */
.fg-gauge{display:flex;flex-direction:row;align-items:center;gap:12px;background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:12px 14px;position:relative;overflow:hidden;transition:border-color 0.3s}
.fg-gauge:hover{border-color:var(--accent)}
.fg-gauge::before{content:"";position:absolute;top:0;left:0;right:0;height:2px;background:var(--amber)}
.fg-dial{width:70px;height:35px;position:relative;overflow:hidden;flex-shrink:0}
.fg-dial-bg{width:70px;height:35px;border-radius:35px 35px 0 0;background:linear-gradient(90deg,#e74c3c,#e67e22,#f1c40f,#2ecc71,#27ae60);position:absolute;top:0}
.fg-needle{width:2px;height:33px;background:var(--text);position:absolute;bottom:0;left:34px;transform-origin:bottom center;transition:transform 1s}
.fg-info{display:flex;flex-direction:column;gap:1px;min-width:0;flex:1}
.fg-caption{font-size:11px;letter-spacing:2px;color:var(--text-muted);font-weight:700}
.fg-value{font-family:"JetBrains Mono",monospace;font-size:20px;font-weight:900;line-height:1.1}
.fg-label-text{font-size:11px;font-weight:700;letter-spacing:1px;margin-top:1px}
.fg-extreme-fear{color:#e74c3c}.fg-fear{color:#e67e22}.fg-neutral{color:var(--amber)}.fg-greed{color:var(--green)}.fg-extreme-greed{color:var(--green)}
.ticker-card{background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:14px;position:relative;overflow:hidden;transition:border-color 0.3s}
.ticker-card:hover{border-color:var(--accent)}
.ticker-card::before{content:"";position:absolute;top:0;left:0;right:0;height:2px}
.ticker-card.up::before{background:var(--green)}.ticker-card.down::before{background:var(--red)}.ticker-card.flat::before{background:var(--amber)}
.ticker-symbol{font-size:11px;letter-spacing:2px;color:var(--text-muted);font-weight:700;margin-bottom:4px}
.ticker-price{font-family:"JetBrains Mono",monospace;font-size:18px;font-weight:900;color:var(--text)}
.ticker-change{font-family:"JetBrains Mono",monospace;font-size:11px;font-weight:700;margin-top:2px}
.ticker-change.up{color:var(--green)}.ticker-change.down{color:var(--red)}.ticker-change.flat{color:var(--amber)}
.ticker-label{font-size:11px;letter-spacing:1px;color:var(--text-muted);margin-top:4px}
.energy-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-bottom:16px}
@media(max-width:700px){.energy-strip{grid-template-columns:repeat(2,1fr)}}
.energy-card{background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:14px 16px;display:flex;align-items:center;gap:12px;position:relative;overflow:hidden;transition:border-color 0.3s}
.energy-card:hover{border-color:var(--accent)}
.energy-card::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#e67e22,#e74c3c)}
.energy-icon{font-size:24px;opacity:0.8}
.energy-info{flex:1}
.energy-label{font-size:11px;letter-spacing:2px;color:var(--text-muted);font-weight:700;margin-bottom:4px}
.energy-price{font-family:"JetBrains Mono",monospace;font-size:22px;font-weight:900;color:var(--text)}
.energy-delta{text-align:right}
.energy-change{font-family:"JetBrains Mono",monospace;font-size:13px;font-weight:700}
.energy-change.up{color:var(--red)}.energy-change.down{color:var(--green)}.energy-change.flat{color:var(--amber)}
.energy-sublabel{font-size:11px;letter-spacing:1px;color:var(--text-muted);margin-top:2px}

/* ===== WORLD SECTION CARDS ===== */
.world-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-bottom:16px}
.world-card{background:var(--surface);border:1px solid var(--border);border-radius:8px;padding:12px 10px;position:relative;overflow:hidden}
.world-card::before{content:"";position:absolute;top:0;left:0;width:100%;height:2px}
.world-card.politics::before{background:linear-gradient(90deg,#3498db,#e74c3c)}
.world-card.ai-tech::before{background:linear-gradient(90deg,#9b59b6,var(--text-muted))}
.world-card.medicine::before{background:linear-gradient(90deg,#2ecc71,#3498db)}
.world-card.conflict::before{background:linear-gradient(90deg,#e74c3c,#e67e22)}
.world-card.climate::before{background:linear-gradient(90deg,#1abc9c,#27ae60)}
.world-card.space::before{background:linear-gradient(90deg,#34495e,#9b59b6)}
.world-card-icon{font-size:18px;margin-bottom:4px}
.world-card-title{font-size:11px;letter-spacing:2px;color:var(--text-dim);font-weight:700;margin-bottom:6px}
.world-card-value{font-family:"JetBrains Mono",monospace;font-size:14px;font-weight:700;color:var(--accent);margin-bottom:4px}
.world-card-detail{font-size:11px;color:var(--text-muted);line-height:1.4}
@media(max-width:600px){.world-grid{grid-template-columns:1fr 1fr}.ms-hype{grid-template-columns:1fr 1fr}}

/* ===== COUNTDOWN STRIP ===== */
.countdown-strip{display:flex;gap:8px;margin-bottom:16px;flex-wrap:wrap}
.countdown-mini{flex:1;min-width:100px;background:var(--surface);border:1px solid var(--border);border-radius:8px;padding:8px 6px;text-align:center}
.countdown-mini-label{font-size:11px;letter-spacing:2px;color:var(--text-dim);margin-bottom:2px}
.countdown-mini-val{font-family:"JetBrains Mono",monospace;font-size:16px;font-weight:900;color:var(--accent)}
.countdown-mini-unit{font-size:11px;color:var(--text-muted)}

/* ===== DAILY ROTATION ===== */
.daily-strip{background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:12px 16px;margin-bottom:16px}
.daily-label{font-size:11px;letter-spacing:3px;color:var(--text-dim);margin-bottom:6px}
.daily-quote{font-size:12px;color:var(--text);line-height:1.5;font-style:italic}
/* ===== OBJECTIVES TRACKER ===== */
.objectives-panel{background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:20px 22px;margin-bottom:16px;position:relative;overflow:hidden}
.objectives-panel::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#e74c3c,#e67e22,#f1c40f,#3498db)}
.objectives-header{margin-bottom:16px}
.objectives-title{font-size:18px;font-weight:900;color:var(--text);letter-spacing:2px;margin-bottom:6px}
.objectives-sub{font-size:12px;color:var(--text-muted);font-style:italic}
.objectives-by-person{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
@media(max-width:700px){.objectives-by-person{grid-template-columns:repeat(2,1fr)}}
.obj-person-col{background:var(--surface);border:1px solid var(--border);border-radius:8px;padding:14px}
.obj-person-name{font-size:13px;font-weight:900;letter-spacing:2px;margin-bottom:10px;padding-bottom:6px;border-bottom:1px solid var(--border)}
.obj-quote{font-size:12px;color:var(--text-dim);line-height:1.5;padding:5px 0;border-bottom:1px dashed var(--border);font-style:italic}
.obj-quote:last-child{border-bottom:none}
/* ===== EAST ROOM TRACKER ===== */
.eastroom-panel{background:var(--surface);border:1px solid var(--border);border-radius:12px;padding:20px 22px;margin-bottom:16px;position:relative;overflow:hidden}
.eastroom-panel::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#002868,#bf0a30,#002868)}
.eastroom-header{margin-bottom:16px}
.eastroom-title{font-size:18px;font-weight:900;color:var(--text);letter-spacing:2px;margin-bottom:6px}
.eastroom-sub{font-size:12px;color:var(--text-muted);font-style:italic}
.eastroom-timeline{display:flex;flex-direction:column;gap:8px}
.er-event{display:flex;align-items:center;gap:12px;padding:10px 12px;border-radius:6px;background:var(--surface);border:1px solid var(--border);transition:background 0.2s}
.er-event:hover{background:var(--surface-hover)}
.er-date{font-family:"JetBrains Mono",monospace;font-size:11px;font-weight:700;color:var(--text-muted);letter-spacing:1px;min-width:80px;flex-shrink:0}
.er-desc{font-size:13px;color:var(--text-dim);flex:1;line-height:1.5}
.er-tag{font-size:11px;font-weight:700;letter-spacing:2px;padding:4px 10px;border-radius:4px;flex-shrink:0}
.er-tag.trade{background:rgba(230,126,34,0.15);color:#e67e22}
.er-tag.spectacle{background:rgba(231,76,60,0.15);color:#e74c3c}
.er-tag.policy{background:rgba(52,152,219,0.15);color:#3498db}

/* ===== WAR COMPARISON ===== */
.war-compare-grid{display:flex;flex-direction:column;gap:0}
.war-row{display:grid;grid-template-columns:160px 200px 1fr;gap:14px;padding:10px 12px;border-bottom:1px solid var(--border);align-items:center}
@media(max-width:700px){.war-row{grid-template-columns:100px 120px 1fr;font-size:11px}}
.war-row.header-row{border-bottom:2px solid var(--border);margin-bottom:4px}
.war-row.header-row .war-name,.war-row.header-row .war-duration,.war-row.header-row .war-context{font-size:11px;letter-spacing:2px;color:var(--text-muted);font-weight:700}
.war-row.highlight-row{background:rgba(255,184,0,0.08);border-radius:6px;border:1px solid rgba(255,184,0,0.2)}
.war-name{font-size:13px;font-weight:700;color:var(--text)}
.war-duration{font-family:"JetBrains Mono",monospace;font-size:13px;color:var(--accent)}
.war-note{font-size:11px;color:var(--text-muted);font-weight:400}
.war-funny{font-size:12px;color:var(--text-dim);font-style:italic}

.trump-quotes-strip{background:linear-gradient(135deg,rgba(180,40,40,0.08),rgba(0,40,104,0.08));border:1px solid rgba(180,40,40,0.25);border-left:3px solid rgba(180,40,40,0.5);border-radius:10px;padding:14px 18px;margin-bottom:16px;position:relative;overflow:hidden}
.trump-quotes-label{font-size:11px;letter-spacing:3px;color:var(--text-dim);font-weight:700;margin-bottom:8px}
.trump-quote-text{font-size:14px;color:var(--text);line-height:1.6;font-style:italic;font-weight:500}
.trump-quote-meta{font-size:11px;color:var(--text-muted);margin-top:6px;letter-spacing:1px}
.daily-source{font-size:11px;color:var(--text-muted);margin-top:4px;text-align:right}

/* ===== TRUTH SOCIAL LIVE FEED — TS-style re-skin ===== */
:root{
  --ts-navy: #1d2b4a;
  --ts-navy-dim: #4a5a7f;
  --ts-red: #ef3a42;
  --ts-red-dim: #b12931;
  --ts-page: #f3f4f6;
  --ts-card: #ffffff;
  --ts-border: #e5e7eb;
  --ts-text: #0f172a;
  --ts-muted: #6b7280;
  --ts-link: #1d4ed8;
}
.truth-feed-panel{background:var(--ts-page);border:1px solid var(--ts-border);border-radius:12px;padding:0;margin-bottom:16px;position:relative;overflow:hidden;font-family:'Inter','Helvetica Neue',-apple-system,sans-serif}
.truth-feed-panel .truth-feed-chrome{background:var(--ts-navy);padding:10px 16px;display:flex;align-items:center;justify-content:space-between;border-bottom:3px solid var(--ts-red)}
.truth-feed-panel .truth-feed-brand{display:flex;align-items:center;gap:10px}
.truth-feed-panel .truth-feed-mark{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;border-radius:50%;background:var(--ts-red);color:#fff;font-family:Georgia,'Times New Roman',serif;font-weight:900;font-size:18px;line-height:1;font-style:italic}
.truth-feed-panel .truth-feed-wordmark{color:#fff;font-size:15px;font-weight:900;letter-spacing:-0.2px;line-height:1}
.truth-feed-panel .truth-feed-wordmark small{display:block;font-weight:500;font-size:11px;letter-spacing:2px;color:rgba(255,255,255,0.6);margin-top:2px;text-transform:uppercase;font-family:'JetBrains Mono',monospace}
.truth-feed-header{display:flex;justify-content:space-between;align-items:center;margin:0;padding:8px 16px;background:#fff;border-bottom:1px solid var(--ts-border)}
.truth-feed-title{font-size:11px;font-weight:700;letter-spacing:0.3px;color:var(--ts-navy)}
.truth-feed-status span{font-size:11px !important;letter-spacing:1px !important;color:var(--ts-muted) !important;font-weight:600 !important}
.truth-feed-list{max-height:520px;overflow-y:auto;scrollbar-width:thin;scrollbar-color:var(--ts-border) transparent;background:var(--ts-card)}
.truth-feed-list::-webkit-scrollbar{width:8px}
.truth-feed-list::-webkit-scrollbar-thumb{background:var(--ts-border);border-radius:8px}
.truth-feed-list::-webkit-scrollbar-thumb:hover{background:var(--ts-navy-dim)}
.truth-item{display:grid;grid-template-columns:44px 1fr;gap:12px;padding:14px 16px;border-bottom:1px solid var(--ts-border);background:var(--ts-card);transition:background 0.15s}
.truth-item:hover{background:#fafbff}
.truth-item:last-child{border-bottom:none}
.truth-avatar{width:44px;height:44px;border-radius:50%;background:linear-gradient(135deg,var(--ts-red),var(--ts-red-dim));display:flex;align-items:center;justify-content:center;color:#fff;font-family:Georgia,'Times New Roman',serif;font-weight:900;font-style:italic;font-size:22px;line-height:1;border:2px solid var(--ts-card);box-shadow:0 0 0 1px var(--ts-border);flex-shrink:0}
.truth-body{min-width:0}
.truth-item-head{display:flex;align-items:baseline;gap:6px;margin-bottom:3px;flex-wrap:wrap}
.truth-item-name{font-size:15px;font-weight:800;color:var(--ts-text);letter-spacing:-0.1px}
.truth-item-handle{font-size:13px;color:var(--ts-muted);font-weight:500}
.truth-item-dot{font-size:13px;color:var(--ts-muted);font-weight:500}
.truth-item-time{font-size:13px;color:var(--ts-muted);font-weight:500}
.truth-item-text{font-size:14px;color:var(--ts-text);line-height:1.5;word-wrap:break-word}
.truth-item-text a{color:var(--ts-link);text-decoration:none}
.truth-item-text a:hover{text-decoration:underline}
.truth-item-engagement{display:flex;gap:0;margin-top:10px;margin-left:-6px;max-width:420px;justify-content:space-between}
.truth-item-engagement .eng{display:inline-flex;align-items:center;gap:5px;padding:5px 8px;border-radius:999px;font-size:12px;color:var(--ts-muted);font-weight:500;transition:all 0.15s;cursor:default}
.truth-item-engagement .eng-reply:hover{color:var(--ts-link);background:rgba(29,78,216,0.08)}
.truth-item-engagement .eng-retruth:hover{color:#16a34a;background:rgba(22,163,74,0.08)}
.truth-item-engagement .eng-like:hover{color:var(--ts-red);background:rgba(239,58,66,0.08)}
.truth-item-engagement .eng-view:hover{color:var(--ts-navy);background:rgba(29,43,74,0.08)}
.truth-item-engagement .eng-icon{font-family:-apple-system,sans-serif;font-size:14px;line-height:1;opacity:0.85}
.truth-feed-foot{background:#fff;border-top:1px solid var(--ts-border);padding:8px 16px;text-align:center;font-size:11px;color:var(--ts-muted);letter-spacing:0.3px}
.truth-feed-foot a{color:var(--ts-link);text-decoration:none;font-weight:600}
.truth-feed-foot a:hover{text-decoration:underline}
.truth-feed-aside{padding:8px 16px;background:var(--ts-page);font-size:11px;color:var(--ts-muted);text-align:center;font-style:italic;border-top:1px solid var(--ts-border)}

/* ===== SEATTLE LIFE ===== */
.seattle-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:8px;margin-bottom:16px}
@media(max-width:700px){.seattle-grid{grid-template-columns:repeat(2,1fr)}}
.seattle-card{background:var(--surface);border:1px solid var(--border);border-radius:8px;padding:10px 8px;text-align:center}
.seattle-card-icon{font-size:16px;margin-bottom:4px}
.seattle-card-label{font-size:11px;letter-spacing:2px;color:var(--text-dim);margin-bottom:4px}
.seattle-card-value{font-family:"JetBrains Mono",monospace;font-size:12px;font-weight:700;color:var(--accent)}
.seattle-card-sub{font-size:11px;color:var(--text-muted);margin-top:2px}



/* ===== AGI COUNTER ===== */

/* ===== BINGO CARD ===== */
.bingo-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:2px;margin-bottom:16px;border-radius:8px;overflow:hidden}
.bingo-cell{background:var(--surface);padding:6px 4px;text-align:center;font-size:11px;color:var(--text-dim);border:1px solid var(--border);cursor:pointer;transition:all 0.3s;line-height:1.3}
.bingo-cell:hover{background:rgba(0,212,255,0.1)}
.bingo-cell.stamped{background:rgba(0,230,138,0.15);color:var(--green)}
.bingo-header{background:rgba(0,44,89,0.4);color:#c4ced4;font-weight:700;font-size:11px;letter-spacing:1px}

/* ===== REFRESH INDICATOR ===== */
.refresh-pulse{display:inline-block;width:6px;height:6px;border-radius:50%;background:var(--green);margin-right:4px;animation:pulse-live 2s infinite}
@keyframes pulse-live{0%,100%{opacity:1}50%{opacity:0.3}}

/* ===== NEWSPRINT MODE (always on) =====
   body.light-mode inherits the :root palette Ã¢ÂÂ no variable overrides.
   Class-specific color overrides below match WSJ/NYT neutral tone. */
body.light-mode { background: var(--bg); color: var(--text); }
body.light-mode .main { background: var(--bg); }
body.light-mode .header-title { background: none; -webkit-text-fill-color: #1a1611; color: #1a1611; }
body.light-mode .header-subtitle { color: #3c3c3c; }
body.light-mode .live-indicator { color: var(--green); }
body.light-mode .live-dot { background: var(--green); }
body.light-mode .section-tag { color: #121212; border-color: rgba(0,0,0,0.2); background: rgba(0,0,0,0.04); }
body.light-mode .section-header { color: var(--text-dim); }
body.light-mode .gameday-banner { background: linear-gradient(135deg, #fae6e6, #e6eefa); border-color: #8b2020; border-width: 2px; }
body.light-mode .gameday-banner::before { background: linear-gradient(90deg, #b42828, #002868, #b42828); }
body.light-mode .gameday-title { color: #0c2c56; }
body.light-mode .gameday-headline { color: #0c2c56; }
body.light-mode .gameday-sub { color: #3c3c3c; }
body.light-mode .gameday-countdown { color: #121212; }
body.light-mode .gameday-matchup { background: rgba(12,44,86,0.07); }
body.light-mode .gameday-team-name { color: #121212; }
body.light-mode .gameday-stat { background: rgba(12,44,86,0.05); }
body.light-mode .gameday-stat-value { color: #0c2c56; }
body.light-mode .gameday-stat-label { color: #6b6b6b; }
body.light-mode .gameday-stat-detail { color: #3c3c3c; }
body.light-mode .gameday-hype { color: #b5720a; }
body.light-mode .gameday-vs { color: #6b6b6b; }
body.light-mode .mariners-color { color: #0c2c56; }
body.light-mode .guardians-color { color: #c0392b; }
body.light-mode .bingo-cell { background: #ffffff; border-color: var(--border); color: #3c3c3c; }
body.light-mode .bingo-header { background: rgba(12,44,86,0.12); color: #0c2c56; }
body.light-mode .bingo-cell.stamped { background: rgba(45,122,62,0.12); color: #121212; }
body.light-mode .world-card { background: var(--surface); box-shadow: 0 1px 4px rgba(0,0,0,0.07); border-color: var(--border); }
body.light-mode .fg-gauge { background: var(--surface); box-shadow: 0 1px 4px rgba(0,0,0,0.07); }
body.light-mode .fg-needle { background: #121212; }
body.light-mode .ticker-card { background: var(--surface); box-shadow: 0 1px 4px rgba(0,0,0,0.07); }
body.light-mode .ticker-price { color: var(--text); }
body.light-mode .energy-card { background: var(--surface); box-shadow: 0 1px 4px rgba(0,0,0,0.07); }
body.light-mode .energy-price { color: var(--text); }
body.light-mode .daily-strip { background: var(--surface); box-shadow: 0 1px 4px rgba(0,0,0,0.07); }
body.light-mode .trump-quotes-strip { background: linear-gradient(135deg, rgba(180,40,40,0.06), rgba(0,40,104,0.06)); border-color: rgba(180,40,40,0.2); box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
body.light-mode .truth-feed-panel { background: linear-gradient(135deg, rgba(100,30,30,0.05), rgba(180,40,40,0.03)); border-color: rgba(180,40,40,0.15); box-shadow: 0 1px 4px rgba(0,0,0,0.05); }
body.light-mode .truth-item { border-bottom-color: rgba(0,0,0,0.08); }
body.light-mode .objectives-panel { background: var(--surface); box-shadow: 0 1px 4px rgba(0,0,0,0.07); }
body.light-mode .obj-person-col { background: rgba(0,0,0,0.02); }
body.light-mode .obj-quote { color: #3c3c3c; border-bottom-color: rgba(0,0,0,0.06); }
body.light-mode .eastroom-panel { background: var(--surface); box-shadow: 0 1px 4px rgba(0,0,0,0.07); }
body.light-mode .pt-col-ticker { color: var(--text); }
body.light-mode .er-event { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.05); }
body.light-mode .er-event:hover { background: rgba(0,0,0,0.04); }
body.light-mode .seattle-card { background: var(--surface); box-shadow: 0 1px 4px rgba(0,0,0,0.07); }
body.light-mode .ticker-wrap { background: var(--surface); border-color: var(--border); }
body.light-mode .birthday-banner { background: linear-gradient(135deg, rgba(204,119,0,0.08), rgba(204,34,68,0.08), rgba(0,100,190,0.08)); }
body.light-mode .curtis-mini { background: var(--surface); border-color: var(--border); }
body.light-mode .ms-hype-card { background: var(--surface); box-shadow: 0 1px 3px rgba(0,0,0,0.06); }
body.light-mode .ms-hype-stat { color: #0c2c56; }
body.light-mode .ms-hype-name { color: #3c3c3c; }
body.light-mode .leaderboard-card { background: var(--surface); box-shadow: 0 1px 4px rgba(0,0,0,0.07); }
body.light-mode .leaderboard-title { color: #121212; }
body.light-mode .lb-name { color: #121212; }
body.light-mode .lb-pos { color: #3c3c3c; }
body.light-mode .lb-score { color: #121212; }
body.light-mode .lb-score.under { color: #c0392b; }
body.light-mode .lb-score.over { color: #3c3c3c; }
body.light-mode .section-quip { color: #6b6b6b; }
body.light-mode .card-header { color: #121212; }
body.light-mode .card { background: var(--surface); border-color: var(--border); box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
body.light-mode .section-subtitle { color: #3c3c3c; }
body.light-mode .card-score { color: #0c2c56; }
body.light-mode .card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
/* Theme toggle */

/* Ã¢ÂÂÃ¢ÂÂ Chyron Ticker Ã¢ÂÂ newsprint rule Ã¢ÂÂÃ¢ÂÂ */
.chyron {
  position: relative;
  z-index: 10;
  background: #0a0a0a;
  border-top: 1px solid #0a0a0a;
  border-bottom: 1px solid #0a0a0a;
  box-shadow: none;
  overflow: hidden;
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}
.chyron-track {
  display: inline-block;
  padding: 8px 0;
  animation: chyronScroll 720s linear infinite;
}
.chyron-track:hover { animation-play-state: paused; }
@keyframes chyronScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.chyron-item { display: inline; padding: 0 32px; }
.chyron-sep { color: #e94560; padding: 0 8px; }
.chyron-label {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 2px 8px;
  border-radius: 2px;
  margin-right: 8px;
  vertical-align: middle;
}
body.light-mode .chyron { background: #0a0a0a; color: #ffffff; }

/* Ã¢ÂÂÃ¢ÂÂ PNW Mountain Banner Ã¢ÂÂÃ¢ÂÂ */
.mountain-banner {
  width: 100%;
  height: auto;
  max-height: 100px;
  margin-bottom: -10px;
  opacity: 0.6;
  display: block;
}
body.light-mode .mountain-banner { opacity: 0.75; }

/* Ã¢ÂÂÃ¢ÂÂÃ¢ÂÂ NEWSPRINT SECTION NAV + MASTHEADS Ã¢ÂÂÃ¢ÂÂÃ¢ÂÂ */
.section-nav{position:sticky;top:0;z-index:100;background:#ffffff;border-top:2px solid #1a1611;border-bottom:1px solid var(--border);box-shadow:0 2px 8px rgba(0,0,0,0.04);margin:0 0 20px 0;font-family:Georgia,'Playfair Display',serif;}
.section-nav-inner{display:flex;justify-content:safe center;align-items:stretch;max-width:1400px;margin:0 auto;flex-wrap:nowrap;position:relative;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:thin;}
.section-nav a{display:block;padding:12px 14px 10px 14px;font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:#1a1611;text-decoration:none;border-right:1px solid var(--border);transition:all 0.18s ease;position:relative;font-variant:small-caps;white-space:nowrap;flex-shrink:0;}
.section-nav a:first-child{border-left:1px solid var(--border);}
.section-nav a:hover{color:var(--red);background:#f5f5f5;}
.section-nav a.active{color:var(--red);background:#f5f5f5;}
.section-nav a.active::after{content:"";position:absolute;bottom:-1px;left:0;right:0;height:2px;background:var(--red);}
@media (max-width:700px){.section-nav a{padding:10px 12px;font-size:11px;letter-spacing:1.5px;}}
/* Ã¢ÂÂÃ¢ÂÂÃ¢ÂÂ Newsprint section masthead Ã¢ÂÂ full-width rule + kicker + hed + deck Ã¢ÂÂÃ¢ÂÂÃ¢ÂÂ */
.lan-masthead{margin:56px 0 18px 0;padding:14px 4px 14px 4px;position:relative;background:transparent;border:none;border-top:6px solid #121212;border-bottom:1px solid #121212;border-radius:0;font-family:Georgia,'Playfair Display',serif;}
.lan-masthead .lm-tag{font-size:11px;font-weight:700;letter-spacing:3px;color:var(--red);text-transform:uppercase;margin-bottom:6px;font-family:'JetBrains Mono',monospace;font-variant:small-caps;display:flex;align-items:center;gap:6px;}
.lan-masthead .lm-tag::before{content:"";display:inline-block;width:8px;height:8px;background:var(--red);}
.lan-masthead .lm-name{font-size:36px;font-weight:900;letter-spacing:0.5px;color:#121212;text-transform:uppercase;line-height:1.0;font-variant:small-caps;}
.lan-masthead .lm-kicker{font-size:13px;font-style:italic;color:var(--text-dim);letter-spacing:0.2px;margin-top:8px;}
.lan-masthead .lm-kicker::before{content:"\201C ";color:var(--text-muted);font-style:normal;opacity:0.75;}
.lan-masthead .lm-kicker::after{content:" \201D";color:var(--text-muted);font-style:normal;opacity:0.75;}
.section-anchor{scroll-margin-top:70px;}

/* —— Weather strip — 5-city micro-forecast grid —— */
.weather-label{display:flex;justify-content:space-between;align-items:baseline;margin:14px 4px 6px 4px;padding:0;}
.weather-label-left{font-size:11px;font-weight:700;letter-spacing:3px;color:var(--text-dim);text-transform:uppercase;}
.weather-label-right{font-size:11px;color:var(--text-muted);font-style:italic;letter-spacing:1px;}
.weather-strip{display:grid;grid-template-columns:repeat(5,1fr);gap:8px;margin-bottom:16px;}
.weather-city{background:var(--surface);border:1px solid var(--border);border-radius:8px;padding:10px 8px;display:flex;flex-direction:column;align-items:center;text-align:center;gap:2px;min-height:110px;}
.weather-city-name{font-size:11px;font-weight:900;letter-spacing:2px;color:var(--text);font-family:'JetBrains Mono',monospace;margin-bottom:2px;}
.weather-icon{font-size:22px;line-height:1;margin:2px 0;}
.weather-temp{font-family:'JetBrains Mono',monospace;font-size:18px;font-weight:900;color:var(--text);line-height:1.1;}
.weather-desc{font-size:11px;font-weight:700;letter-spacing:1.5px;color:var(--text-muted);text-transform:uppercase;font-family:'JetBrains Mono',monospace;}
.weather-distance{font-size:11px;letter-spacing:1px;color:var(--text-muted);font-style:italic;margin-top:2px;}
.weather-boise{background:var(--surface-hover);}
@media(max-width:700px){.weather-strip{grid-template-columns:repeat(2,1fr);}}

/* ════════ SECTION-LOCAL STYLES ════════ */
/* === editor_note === */
.editor-note{margin:0 0 16px 0;padding:14px 20px 14px 22px;position:relative;background:#ffffff;border:1px solid var(--border);border-left:3px solid var(--red);border-radius:2px;font-family:Georgia,'Playfair Display',serif;overflow:hidden;}
    .editor-note::before{content:none;}
    .editor-note .en-tag{font-size:11px;font-weight:700;letter-spacing:3px;color:var(--red);text-transform:uppercase;margin-bottom:6px;font-family:'JetBrains Mono',monospace;font-variant:small-caps;}
    .editor-note .en-tag .en-date{color:var(--text-muted);margin-left:8px;font-weight:400;letter-spacing:2px;}
    .editor-note .en-text{font-size:15px;line-height:1.7;color:#1a1611;font-style:italic;}
    .editor-note .en-text .en-emph{font-style:normal;color:#d4a017;font-weight:600;}
    .editor-note .en-sig{margin-top:6px;font-size:11px;color:var(--text-muted);letter-spacing:1px;font-style:italic;text-align:right;}
    .editor-note .en-sig::before{content:"\2014 ";color:var(--text-muted);font-style:normal;}
    .editor-note .en-text .en-emph{font-style:normal;color:var(--red);font-weight:700;}

/* === run_down === */
#theRunDown{background:#ffffff;border:1px solid var(--border);border-top:3px solid #1a1611;border-radius:2px;padding:18px 22px;margin-bottom:18px;position:relative;overflow:hidden;font-family:Georgia,'Playfair Display',serif;box-shadow:0 1px 3px rgba(0,0,0,0.04);}
    #theRunDown::before{content:none;}
    #theRunDown .rd-masthead{display:flex;justify-content:space-between;align-items:baseline;padding-bottom:8px;margin-bottom:12px;border-bottom:2px solid #1a1611;flex-wrap:wrap;gap:6px;}
    #theRunDown .rd-title{font-family:Georgia,'Times New Roman',serif;font-size:24px;font-weight:900;letter-spacing:0.5px;color:#1a1611;line-height:1;font-variant:small-caps;}
    #theRunDown .rd-sub{font-size:11px;letter-spacing:1px;color:var(--text-muted);font-style:italic;margin-top:3px;font-family:Georgia,serif;}
    #theRunDown .rd-dateline{font-size:11px;letter-spacing:2px;color:var(--text-muted);text-transform:uppercase;font-family:'JetBrains Mono',monospace;}
    #runDownList{display:grid;grid-template-columns:repeat(3,1fr);gap:0;list-style:none;margin:0;padding:0;}
    #runDownList article{padding:6px 14px 10px 14px;border-right:1px solid var(--border);break-inside:avoid;}
    /* Fill trailing blanks: if last article lands alone or 2-wide in a row below the lead, stretch to end.
       Lead is :nth-child(1). Smalls 1-2 fill col 3 rows 1-2. Smalls 3+ fill full rows.
       Last at positions 4,7,10... (3n+1, n>=1) = alone in row -> span all 3 cols.
       Last at positions 5,8,11... (3n+2, n>=1) = 2nd of 3 -> span cols 2-3. */
    #runDownList article:last-child:not(.lead):nth-child(n+4):nth-child(3n+1){grid-column:1 / -1;}
    #runDownList article:last-child:not(.lead):nth-child(n+5):nth-child(3n+2){grid-column:2 / -1;}
    #runDownList article:nth-child(3n){border-right:none;}
    #runDownList article:nth-child(n+4){padding-top:12px;border-top:1px solid var(--border);}
    #runDownList .rd-kicker{font-size:11px;font-weight:900;letter-spacing:1.5px;text-transform:uppercase;color:var(--red);font-family:'JetBrains Mono',monospace;margin-bottom:4px;display:block;}
    #runDownList .rd-kicker.urgent{color:var(--red);}
    #runDownList .rd-head{font-family:Georgia,'Times New Roman',serif;font-size:15px;font-weight:900;line-height:1.2;color:#1a1611;margin:0 0 4px 0;letter-spacing:-0.2px;}
    #runDownList .rd-dek{font-family:Georgia,'Times New Roman',serif;font-size:12px;line-height:1.45;color:var(--text-dim);margin:0;}
    #runDownList .rd-src{margin-top:5px;font-family:'JetBrains Mono',monospace;font-size:11px;letter-spacing:1px;text-transform:uppercase;}
    #runDownList .rd-src a{color:var(--text-muted);text-decoration:none;border-bottom:1px dotted var(--border-glow);margin-right:5px;}
    #runDownList .rd-src a:hover{color:var(--red);border-bottom-color:var(--red);}
    #runDownList article.lead{grid-column:span 2;grid-row:span 2;padding-bottom:12px;display:flex;flex-direction:column;}
    #runDownList article.lead .rd-head{font-size:22px;line-height:1.15;color:#1a1611;}
    #runDownList article.lead .rd-dek{font-size:14px;line-height:1.5;color:var(--text-dim);}
    #runDownList article.lead .rd-kicker{font-size:11px;}
    #runDownList article.lead .rd-factbox{margin-top:10px;padding:10px 12px;border-top:1px dashed var(--border-glow);border-bottom:1px dashed var(--border-glow);background:#f5f5f5;}
    #runDownList article.lead .rd-factbox-title{font-family:'JetBrains Mono',monospace;font-size:11px;font-weight:900;letter-spacing:2px;color:var(--red);margin-bottom:4px;}
    #runDownList article.lead .rd-factbox ul{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:3px 14px;}
    #runDownList article.lead .rd-factbox li{font-family:Georgia,'Times New Roman',serif;font-size:11px;line-height:1.4;color:var(--text);padding-left:10px;position:relative;}
    #runDownList article.lead .rd-factbox li::before{content:"\25B6";position:absolute;left:0;top:0;color:var(--red);font-size:11px;}
    #runDownList article.lead .rd-factbox li b{color:#1a1611;font-weight:900;}
    #runDownList article.lead .rd-pullquote{margin-top:10px;padding:6px 14px;border-left:3px solid var(--red);font-family:Georgia,'Times New Roman',serif;font-style:italic;font-size:13px;line-height:1.45;color:var(--text-dim);}
    #runDownList article.lead .rd-pullquote cite{display:block;margin-top:4px;font-style:normal;font-size:11px;letter-spacing:1.5px;text-transform:uppercase;color:var(--text-muted);font-family:'JetBrains Mono',monospace;}
    @media (max-width:900px){
      #runDownList{grid-template-columns:repeat(2,1fr);}
      #runDownList article{border-right:1px solid var(--border);}
      #runDownList article:nth-child(3n){border-right:1px solid var(--border);}
      #runDownList article:nth-child(2n){border-right:none;}
      #runDownList article.lead{grid-column:span 2;grid-row:auto;}
    }
    @media (max-width:560px){
      #runDownList{grid-template-columns:1fr;}
      #runDownList article,#runDownList article.lead{grid-column:auto;grid-row:auto;border-right:none;border-bottom:1px solid var(--border);padding:14px 4px;}
    }
  

    .top-split{margin-bottom:18px;}
    .top-split > #theRunDown{margin-bottom:0;}
    /* grid split disabled Ã¢ÂÂ Run Down is now full-width above section nav; Iran War moved into World section */

/* === track_troops === */
#trackTroops{background:#ffffff;border:1px solid var(--border);border-top:3px solid #121212;border-radius:2px;padding:14px 18px;margin-bottom:18px;font-family:'JetBrains Mono','Courier New',monospace;position:relative;overflow:hidden;color:#121212;}
    #trackTroops::before{content:none;}
    #trackTroops .tt-classbar{display:flex;justify-content:center;align-items:center;font-size:11px;font-weight:900;letter-spacing:3px;color:var(--red);padding:4px 0 10px 0;border-bottom:1px dashed var(--border);margin-bottom:10px;}
    #trackTroops .tt-classbar::before,#trackTroops .tt-classbar::after{content:"";flex:1;height:1px;background:var(--border);margin:0 10px;}
    #trackTroops .tt-header{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:12px;flex-wrap:wrap;gap:6px;}
    #trackTroops .tt-title{font-size:14px;font-weight:900;letter-spacing:3px;color:#121212;font-family:Georgia,'Times New Roman',serif;font-variant:small-caps;}
    #trackTroops .tt-subtitle{font-size:11px;letter-spacing:2px;color:var(--text-muted);font-style:italic;margin-top:2px;}
    #trackTroops .tt-dateline{font-size:11px;letter-spacing:2px;color:var(--text-muted);text-transform:uppercase;}
    #trackTroops table{width:100%;border-collapse:collapse;font-size:11px;table-layout:fixed;}
    #trackTroops th{text-align:left;font-size:11px;font-weight:700;letter-spacing:2px;color:#121212;padding:6px 8px;border-bottom:2px solid #121212;white-space:nowrap;background:#ffffff;}
    #trackTroops th:nth-child(1){width:15%;}
    #trackTroops th:nth-child(2){width:7%;}
    #trackTroops th:nth-child(3){width:30%;}
    #trackTroops th:nth-child(4){width:8%;}
    #trackTroops th:nth-child(5){width:31%;}
    #trackTroops th:nth-child(6){width:9%;}
    #trackTroops td{padding:7px 8px;border-bottom:1px solid var(--border);color:#121212;vertical-align:top;word-wrap:break-word;overflow-wrap:break-word;}
    #trackTroops tr:hover td{background:#f5f5f5;}
    #trackTroops .tt-unit{font-weight:700;color:#121212;}
    #trackTroops .tt-branch{display:inline-block;font-size:11px;font-weight:900;padding:1px 5px;border-radius:2px;margin-right:5px;letter-spacing:1px;vertical-align:1px;}
    #trackTroops .tt-branch.navy{background:#1e3a5f;color:#ffffff;}
    #trackTroops .tt-branch.air{background:#4a5568;color:#ffffff;}
    #trackTroops .tt-branch.ground{background:var(--red);color:#ffffff;}
    #trackTroops tr.ground td{background:#fdf2f2;}
    #trackTroops tr.ground:hover td{background:#fbe6e6;}
    #trackTroops tr.ground td:first-child{border-left:3px solid var(--red);}
    #trackTroops .tt-pers{font-weight:700;color:#121212;text-align:right;white-space:nowrap;font-variant-numeric:tabular-nums;}
    #trackTroops tr.ground .tt-pers{color:var(--red);font-weight:900;}
    #trackTroops .tt-loc{color:#121212;}
    #trackTroops .tt-status{font-size:11px;font-weight:700;color:var(--text-muted);}
    #trackTroops .tt-status.active{color:var(--red);}
    #trackTroops .tt-status.enroute{color:#c06c00;}
    #trackTroops .tt-status.station{color:var(--green);}
    #trackTroops .tt-obs{font-size:11px;color:var(--text-muted);}
    #trackTroops .tt-src{font-size:11px;color:var(--text-muted);}
    #trackTroops .tt-src a{color:var(--text-muted);text-decoration:none;border-bottom:1px dotted var(--border);}
    #trackTroops .tt-src a:hover{color:var(--red);border-bottom-style:solid;border-bottom-color:var(--red);}
    #trackTroops .tt-notes{margin-top:10px;padding:10px 12px;background:#f5f5f5;border-left:3px solid var(--red);font-size:11px;line-height:1.55;color:#121212;}
    #trackTroops .tt-notes b{color:#121212;}
    #trackTroops .tt-footer{margin-top:10px;padding-top:8px;border-top:1px dashed var(--border);display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:6px;font-size:11px;color:var(--text-muted);letter-spacing:1px;}
    #trackTroops .tt-footer a{color:var(--text-muted);text-decoration:none;margin-right:8px;}
    #trackTroops .tt-footer a:hover{color:var(--red);text-decoration:underline;}
    @media (max-width:700px){
      #trackTroops table, #trackTroops thead, #trackTroops tbody, #trackTroops tr, #trackTroops th, #trackTroops td{display:block;}
      #trackTroops thead{display:none;}
      #trackTroops tr{border-bottom:1px solid rgba(143,163,87,0.2);padding:8px 0;}
      #trackTroops td{border:none;padding:2px 0;}
      #trackTroops .tt-unit{font-size:11px;}
    }

/* === iran_war_banner === */
@keyframes iranStripe{0%{background-position:0% 0}100%{background-position:200% 0}}
      @keyframes iranPulse{0%,100%{opacity:1}50%{opacity:0.6}}
      @keyframes noDeakFlash{0%,100%{text-shadow:0 0 10px rgba(255,60,60,0.4)}50%{text-shadow:0 0 30px rgba(255,60,60,0.8),0 0 60px rgba(255,165,0,0.3)}}
      .iran-flash{/* flash disabled Ã¢ÂÂ newsprint mode */}
      .iran-pulse{/* pulse disabled Ã¢ÂÂ newsprint mode */}
    

      #iranWarBanner .iw-title{letter-spacing:3px;color:var(--text-muted);font-size:11px;font-weight:700;text-align:center;margin-bottom:6px;}
      #iranWarBanner .iw-headline{font-size:14px;color:var(--text);font-weight:700;letter-spacing:0.5px;text-align:center;line-height:1.2;margin-bottom:14px;}
      #iranWarBanner .iw-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin-bottom:14px;}
      #iranWarBanner .iw-stat{background:#f5f5f5;border:1px solid var(--border);border-top:2px solid var(--border);border-radius:2px;padding:10px 6px;text-align:center;}
      #iranWarBanner .iw-stat-icon{font-size:20px;line-height:1;margin-bottom:4px;}
      #iranWarBanner .iw-stat-val{font-size:18px;font-weight:900;line-height:1.1;}
      #iranWarBanner .iw-stat-lbl{font-size:11px;letter-spacing:1.5px;color:var(--text-muted);margin-top:3px;}
      #iranWarBanner .iw-bullets{list-style:disc;padding:0 0 0 20px;margin:0 0 12px 0;}
      #iranWarBanner .iw-bullets li{font-size:11px;line-height:1.5;color:var(--text);padding:5px 0;position:relative;border-bottom:1px solid var(--border);}
      #iranWarBanner .iw-bullets li:last-child{border-bottom:none;}
            #iranWarBanner .iw-delegations{display:grid;grid-template-columns:1fr 1fr;gap:8px;font-size:11px;border-top:1px solid var(--border);padding-top:10px;}
      #iranWarBanner .iw-del-box{text-align:center;}
      #iranWarBanner .iw-del-lbl{font-size:11px;letter-spacing:2px;color:var(--text-muted);margin-bottom:3px;}
      #iranWarBanner .iw-del-val{font-size:11px;font-weight:700;color:var(--text);}
      @media (max-width:600px){#iranWarBanner .iw-stats{grid-template-columns:repeat(2,1fr);}}

/* === lebanon === */
#lebanonTrack, #ukraineTrack{background:var(--surface);border:1px solid var(--border);border-top:3px solid var(--amber);border-radius:2px;padding:14px 18px;margin-bottom:18px;color:var(--text);}
    #lebanonTrack .lt-header, #ukraineTrack .lt-header{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:10px;flex-wrap:wrap;gap:6px;}
    #lebanonTrack .lt-title, #ukraineTrack .lt-title{font-size:13px;font-weight:900;letter-spacing:3px;font-family:Georgia,'Times New Roman',serif;font-variant:small-caps;color:var(--text);}
    #lebanonTrack .lt-subtitle, #ukraineTrack .lt-subtitle{font-size:12.5px;letter-spacing:1px;line-height:1.5;color:var(--text-muted);font-style:italic;margin-top:4px;}
    #lebanonTrack .lt-dateline, #ukraineTrack .lt-dateline{font-size:11px;letter-spacing:2px;color:var(--text-muted);text-transform:uppercase;}
    #lebanonTrack .lt-dek, #ukraineTrack .lt-dek{font-size:13px;line-height:1.55;color:var(--text);margin-bottom:12px;}
    #lebanonTrack .lt-stats, #ukraineTrack .lt-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin-bottom:12px;}
    #lebanonTrack .lt-stat, #ukraineTrack .lt-stat{background:var(--surface-hover);border:1px solid var(--border);border-radius:4px;padding:8px;text-align:center;}
    #lebanonTrack .lt-stat-val, #ukraineTrack .lt-stat-val{font-size:15px;font-weight:900;font-variant-numeric:tabular-nums;color:var(--text);}
    #lebanonTrack .lt-stat-lbl, #ukraineTrack .lt-stat-lbl{font-size:11px;letter-spacing:2px;color:var(--text-muted);font-weight:700;margin-top:4px;}
    #lebanonTrack .lt-bullets, #ukraineTrack .lt-bullets{list-style:disc;padding:0 0 0 20px;margin:0 0 10px 0;}
    #lebanonTrack .lt-bullets li, #ukraineTrack .lt-bullets li{font-size:13px;line-height:1.55;color:var(--text);padding:6px 0;border-bottom:1px solid var(--border);}
    #lebanonTrack .lt-bullets li:last-child, #ukraineTrack .lt-bullets li:last-child{border-bottom:none;}
    #lebanonTrack .lt-footer, #ukraineTrack .lt-footer{margin-top:10px;padding-top:8px;border-top:1px dashed var(--border);font-size:11px;color:var(--text-muted);letter-spacing:1px;}
    #lebanonTrack .lt-footer a, #ukraineTrack .lt-footer a{color:var(--text-muted);text-decoration:none;margin-right:8px;border-bottom:1px dotted var(--border);}
    #lebanonTrack .lt-footer a:hover, #ukraineTrack .lt-footer a:hover{color:var(--red);border-bottom-style:solid;border-bottom-color:var(--red);}
    @media (max-width:600px){#lebanonTrack .lt-stats{grid-template-columns:repeat(2,1fr);}}

/* === national_gas === */
.gas-national{margin-bottom:16px}
.gas-national-header{display:flex;align-items:baseline;gap:10px;margin-bottom:8px;padding:0 4px}
.gas-national-title{font-size:11px;font-weight:700;letter-spacing:3px;color:var(--text-dim)}
.gas-national-src{font-size:11px;letter-spacing:1px;color:var(--text-muted);margin-left:auto}
.gas-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:10px}
@media(max-width:800px){.gas-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:500px){.gas-grid{grid-template-columns:repeat(2,1fr)}}
.gas-card{background:var(--surface);border:1px solid var(--border);border-radius:10px;padding:14px 12px;text-align:center;position:relative;overflow:hidden;transition:border-color 0.3s}
.gas-card:hover{border-color:var(--accent)}
.gas-card::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--amber),#e67e22)}
.gas-card-label{font-size:11px;letter-spacing:2px;color:var(--text-muted);font-weight:700;margin-bottom:6px}
.gas-card-price{font-family:"JetBrains Mono",monospace;font-size:24px;font-weight:900;color:var(--text)}
.gas-card-change{font-family:"JetBrains Mono",monospace;font-size:11px;font-weight:700;margin-top:4px}
.gas-card-change.up{color:var(--red)}.gas-card-change.down{color:var(--green)}.gas-card-change.flat{color:var(--amber)}
.gas-card-sub{font-size:11px;letter-spacing:1px;color:var(--text-muted);margin-top:2px}
.gas-detail-row{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:10px}
@media(max-width:700px){.gas-detail-row{grid-template-columns:repeat(2,1fr)}}
.gas-detail-card{background:var(--surface);border:1px solid var(--border);border-radius:8px;padding:10px;text-align:center}
.gas-detail-label{font-size:11px;letter-spacing:1.5px;color:var(--text-muted);font-weight:700;margin-bottom:4px}
.gas-detail-val{font-family:"JetBrains Mono",monospace;font-size:14px;font-weight:700;color:var(--text)}
.gas-detail-delta{font-family:"JetBrains Mono",monospace;font-size:11px;margin-top:2px}
.gas-detail-delta.up{color:var(--red)}.gas-detail-delta.down{color:var(--green)}.gas-detail-delta.flat{color:var(--amber)}

/* === quantum_tracker === */
#quantumSection{background:#ffffff;border:1px solid var(--border);border-top:3px solid #1e3a5f;border-radius:2px;padding:14px 18px;margin-bottom:18px;font-family:Georgia,'Times New Roman',serif;position:relative;overflow:hidden;color:#121212;}
    #quantumSection .qm-header{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:12px;flex-wrap:wrap;gap:6px;}
    #quantumSection .qm-title{font-size:14px;font-weight:900;letter-spacing:3px;color:#121212;font-variant:small-caps;}
    #quantumSection .qm-subtitle{font-size:11px;letter-spacing:2px;color:var(--text-muted);font-style:italic;margin-top:2px;}
    #quantumSection .qm-dateline{font-size:11px;letter-spacing:2px;color:var(--text-muted);text-transform:uppercase;font-family:'JetBrains Mono',monospace;}
    #quantumSection .qm-panel{background:#ffffff;border:1px solid var(--border);border-top:2px solid #1e3a5f;border-radius:2px;padding:12px 14px;margin-bottom:14px;}
    #quantumSection .qm-panel-title{font-size:12px;font-weight:900;letter-spacing:2px;color:#121212;font-variant:small-caps;margin-bottom:4px;}
    #quantumSection .qm-panel-sub{font-size:11px;letter-spacing:1.5px;color:var(--text-muted);font-family:'JetBrains Mono',monospace;margin-bottom:10px;}
    #quantumSection .qm-stats{display:grid;grid-template-columns:repeat(5,1fr);gap:8px;margin-bottom:14px;}
    #quantumSection .qm-stat{background:#f5f5f5;border:1px solid var(--border);border-top:2px solid #1e3a5f;border-radius:2px;padding:10px 6px;text-align:center;}
    #quantumSection .qm-stat-val{font-family:'JetBrains Mono',monospace;font-size:18px;font-weight:900;color:#1e3a5f;line-height:1.1;}
    #quantumSection .qm-stat-lbl{font-size:11px;letter-spacing:1.5px;color:var(--text-muted);margin-top:3px;font-family:'JetBrains Mono',monospace;}
    #quantumSection .qm-stat-sub{font-size:11px;color:var(--text-dim);margin-top:2px;}
    #quantumSection table{width:100%;border-collapse:collapse;font-size:11px;}
    #quantumSection th{text-align:left;font-size:11px;font-weight:700;letter-spacing:2px;color:#121212;padding:6px 8px;border-bottom:2px solid #121212;white-space:nowrap;background:#ffffff;font-family:'JetBrains Mono',monospace;}
    #quantumSection td{padding:6px 8px;border-bottom:1px solid var(--border);color:#121212;vertical-align:top;}
    #quantumSection tr:hover td{background:#f5f5f5;}
    #quantumSection .qm-player{font-weight:700;white-space:nowrap;}
    #quantumSection .qm-badge{display:inline-block;font-size:11px;font-weight:900;padding:1px 5px;border-radius:2px;margin-right:5px;letter-spacing:1px;vertical-align:1px;color:#ffffff;font-family:'JetBrains Mono',monospace;}
    #quantumSection .qm-badge.us{background:#1e3a5f;}
    #quantumSection .qm-badge.cn{background:var(--red);}
    #quantumSection .qm-badge.eu{background:#2d7a3e;}
    #quantumSection .qm-val{font-family:'JetBrains Mono',monospace;font-weight:700;white-space:nowrap;}
    #quantumSection .qm-dual{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
    #quantumSection .qm-wire{list-style:none;padding:0;margin:0;}
    #quantumSection .qm-wire li{padding:6px 0;border-bottom:1px dashed var(--border);font-size:11px;line-height:1.5;}
    #quantumSection .qm-wire li:last-child{border-bottom:none;}
    #quantumSection .qm-wire-tag{font-size:11px;font-weight:900;letter-spacing:1px;padding:1px 4px;border-radius:2px;margin-right:4px;vertical-align:1px;background:#1e3a5f;color:#fff;}
    #quantumSection .qm-wire-tag.red{background:var(--red);}
    #quantumSection .qm-wire-tag.amber{background:#b8860b;}
    #quantumSection .qm-wire-tag.green{background:#2d7a3e;}
    #quantumSection .qm-qday{text-align:center;padding:12px 0;margin-bottom:10px;background:#f5f5f5;border:1px solid var(--border);border-radius:2px;}
    #quantumSection .qm-qday-val{font-family:'JetBrains Mono',monospace;font-size:36px;font-weight:900;color:var(--red);line-height:1;}
    #quantumSection .qm-qday-label{font-size:11px;letter-spacing:2px;color:var(--text-muted);font-weight:700;font-family:'JetBrains Mono',monospace;margin-top:4px;}
    #quantumSection .qm-qday-sub{font-size:11px;color:var(--text-dim);margin-top:4px;}
    #quantumSection .qm-meter{background:var(--surface-hover);height:10px;border-radius:2px;margin:8px 0;position:relative;border:1px solid var(--border);}
    #quantumSection .qm-meter-fill{height:100%;border-radius:2px;}
    #quantumSection .qm-meter-labels{display:flex;justify-content:space-between;font-size:11px;color:var(--text-muted);font-family:'JetBrains Mono',monospace;letter-spacing:1px;margin-top:2px;}
    #quantumSection .qm-net-row{display:flex;gap:10px;margin-bottom:8px;align-items:stretch;}
    #quantumSection .qm-net-flag{font-size:11px;font-weight:900;letter-spacing:2px;color:#121212;font-family:'JetBrains Mono',monospace;width:24px;flex-shrink:0;padding-top:2px;}
    #quantumSection .qm-net-bar{flex:1;background:#f5f5f5;border:1px solid var(--border);border-radius:2px;padding:6px 10px;font-size:11px;line-height:1.5;}
    #quantumSection .qm-editorial{margin-top:10px;padding:10px 14px;border-left:3px solid #1e3a5f;font-size:11px;line-height:1.55;color:var(--text-dim);font-style:italic;}
    #quantumSection .qm-footer{margin-top:10px;padding-top:8px;border-top:1px dashed var(--border);font-size:11px;color:var(--text-muted);text-align:center;font-family:'JetBrains Mono',monospace;letter-spacing:1px;}
    #quantumSection .qm-footer a{color:var(--text-muted);text-decoration:none;border-bottom:1px dotted var(--border);margin:0 4px;}
    #quantumSection .qm-footer a:hover{color:#1e3a5f;border-bottom-color:#1e3a5f;}
    @media (max-width:700px){
      #quantumSection .qm-dual{grid-template-columns:1fr;}
      #quantumSection .qm-stats{grid-template-columns:repeat(3,1fr);}
    }

/* === rapture_tracker === */
#raptureSection{background:#ffffff;border:1px solid var(--border);border-top:3px solid #b8860b;border-radius:2px;padding:14px 18px;margin-bottom:18px;font-family:Georgia,'Times New Roman',serif;position:relative;overflow:hidden;color:#121212;}
    #raptureSection .rp-header{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:12px;flex-wrap:wrap;gap:6px;}
    #raptureSection .rp-title{font-size:14px;font-weight:900;letter-spacing:3px;color:#121212;font-variant:small-caps;}
    #raptureSection .rp-subtitle{font-size:11px;letter-spacing:2px;color:var(--text-muted);font-style:italic;margin-top:2px;}
    #raptureSection .rp-dateline{font-size:11px;letter-spacing:2px;color:var(--text-muted);text-transform:uppercase;font-family:'JetBrains Mono',monospace;}
    #raptureSection .rp-panel{background:#ffffff;border:1px solid var(--border);border-top:2px solid #b8860b;border-radius:2px;padding:12px 14px;margin-bottom:14px;}
    #raptureSection .rp-panel-title{font-size:12px;font-weight:900;letter-spacing:2px;color:#121212;font-variant:small-caps;margin-bottom:4px;}
    #raptureSection .rp-panel-sub{font-size:11px;letter-spacing:1.5px;color:var(--text-muted);font-family:'JetBrains Mono',monospace;margin-bottom:10px;}
    #raptureSection .rp-index-display{text-align:center;padding:10px 0;margin-bottom:10px;}
    #raptureSection .rp-index-val{font-family:'JetBrains Mono',monospace;font-size:42px;font-weight:900;color:#b8860b;line-height:1;}
    #raptureSection .rp-index-label{font-size:11px;letter-spacing:2px;color:var(--red);font-weight:700;font-family:'JetBrains Mono',monospace;margin-top:4px;}
    #raptureSection .rp-index-sub{font-size:11px;color:var(--text-muted);margin-top:4px;}
    #raptureSection .rp-meter{background:var(--surface-hover);height:10px;border-radius:2px;margin:8px 0;position:relative;border:1px solid var(--border);}
    #raptureSection .rp-meter-fill{height:100%;border-radius:2px;background:linear-gradient(90deg,#2d7a3e,#b8860b,#a42020);}
    #raptureSection .rp-meter-labels{display:flex;justify-content:space-between;font-size:11px;color:var(--text-muted);font-family:'JetBrains Mono',monospace;letter-spacing:1px;margin-top:2px;}
    #raptureSection .rp-thresholds{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin:10px 0;font-family:'JetBrains Mono',monospace;}
    #raptureSection .rp-thresh{text-align:center;padding:6px 4px;border-radius:2px;border:1px solid var(--border);}
    #raptureSection .rp-thresh-val{font-size:11px;font-weight:900;}
    #raptureSection .rp-thresh-lbl{font-size:11px;letter-spacing:1px;color:var(--text-muted);margin-top:2px;}
    #raptureSection .rp-thresh.active{background:#b8860b;border-color:#b8860b;}
    #raptureSection .rp-thresh.active .rp-thresh-val,
    #raptureSection .rp-thresh.active .rp-thresh-lbl{color:#ffffff;}
    #raptureSection table{width:100%;border-collapse:collapse;font-size:11px;}
    #raptureSection th{text-align:left;font-size:11px;font-weight:700;letter-spacing:2px;color:#121212;padding:6px 8px;border-bottom:2px solid #121212;white-space:nowrap;background:#ffffff;font-family:'JetBrains Mono',monospace;}
    #raptureSection td{padding:6px 8px;border-bottom:1px solid var(--border);color:#121212;vertical-align:top;}
    #raptureSection tr:hover td{background:#f5f5f5;}
    #raptureSection .rp-cat{font-weight:700;white-space:nowrap;}
    #raptureSection .rp-hot{color:var(--red);font-weight:900;}
    #raptureSection .rp-score{font-family:'JetBrains Mono',monospace;font-weight:700;text-align:center;width:40px;}
    #raptureSection .rp-score.max{color:var(--red);font-weight:900;}
    #raptureSection .rp-trend{font-family:'JetBrains Mono',monospace;text-align:center;width:30px;}
    #raptureSection .rp-verse{font-size:11px;color:var(--text-muted);font-style:italic;}
    #raptureSection .rp-dual{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
    #raptureSection .rp-checklist{list-style:none;padding:0;margin:0;}
    #raptureSection .rp-checklist li{padding:5px 0;border-bottom:1px dashed var(--border);font-size:11px;line-height:1.5;display:flex;gap:8px;}
    #raptureSection .rp-checklist li:last-child{border-bottom:none;}
    #raptureSection .rp-check{font-family:'JetBrains Mono',monospace;font-size:12px;flex-shrink:0;width:18px;text-align:center;}
    #raptureSection .rp-check.yes{color:var(--red);font-weight:900;}
    #raptureSection .rp-check.partial{color:#b8860b;font-weight:700;}
    #raptureSection .rp-check.no{color:var(--text-muted);}
    #raptureSection .rp-prophecy-ref{font-family:'JetBrains Mono',monospace;font-size:11px;color:var(--text-muted);margin-left:4px;}
    #raptureSection .rp-prophecy-map{font-size:11px;color:var(--text-dim);display:block;margin-top:1px;margin-left:26px;}
    #raptureSection .rp-wire{list-style:none;padding:0;margin:0;}
    #raptureSection .rp-wire li{padding:6px 0;border-bottom:1px dashed var(--border);font-size:11px;line-height:1.5;}
    #raptureSection .rp-wire li:last-child{border-bottom:none;}
    #raptureSection .rp-wire-date{font-family:'JetBrains Mono',monospace;font-size:11px;color:var(--text-muted);margin-right:6px;}
    #raptureSection .rp-wire-tag{font-size:11px;font-weight:900;letter-spacing:1px;padding:1px 4px;border-radius:2px;margin-right:4px;vertical-align:1px;background:#b8860b;color:#fff;}
    #raptureSection .rp-wire-tag.red{background:var(--red);}
    #raptureSection .rp-wire-tag.dark{background:#121212;}
    #raptureSection .rp-denom{padding:8px 10px;border-left:3px solid var(--border);margin-bottom:10px;font-size:11px;line-height:1.5;}
    #raptureSection .rp-denom:last-child{margin-bottom:0;}
    #raptureSection .rp-denom-name{font-size:11px;font-weight:900;letter-spacing:2px;color:#121212;font-family:'JetBrains Mono',monospace;margin-bottom:3px;}
    #raptureSection .rp-denom.evangelical{border-left-color:var(--red);}
    #raptureSection .rp-denom.catholic{border-left-color:#b8860b;}
    #raptureSection .rp-denom.orthodox{border-left-color:#2d7a3e;}
    #raptureSection .rp-denom.mainline{border-left-color:#4a5568;}
    #raptureSection .rp-editorial{margin-top:10px;padding:10px 14px;border-left:3px solid #b8860b;font-size:11px;line-height:1.55;color:var(--text-dim);font-style:italic;}
    /* ── Temple Mount Primer panel ── */
    .tm-primer{border-left:3px solid #b8860b !important;border-top:none !important;}
    .tm-primer-tag{font-family:'JetBrains Mono',monospace;font-size:11px;font-weight:900;letter-spacing:2.5px;color:#1a1611;text-transform:uppercase;margin-bottom:4px;padding-bottom:6px;border-bottom:1px solid var(--border);}
    .tm-text{font-family:'DM Sans',-apple-system,sans-serif;font-size:14px;line-height:1.6;color:var(--text);margin:0 0 10px 0;}
    .tm-text b{color:#1a1611;}
    .tm-footer-note{font-size:11px;color:var(--text-muted);font-style:italic;margin-top:12px;padding-top:8px;border-top:1px dashed var(--border);}
    #raptureSection .rp-footer{margin-top:10px;padding-top:8px;border-top:1px dashed var(--border);font-size:11px;color:var(--text-muted);text-align:center;font-family:'JetBrains Mono',monospace;letter-spacing:1px;}
    #raptureSection .rp-footer a{color:var(--text-muted);text-decoration:none;border-bottom:1px dotted var(--border);margin:0 4px;}
    #raptureSection .rp-footer a:hover{color:#b8860b;border-bottom-color:#b8860b;}
    @media (max-width:700px){
      #raptureSection .rp-dual{grid-template-columns:1fr;}
      #raptureSection .rp-thresholds{grid-template-columns:repeat(2,1fr);}

      /* ── mobile card layout for hot categories table ── */
      #raptureSection #raptureHotCats thead { display: none; }
      #raptureSection #raptureHotCats tbody { display: block; }
      #raptureSection #raptureHotCats tbody tr {
        display: block;
        border: 1px solid var(--border);
        border-top: 3px solid #b8860b;
        border-radius: 2px;
        padding: 12px 14px;
        margin-bottom: 14px;
        background: #fff;
      }
      html[data-theme="dark"] #raptureSection #raptureHotCats tbody tr {
        background: var(--surface);
        border-top-color: #b8860b;
      }
      #raptureSection #raptureHotCats tbody td {
        display: block;
        width: 100%;
        padding: 4px 0;
        border-bottom: none;
        font-size: 13px;
        line-height: 1.55;
        text-align: left;
      }
      /* Category name — first cell, bold, acts as card title */
      #raptureSection #raptureHotCats tbody td:nth-child(1) {
        font-size: 14px;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--border);
        margin-bottom: 8px;
      }
      /* Score */
      #raptureSection #raptureHotCats tbody td:nth-child(2) {
        width: auto;
        text-align: left;
      }
      #raptureSection #raptureHotCats tbody td:nth-child(2)::before {
        content: 'SCORE';
        display: inline-block;
        font-family: 'JetBrains Mono', monospace;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2px;
        color: #b8860b;
        margin-right: 8px;
        min-width: 60px;
      }
      /* Trend */
      #raptureSection #raptureHotCats tbody td:nth-child(3) {
        width: auto;
        text-align: left;
      }
      #raptureSection #raptureHotCats tbody td:nth-child(3)::before {
        content: 'TREND';
        display: inline-block;
        font-family: 'JetBrains Mono', monospace;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2px;
        color: #b8860b;
        margin-right: 8px;
        min-width: 60px;
      }
      /* Key Verse */
      #raptureSection #raptureHotCats tbody td:nth-child(4)::before {
        content: 'VERSE';
        display: inline-block;
        font-family: 'JetBrains Mono', monospace;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2px;
        color: #b8860b;
        margin-right: 8px;
        min-width: 60px;
      }
      /* Why It's Hot — full width text */
      #raptureSection #raptureHotCats tbody td:nth-child(5) {
        padding-top: 8px;
        border-top: 1px dashed var(--border);
        margin-top: 4px;
        font-size: 12px;
        line-height: 1.5;
        color: var(--text-dim);
      }
    }

/* === ai_section === */
#aiSection{font-family:Georgia,'Times New Roman',serif;color:#121212;}
    #aiSection .ai-panel{background:#ffffff;border:1px solid var(--border);border-top:3px solid #121212;border-radius:2px;padding:14px 18px;margin-bottom:18px;position:relative;overflow-x:auto;}
    #aiSection .ai-panel-title{font-family:Georgia,'Times New Roman',serif;font-size:14px;font-weight:900;letter-spacing:2px;color:#121212;font-variant:small-caps;margin-bottom:4px;}
    #aiSection .ai-panel-sub{font-size:11px;letter-spacing:2px;color:var(--text-muted);text-transform:uppercase;font-family:'JetBrains Mono',monospace;margin-bottom:12px;}
    #aiSection .ai-dateline{font-size:11px;letter-spacing:2px;color:var(--text-muted);text-transform:uppercase;font-family:'JetBrains Mono',monospace;text-align:right;margin-bottom:10px;}
    #aiSection table{width:100%;border-collapse:collapse;font-size:11px;table-layout:fixed;}
    #aiSection th{text-align:left;font-size:11px;font-weight:700;letter-spacing:2px;color:#121212;padding:6px 8px;border-bottom:2px solid #121212;white-space:nowrap;background:#ffffff;font-family:'JetBrains Mono',monospace;}
    #aiSection td{padding:7px 8px;border-bottom:1px solid var(--border);color:#121212;vertical-align:top;font-size:11px;word-wrap:break-word;overflow-wrap:break-word;}
    #aiSection th:nth-child(1),#aiSection td:nth-child(1){width:10%;}
    #aiSection th:nth-child(2),#aiSection td:nth-child(2){width:13%;}
    #aiSection th:nth-child(3),#aiSection td:nth-child(3){width:15%;}
    #aiSection th:nth-child(4),#aiSection td:nth-child(4){width:9%;}
    #aiSection th:nth-child(5),#aiSection td:nth-child(5){width:53%;}
    #aiSection tr:hover td{background:#f5f5f5;}
    #aiSection .ai-lab{font-weight:700;white-space:nowrap;}
    #aiSection .ai-badge{display:inline-block;font-size:11px;font-weight:900;padding:1px 5px;border-radius:2px;margin-right:5px;letter-spacing:1px;vertical-align:1px;color:#ffffff;font-family:'JetBrains Mono',monospace;}
    #aiSection .ai-badge.us{background:#121212;}
    #aiSection .ai-badge.cn{background:var(--red);}
    #aiSection .ai-badge.eu{background:#0c2c56;}
    #aiSection .ai-val{font-family:'JetBrains Mono',monospace;font-weight:700;}
    #aiSection .ai-capex-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-bottom:14px;}
    #aiSection .ai-capex-card{background:#f5f5f5;border:1px solid var(--border);border-top:2px solid var(--red);border-radius:2px;padding:10px;text-align:center;}
    #aiSection .ai-capex-val{font-family:'JetBrains Mono',monospace;font-size:20px;font-weight:900;color:#121212;line-height:1.1;}
    #aiSection .ai-capex-lbl{font-size:11px;letter-spacing:1.5px;color:var(--text-muted);margin-top:3px;font-family:'JetBrains Mono',monospace;}
    #aiSection .ai-capex-sub{font-size:11px;color:var(--text-dim);margin-top:2px;}
    #aiSection .ai-feed{list-style:none;padding:0;margin:0;}
    #aiSection .ai-feed li{padding:6px 0;border-bottom:1px dashed var(--border);font-size:11px;line-height:1.5;}
    #aiSection .ai-feed li:last-child{border-bottom:none;}
    #aiSection .ai-feed-date{font-family:'JetBrains Mono',monospace;font-size:11px;color:var(--text-muted);margin-right:6px;}
    #aiSection .ai-feed-tag{font-size:11px;font-weight:900;letter-spacing:1px;padding:1px 4px;border-radius:2px;margin-right:4px;vertical-align:1px;}
    #aiSection .ai-feed-tag.release{background:#121212;color:#fff;}
    #aiSection .ai-feed-tag.policy{background:var(--red);color:#fff;}
    #aiSection .ai-feed-tag.china{background:#b8860b;color:#fff;}
    #aiSection .ai-dual{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
    #aiSection .ai-narrative{margin-top:0;padding:10px 14px;border-left:3px solid var(--red);font-size:12px;line-height:1.5;color:var(--text-dim);font-style:italic;}
    #aiSection .ai-src{font-family:'JetBrains Mono',monospace;font-size:11px;letter-spacing:1px;color:var(--text-muted);margin-top:8px;}
    #aiSection .ai-src a{color:var(--text-muted);text-decoration:none;border-bottom:1px dotted var(--border);margin-right:5px;}
    #aiSection .ai-src a:hover{color:var(--red);border-bottom-color:var(--red);}
    @media(max-width:700px){
      #aiSection .ai-capex-grid{grid-template-columns:repeat(2,1fr);}
      #aiSection .ai-dual{grid-template-columns:1fr;}
      /* ── mobile card layout for lab scorecard tables ── */
      #aiSection table{table-layout:auto;}
      #aiSection thead{display:none;}
      #aiSection tbody{display:block;}
      #aiSection tr{display:block;border:1px solid var(--border);border-top:3px solid #121212;border-radius:2px;padding:12px 14px;margin-bottom:14px;background:#fff;}
      #aiSection td{display:block;width:100%!important;padding:4px 0;border-bottom:none;font-size:12px;line-height:1.55;}
      /* lab name row */
      #aiSection td:nth-child(1){font-size:14px;font-weight:900;padding-bottom:8px;border-bottom:1px solid var(--border);margin-bottom:8px;}
      #aiSection td.ai-lab{white-space:normal;}
      /* label each cell — domestic table */
      #aiDomesticTable td:nth-child(2)::before{content:'FLAGSHIP';display:block;font-family:'JetBrains Mono',monospace;font-size:10px;font-weight:700;letter-spacing:2px;color:var(--red);margin-bottom:2px;}
      #aiDomesticTable td:nth-child(3)::before{content:'VALUATION / CAPEX';display:block;font-family:'JetBrains Mono',monospace;font-size:10px;font-weight:700;letter-spacing:2px;color:var(--red);margin-bottom:2px;}
      #aiDomesticTable td:nth-child(4)::before{content:'HEADCOUNT';display:block;font-family:'JetBrains Mono',monospace;font-size:10px;font-weight:700;letter-spacing:2px;color:var(--red);margin-bottom:2px;}
      #aiDomesticTable td:nth-child(5)::before{content:'SAFETY POSTURE';display:block;font-family:'JetBrains Mono',monospace;font-size:10px;font-weight:700;letter-spacing:2px;color:var(--red);margin-bottom:2px;}
      /* label each cell — international table */
      #aiIntlTable td:nth-child(2)::before{content:'FLAGSHIP';display:block;font-family:'JetBrains Mono',monospace;font-size:10px;font-weight:700;letter-spacing:2px;color:var(--red);margin-bottom:2px;}
      #aiIntlTable td:nth-child(3)::before{content:'CHIP ACCESS';display:block;font-family:'JetBrains Mono',monospace;font-size:10px;font-weight:700;letter-spacing:2px;color:var(--red);margin-bottom:2px;}
      #aiIntlTable td:nth-child(4)::before{content:'BENCHMARK';display:block;font-family:'JetBrains Mono',monospace;font-size:10px;font-weight:700;letter-spacing:2px;color:var(--red);margin-bottom:2px;}
      #aiIntlTable td:nth-child(5)::before{content:'NOTES';display:block;font-family:'JetBrains Mono',monospace;font-size:10px;font-weight:700;letter-spacing:2px;color:var(--red);margin-bottom:2px;}
      #aiSection td:nth-child(n+2){padding-top:8px;}
      /* ai-val mono stays readable */
      #aiSection .ai-val{font-size:12px;}
      /* badge spacing */
      #aiSection .ai-badge{margin-bottom:2px;}
      /* source links wrap better */
      #aiSection .ai-src{font-size:10px;line-height:1.8;}
      #aiSection .ai-src a{display:inline-block;margin-bottom:3px;}
    }

/* === seattle_teams === */
.sports-compact{margin-bottom:14px;}
    .sports-compact .section-header{margin-bottom:6px;}
    .sports-compact .section-tag{font-size:11px;padding:3px 8px;}
    .sports-compact .section-quip{font-size:11px;}
    .sports-compact .cards-row{gap:10px;grid-template-columns:repeat(4,1fr);}
    .sports-compact .card{padding:12px 14px;min-height:0;}
    .sports-compact .card-team-name{font-size:11px;letter-spacing:2px;margin-bottom:3px;}
    .sports-compact .card-score{font-size:18px;margin-bottom:3px;}
    .sports-compact .card-detail{font-size:11px;margin-bottom:3px;}
    .sports-compact .card-next{font-size:11px;margin-bottom:4px;}
    .sports-compact .card-quip{font-size:11px;line-height:1.5;max-height:5.5em;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;}
/* ════════ MULTI-PAGE NAV + LANDING CARDS ════════ */
.section-nav a.active{color:var(--red);font-weight:900;border-bottom:2px solid var(--red);}
.landing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:14px;margin:18px 0 24px;align-items:start;}
.landing-card{display:block;background:#ffffff;border:1px solid var(--border);border-top:3px solid var(--red);border-radius:2px;padding:16px 18px;text-decoration:none;color:var(--text);transition:border-color .15s ease, transform .15s ease;}
.landing-card:hover{border-color:var(--text);transform:translateY(-1px);}
.landing-card .lc-tag{font-size:11px;letter-spacing:2.5px;font-weight:900;color:var(--red);text-transform:uppercase;font-family:'JetBrains Mono',monospace;margin-bottom:6px;}
.landing-card .lc-title{font-family:Georgia,'Playfair Display',serif;font-size:20px;font-weight:900;line-height:1.15;color:#1a1611;margin-bottom:6px;letter-spacing:-0.3px;}
.landing-card .lc-dek{font-family:Georgia,'Times New Roman',serif;font-size:13px;line-height:1.45;color:var(--text-dim);display:-webkit-box;-webkit-line-clamp:5;-webkit-box-orient:vertical;overflow:hidden;}
.landing-card .lc-more{display:inline-block;margin-top:10px;font-family:'JetBrains Mono',monospace;font-size:11px;letter-spacing:2px;font-weight:700;color:var(--accent);text-transform:uppercase;}
.landing-card:hover .lc-more{color:var(--red);}
.lan-page-masthead{margin:14px 0 18px;padding-bottom:12px;border-bottom:2px solid var(--text);}
.lan-page-masthead .lpm-tag{font-size:11px;letter-spacing:3px;font-weight:900;color:var(--red);text-transform:uppercase;font-family:'JetBrains Mono',monospace;margin-bottom:4px;}
.lan-page-masthead .lpm-name{font-family:Georgia,'Playfair Display',serif;font-size:38px;font-weight:900;letter-spacing:-0.5px;color:#1a1611;line-height:1;font-variant:small-caps;}
.lan-page-masthead .lpm-kicker{font-family:Georgia,serif;font-size:14px;font-style:italic;color:var(--text-muted);margin-top:6px;}
.back-home{display:inline-block;margin-top:18px;font-family:'JetBrains Mono',monospace;font-size:11px;letter-spacing:2px;font-weight:700;color:var(--accent);text-transform:uppercase;text-decoration:none;border-bottom:1px dotted currentColor;}
.back-home:hover{color:var(--red);}

/* ════════════════════════════════════════════════════════════════
   READABILITY: small-print → DM Sans, headlines → keep serif.
   Headlines (.rd-head, .rd-title, .lpm-name, .lc-title, .lan-masthead
   .lm-name, section .*-title) keep their explicit Georgia/Playfair
   declarations. Body text, deks, list items, captions, and kickers
   switch to DM Sans for easier reading at small sizes.
   ════════════════════════════════════════════════════════════════ */
.editor-note .en-text,
.editor-note .en-sig,
#theRunDown .rd-sub,
#runDownList .rd-dek,
#runDownList article.lead .rd-factbox li,
#runDownList article.lead .rd-pullquote,
.landing-card .lc-dek,
.lan-page-masthead .lpm-kicker,
.lan-masthead .lm-kicker,
#trackTroops .tt-notes,
#trackTroops td, #trackTroops th,
#lebanonTrack .lt-dek,
#lebanonTrack .lt-bullets li,
#lebanonTrack .lt-stat-val,
#lebanonTrack .lt-stat-lbl,
#ukraineTrack .lt-dek,
#ukraineTrack .lt-bullets li,
#ukraineTrack .lt-stat-val,
#ukraineTrack .lt-stat-lbl,
#quantumSection p,
#quantumSection li,
#quantumSection td,
#raptureSection p,
#raptureSection li,
#raptureSection td,
#aiSection p,
#aiSection li,
#aiSection td {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ════════════════════════════════════════════════════════════════
   WILD CARD page styles. Each .wc-entry is a card with a kicker tag,
   a date, a serif headline, sans-serif body paragraphs, optional
   pullquote, and a fact box. Voice is dry-sarcastic; styling stays
   newsprint-restrained.
   ════════════════════════════════════════════════════════════════ */
#wcFeed { display: flex; flex-direction: column; gap: 18px; }
.wc-entry {
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  border-radius: 2px;
  padding: 18px 22px;
  position: relative;
}
.wc-entry-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.wc-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: var(--red);
  text-transform: uppercase;
}
.wc-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.wc-headline {
  font-family: Georgia, 'Playfair Display', 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  color: #1a1611;
  letter-spacing: -0.3px;
  margin: 8px 0 12px 0;
}
.wc-body p {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 10px 0;
}
.wc-body p:last-child { margin-bottom: 0; }
.wc-pullquote {
  margin: 14px 0;
  padding: 8px 16px;
  border-left: 3px solid var(--red);
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-dim);
  background: #fafafa;
}
.wc-pullquote cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}
.wc-factbox {
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--surface-hover);
  border-left: 3px solid var(--amber);
  border-radius: 2px;
}
.wc-factbox-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: var(--amber);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.wc-factbox ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}
.wc-factbox li {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text);
  padding-left: 12px;
  position: relative;
}
.wc-factbox li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--amber);
  font-size: 11px;
}
.wc-factbox li b { color: #1a1611; font-weight: 700; }
@media (max-width: 600px) {
  .wc-factbox ul { grid-template-columns: 1fr; }
  .wc-headline { font-size: 19px; }
}

/* Resolution / update box on a Wild Card entry. Green left border to signal
   "filed; case closed." Smaller, slightly inset from the main body text. */
.wc-update {
  margin-top: 14px;
  padding: 12px 16px;
  background: #f5faf6;
  border: 1px solid #d4e8d8;
  border-left: 3px solid var(--green);
  border-radius: 2px;
}
.wc-update-tag {
  display: inline-block;
  margin-bottom: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: var(--green);
  text-transform: uppercase;
}
.wc-update p {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}

/* Photo figure inside a Wild Card entry. Constrained max-width so a tall
   portrait photo doesn't dominate; caption styled like the kicker labels. */
.wc-figure {
  margin: 16px auto;
  text-align: center;
}
.wc-figure img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 520px;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.wc-figure figcaption {
  margin-top: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  line-height: 1.4;
}
.wc-figure figcaption em {
  text-transform: none;
  letter-spacing: 0.5px;
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text-dim);
}

/* Track the Troops auxiliary analyst panels: Macgregor wire, Heat Window,
   Desal Tripwire. Looser than .tt-notes (which is a tight one-liner SAY-vs-DO),
   each gets a labeled tag, two-paragraph body, and source row. */
.tt-analyst {
  margin-top: 14px;
  padding: 12px 16px 10px 16px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--brass);
  border-radius: 2px;
  color: #121212;
}
.tt-analyst-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: var(--brass);
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.tt-analyst p {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 10px 0;
}
.tt-analyst p:last-of-type { margin-bottom: 8px; }
.tt-analyst p b { color: #1a1611; font-weight: 700; }
.tt-analyst-src {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 6px;
  border-top: 1px dashed var(--border);
}
.tt-analyst-src a {
  color: var(--text-muted);
  text-decoration: none;
  margin-right: 10px;
  border-bottom: 1px dotted var(--border-glow);
}
.tt-analyst-src a:hover { color: var(--red); border-bottom-color: var(--red); }

/* Heat Window: amber accent. Desal Tripwire: red accent. */
#ttHeatWindow { border-left-color: var(--amber); }
#ttHeatWindow .tt-analyst-tag { color: var(--amber); }
#ttDesalTripwire { border-left-color: var(--red); }
#ttDesalTripwire .tt-analyst-tag { color: var(--red); }

/* Beyond The Oil panel: dark accent (this one is the gut-punch). */
#ttBeyondOil { border-left-color: #1a1611; }
#ttBeyondOil .tt-analyst-tag { color: #1a1611; }

/* Roy Cohn Operating System: editorial framing panel on politics.html.
   Black left rule (it's the doctrine), tight numbered list, italic
   aphorism at the bottom. */
.rc-doctrine {
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 3px solid #1a1611;
  border-radius: 2px;
  padding: 14px 18px 12px 18px;
  margin: 0 0 16px 0;
}
.rc-doctrine-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #1a1611;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.rc-doctrine p {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 10px 0;
}
.rc-rules {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 12px 0;
  padding-left: 22px;
}
.rc-rules li {
  margin-bottom: 8px;
}
.rc-rules li b {
  color: #1a1611;
  font-weight: 800;
}
.rc-aphorism {
  margin-top: 14px;
  padding: 10px 16px;
  border-left: 3px solid var(--red);
  background: #fafafa;
  font-family: Georgia, 'Playfair Display', 'Times New Roman', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
  color: var(--text-dim);
}
.rc-aphorism cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* PAPER REALITY vs HARD ASSETS panel on markets.html. Two-column split,
   editorial aphorism top and bottom (top in red, bottom darker). */
.pvh-panel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 2px;
  padding: 14px 18px 12px 18px;
  margin: 0 0 16px 0;
}
.pvh-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.pvh-aphorism {
  margin: 8px 0 10px 0;
  padding: 8px 16px;
  border-left: 3px solid var(--red);
  background: #fafafa;
  font-family: Georgia, 'Playfair Display', 'Times New Roman', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-dim);
}
.pvh-aphorism cite {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pvh-aphorism-bottom { border-left-color: #1a1611; }
.pvh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 12px 0;
}
.pvh-col {
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 10px 14px;
}
.pvh-col-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #1a1611;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px dashed var(--border);
}
.pvh-col:first-child .pvh-col-tag { color: var(--green); }
.pvh-col:last-child .pvh-col-tag { color: var(--red); }
.pvh-col ul {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
}
.pvh-col li { padding: 3px 0; }
.pvh-frame {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 12px 0 6px 0;
}
@media (max-width: 700px) { .pvh-grid { grid-template-columns: 1fr; } }

/* PAPER OIL vs SPOT tracker — three-column physical/futures spread panel. */
.pos-panel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--copper);
  border-radius: 2px;
  padding: 14px 18px 12px 18px;
  margin: 0 0 16px 0;
}
.pos-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: var(--copper);
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.pos-intro {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 12px 0;
}
.pos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.pos-col {
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-top: 3px solid var(--text-muted);
  border-radius: 2px;
  padding: 12px 14px;
}
.pos-col.pos-paper { border-top-color: var(--text-muted); }
.pos-col.pos-dated { border-top-color: var(--amber); }
.pos-col.pos-spot { border-top-color: var(--red); }
.pos-col-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pos-paper .pos-col-tag { color: var(--text-muted); }
.pos-dated .pos-col-tag { color: var(--amber); }
.pos-spot .pos-col-tag { color: var(--red); }
.pos-col-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 900;
  color: #1a1611;
  line-height: 1;
  margin-bottom: 4px;
}
.pos-col-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pos-col-note {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text);
}
.pos-spread {
  background: #1a1611;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 2px;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.pos-spread-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: #cccccc;
  text-transform: uppercase;
}
.pos-spread-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 900;
  color: var(--amber);
}
.pos-spread-sub {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 12px;
  color: #cccccc;
  flex: 1;
  min-width: 240px;
}
.pos-frame {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 10px 0;
}
.pos-aphorism {
  margin: 8px 0 10px 0;
  padding: 10px 16px;
  border-left: 3px solid var(--red);
  background: #fafafa;
  font-family: Georgia, 'Playfair Display', 'Times New Roman', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: var(--text-dim);
}
.pos-aphorism cite {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pos-src {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 6px;
  border-top: 1px dashed var(--border);
}
.pos-src a { color: var(--text-muted); text-decoration: none; margin-right: 10px; border-bottom: 1px dotted var(--border-glow); }
.pos-src a:hover { color: var(--red); border-bottom-color: var(--red); }
@media (max-width: 700px) { .pos-grid { grid-template-columns: 1fr; } }

/* CLAIMS LEDGER on politics.html — table of unfulfilled / disputed Truth
   Social claims with day-since counters and color-coded status cells. */
.cl-panel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 2px;
  padding: 14px 18px 12px 18px;
  margin: 0 0 16px 0;
}
.cl-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.cl-intro {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 12px 0;
}
.cl-table-wrap { overflow-x: auto; margin-bottom: 10px; }
.cl-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 13px;
}
.cl-table thead th {
  text-align: left;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 8px 10px;
  border-bottom: 2px solid #1a1611;
  background: #fafafa;
}
.cl-table tbody td {
  padding: 10px;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  line-height: 1.5;
}
.cl-table tbody tr:last-child td { border-bottom: none; }
.cl-cell-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  white-space: nowrap;
}
.cl-cell-days {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 900;
  color: #1a1611;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.cl-status {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 2px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.cl-no-receipts { background: #fff5e6; color: var(--amber); border: 1px solid #f0d699; }
.cl-denied      { background: #fde7e7; color: var(--red);   border: 1px solid #f0a8a8; }
.cl-expired     { background: #f5f5f5; color: var(--text-muted); border: 1px solid var(--border); }
.cl-disputed    { background: #fff5e6; color: var(--amber); border: 1px solid #f0d699; }
.cl-unverified  { background: #f5f5f5; color: var(--text-muted); border: 1px solid var(--border); }
.cl-policy      { background: #ebf3ee; color: var(--green); border: 1px solid #c4dfd0; }
.cl-fulfilled   { background: #ebf3ee; color: var(--green); border: 1px solid #c4dfd0; }
.cl-frame {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  margin: 12px 0 8px 0;
}
.cl-aphorism {
  margin: 8px 0 10px 0;
  padding: 10px 16px;
  border-left: 3px solid var(--red);
  background: #fafafa;
  font-family: Georgia, 'Playfair Display', 'Times New Roman', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-dim);
}
.cl-aphorism cite {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cl-src {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 6px;
  border-top: 1px dashed var(--border);
}
.cl-src a {
  color: var(--text-muted);
  text-decoration: none;
  margin-right: 10px;
  border-bottom: 1px dotted var(--border-glow);
}
.cl-src a:hover { color: var(--red); border-bottom-color: var(--red); }
@media (max-width: 700px) {
  /* ── mobile card layout for claims ledger ── */
  .cl-table thead { display: none; }
  .cl-table tbody { display: block; }
  .cl-table tbody tr { display: block; border: 1px solid var(--border); border-top: 3px solid #1a1611; border-radius: 2px; padding: 12px 14px; margin-bottom: 14px; background: #fff; }
  .cl-table tbody tr.cl-featured { background: #fff8ef; }
  .cl-table tbody td { display: block; width: 100%; padding: 4px 0; border-bottom: none; font-size: 13px; line-height: 1.55; }
  /* claim text — first cell, no label needed */
  .cl-table tbody td:nth-child(1) { font-size: 13px; padding-bottom: 10px; border-bottom: 1px solid var(--border); margin-bottom: 8px; }
  /* asserted date + days + status inline row */
  .cl-table tbody td:nth-child(2)::before { content: 'ASSERTED'; display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--red); margin-bottom: 2px; }
  .cl-table tbody td:nth-child(3)::before { content: 'DAYS'; display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--red); margin-bottom: 2px; }
  .cl-table tbody td:nth-child(4)::before { content: 'STATUS'; display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--red); margin-bottom: 2px; }
  .cl-table tbody td:nth-child(5)::before { content: 'NOTES'; display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--red); margin-bottom: 2px; }
  .cl-table tbody td:nth-child(n+2) { padding-top: 8px; }
  .cl-cell-date { white-space: normal; }
  .cl-cell-days { font-size: 22px; text-align: left; }
}

/* Carrier Endurance: navy accent (Navy ship, Navy color) */
#ttCarrierEndurance { border-left-color: var(--seahawks-blue); }
#ttCarrierEndurance .tt-analyst-tag { color: var(--seahawks-blue); }

/* Featured (top-of-ledger) claim row: subtle tint + slightly darker bottom rule. */
.cl-table tbody tr.cl-featured td {
  background: #fff8ef;
  border-bottom: 2px solid #1a1611;
}

/* DUDE WATCH — daily auto-counter on the unnamed F-15E aircrew (Dude 44 A/B).
   Big number, dark headline, sustained editorial framing. */
.dude-watch {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 2px;
  padding: 16px 20px 14px 20px;
  margin: 0 0 16px 0;
  position: relative;
  overflow: hidden;
}
.dude-watch::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--amber), var(--red));
}
.dude-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.dude-headline {
  font-family: Georgia, 'Playfair Display', 'Times New Roman', serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 14px;
  font-style: italic;
}
.dude-counter {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 14px 18px;
  margin-bottom: 14px;
}
.dude-counter-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 44px;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 70px;
  text-align: center;
  flex-shrink: 0;
}
.dude-counter-lbl {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}
.dude-counter-lbl b { color: var(--red); font-weight: 800; }
.dude-body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 10px 0;
}
.dude-days-inline {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 900;
  color: var(--amber);
}
.dude-aphorism {
  margin-top: 12px;
  padding: 10px 16px;
  border-left: 3px solid var(--amber);
  background: #221c14;
  font-family: Georgia, 'Playfair Display', 'Times New Roman', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: #ffffff;
}
.dude-aphorism cite {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
}
@media (max-width: 700px) {
  .dude-watch { padding: 12px 14px 10px 14px; }
  .dude-watch > div[style*="display:flex"] { flex-direction: column; gap: 12px; }
  .dude-watch > div[style*="display:flex"] > img { width: 100%; max-width: 200px; align-self: center; order: -1; }
  .dude-counter { flex-direction: column; align-items: flex-start; gap: 6px; padding: 10px 12px; }
  .dude-counter-num { font-size: 40px; min-width: auto; text-align: left; }
  .dude-headline { font-size: 22px; margin-bottom: 6px; }
  .dude-tag { margin-bottom: 6px; padding-bottom: 4px; }
  .dude-body { font-size: 13px; }
  .dude-aphorism { font-size: 15px; padding: 8px 12px; }
}

/* Trump Ballroom post-hoc justification block: GOP quotes + on-the-facts rebuttal. */
.ballroom-pivot {
  margin-top: 14px;
  padding: 14px 18px 12px 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 2px;
}
.bp-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.ballroom-pivot p {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 10px 0;
}
.bp-quotes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}
.bp-quote {
  padding: 10px 14px;
  background: #fafafa;
  border-left: 3px solid var(--amber);
  font-family: Georgia, 'Playfair Display', 'Times New Roman', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-dim);
}
.bp-quote cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.bp-rebuttal {
  margin-top: 14px;
  padding: 12px 16px;
  background: #1a1611;
  color: #e8dfcf;
  border-radius: 2px;
}
.bp-rebuttal-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #3a342c;
}
.bp-rebuttal p {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #e8dfcf;
  margin: 0 0 10px 0;
}
.bp-rebuttal p:last-child { margin-bottom: 0; }
.bp-rebuttal b { color: #ffffff; font-weight: 800; }

/* VAULT WATCH — foreign gold custody panel on markets.html. Gold accent
   (amber/brass), 4-column card grid for facts, dark Fort Knox card for
   visual asymmetry. */
.vault-panel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  border-radius: 2px;
  padding: 14px 18px 12px 18px;
  margin: 0 0 16px 0;
}
.vault-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.vault-intro {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 12px 0;
}
.vault-intro b { color: #1a1611; font-weight: 700; }
.vault-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.vault-card {
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  border-radius: 2px;
  padding: 10px 12px;
}
.vault-card-fk {
  background: #1a1611;
  color: #e8dfcf;
  border-color: #1a1611;
  border-top-color: var(--red);
}
.vault-card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.vault-card-fk .vault-card-tag { color: var(--red); }
.vault-card-fact {
  font-family: 'JetBrains Mono', monospace;
  font-size: 26px;
  font-weight: 900;
  color: #1a1611;
  line-height: 1;
  margin-bottom: 6px;
}
.vault-card-fk .vault-card-fact { color: var(--amber); }
.vault-unit {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}
.vault-card-fk .vault-unit { color: #c4b893; }
.vault-card-sub {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 11px;
  line-height: 1.45;
  color: var(--text);
}
.vault-card-fk .vault-card-sub { color: #e8dfcf; }
.vault-frame {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 10px 0;
}
.vault-aphorism {
  margin: 8px 0 10px 0;
  padding: 10px 16px;
  border-left: 3px solid var(--amber);
  background: #fafafa;
  font-family: Georgia, 'Playfair Display', 'Times New Roman', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  color: var(--text-dim);
}
.vault-aphorism cite {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.vault-src {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 6px;
  border-top: 1px dashed var(--border);
}
.vault-src a { color: var(--text-muted); text-decoration: none; margin-right: 10px; border-bottom: 1px dotted var(--border-glow); }
.vault-src a:hover { color: var(--red); border-bottom-color: var(--red); }
@media (max-width: 900px) { .vault-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .vault-grid { grid-template-columns: 1fr; } }

/* Vault Watch extras: historical context + Macgregor wire side-by-side. */
.vault-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 12px 0;
}
.vault-extra {
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brass);
  border-radius: 2px;
  padding: 10px 14px;
}
.vault-extra-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--brass);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.vault-extra p {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}
.vault-aphorism-close {
  border-left-color: #1a1611;
  margin-top: 4px;
}
@media (max-width: 700px) { .vault-extras { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════
   THE POUR — newsletter archive page styling. Each issue is an
   <article class="pour-issue">. Sections within an issue use
   .pour-section. Headlines serif (Georgia), body sans (DM Sans).
   ════════════════════════════════════════════════════════════════ */
.pour-about {
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 2px;
  padding: 14px 18px;
  margin: 0 0 16px 0;
}
.pour-about-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.pour-about p {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 10px 0;
}
.pour-about p:last-of-type { margin-bottom: 12px; }
.pour-about p b { color: #1a1611; font-weight: 700; }
.pour-subscribe-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #1a1611;
  color: #ffffff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid #1a1611;
  transition: background .15s ease;
}
.pour-subscribe-btn:hover {
  background: var(--red);
  border-color: var(--red);
}

.pour-index {
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 12px 18px;
  margin: 0 0 18px 0;
}
.pour-index-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.pour-index ul { list-style: none; margin: 0; padding: 0; }
.pour-index li { padding: 4px 0; }
.pour-index a {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 14px;
  padding: 4px 0;
}
.pour-index a:hover { color: var(--red); }
.pour-idx-no {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--red);
  min-width: 50px;
}
.pour-idx-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
  min-width: 110px;
}
.pour-idx-title {
  flex: 1;
  font-style: italic;
  color: var(--text);
}
.pour-idx-state {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 2px 8px;
  border-radius: 2px;
}
.pour-idx-draft {
  background: #fff5e6;
  color: var(--amber);
  border: 1px solid #f0d699;
}
.pour-idx-published {
  background: #ebf3ee;
  color: var(--green);
  border: 1px solid #c4dfd0;
}

.pour-issue {
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 3px solid #1a1611;
  border-radius: 2px;
  padding: 22px 28px 18px 28px;
  margin: 0 0 22px 0;
  scroll-margin-top: 70px;
}
.pour-issue-head {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #1a1611;
}
.pour-issue-no {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pour-issue-title {
  font-family: Georgia, 'Playfair Display', 'Times New Roman', serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.1;
  color: #1a1611;
  letter-spacing: -0.5px;
  margin: 0 0 6px 0;
  font-style: italic;
}
.pour-issue-tagline {
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
}

.pour-section {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
}
.pour-section:last-of-type { border-bottom: none; padding-bottom: 0; }
.pour-section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.pour-section p {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 12px 0;
}
.pour-section p:last-child { margin-bottom: 0; }
.pour-section p b { color: #1a1611; font-weight: 700; }
.pour-section p a { color: var(--red); text-decoration: none; border-bottom: 1px dotted currentColor; }
.pour-section p a:hover { border-bottom-style: solid; }

.pour-pull {
  margin: 14px 0 4px 0;
  padding: 10px 16px;
  border-left: 3px solid var(--red);
  background: #fafafa;
  font-family: Georgia, 'Playfair Display', 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.45;
  color: var(--text-dim);
  font-style: italic;
}
.pour-pull em {
  font-style: italic;
  color: var(--red);
  font-weight: 700;
}

.pour-section-editor { padding-top: 6px; }
.pour-sig {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
  margin-top: 8px;
}

.pour-issue-foot {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 2px solid #1a1611;
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
}
.pour-issue-foot a { color: var(--text-muted); border-bottom: 1px dotted currentColor; text-decoration: none; }
.pour-issue-foot a:hover { color: var(--red); border-bottom-color: var(--red); }

@media (max-width: 600px) {
  .pour-issue { padding: 16px 18px; }
  .pour-issue-title { font-size: 24px; }
  .pour-section p { font-size: 14px; }
}

/* ════════════════════════════════════════════════════════════════
   THE WATCH — curated video. Two-surface page: TIMELY + ABIDING.
   Runtime badges color-coded by commitment (green/amber/red).
   ════════════════════════════════════════════════════════════════ */
.watch-about {
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 3px solid #1a1611;
  border-radius: 2px;
  padding: 14px 18px;
  margin: 0 0 16px 0;
}
.watch-about-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  color: #1a1611;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.watch-about p {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 10px 0;
}
.watch-about p:last-child { margin-bottom: 0; }
.watch-about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.watch-about-list li {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
  padding: 8px 12px;
  background: var(--surface-hover);
  border-radius: 2px;
}
.watch-about-list em { font-style: italic; color: var(--text-dim); }

/* Pills */
.watch-tier-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 2px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-right: 6px;
}
.watch-tier-timely {
  background: #fff5e6;
  color: var(--amber);
  border: 1px solid #f0d699;
}
.watch-tier-abiding {
  background: #ebf3ee;
  color: var(--green);
  border: 1px solid #c4dfd0;
}
.watch-rt-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 2px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-right: 6px;
}
.watch-rt-short  { background: #ebf3ee; color: var(--green); border: 1px solid #c4dfd0; }
.watch-rt-mid    { background: #fff5e6; color: var(--amber); border: 1px solid #f0d699; }
.watch-rt-long   { background: #fde7e7; color: var(--red);   border: 1px solid #f0a8a8; }
.watch-topic-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 2px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--surface-hover);
  color: var(--text-muted);
  border: 1px solid var(--border);
  margin-right: 6px;
}

/* Section headers */
.watch-section-head {
  margin: 22px 0 10px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #1a1611;
}
.watch-section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.watch-section-tag-timely { color: var(--amber); }
.watch-section-tag-abiding { color: var(--green); }
.watch-section-sub {
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Feed */
.watch-feed {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.watch-entry {
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber);
  border-radius: 2px;
  padding: 14px 18px 12px 18px;
}
.watch-entry-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.watch-entry-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
.watch-entry-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  white-space: nowrap;
}
.watch-entry-title {
  font-family: Georgia, 'Playfair Display', 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  margin: 6px 0 4px 0;
  letter-spacing: -0.3px;
}
.watch-entry-title a {
  color: #1a1611;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.watch-entry-title a:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}
.watch-entry-creator {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.watch-entry-take p {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 10px 0;
}
.watch-entry-take p b { color: #1a1611; font-weight: 700; }
.watch-entry-take p a { color: var(--red); text-decoration: none; border-bottom: 1px dotted currentColor; }
.watch-entry-take p a:hover { border-bottom-style: solid; }
.watch-pull {
  margin-top: 10px;
  padding: 8px 14px;
  border-left: 3px solid var(--red);
  background: #fafafa;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-dim);
}
.watch-pull cite {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.watch-empty {
  background: var(--surface-hover);
  border: 1px dashed var(--border);
  border-radius: 2px;
  padding: 14px 18px;
  text-align: center;
}
.watch-empty p {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 6px 0;
  font-style: italic;
}
.watch-empty-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-style: normal !important;
}
@media (max-width: 600px) {
  .watch-entry { padding: 12px 14px; }
  .watch-entry-title { font-size: 17px; }
}

/* ════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — comprehensive small-screen overrides.
   Desktop keeps everything on one row; mobile wraps gracefully.
   ════════════════════════════════════════════════════════════════ */

/* — Main container: tighter padding on small screens — */
@media (max-width: 600px) {
  .main { padding: 8px 10px 40px; }
}

/* — Header: stack logo/title and clock vertically — */
@media (max-width: 600px) {
  .header {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    text-align: center;
    padding: 10px 0;
  }
  .header-left {
    justify-content: center;
    gap: 10px;
  }
  .header-title { font-size: 22px; }
  .header-subtitle { font-size: 10px; letter-spacing: 1.5px; }
  .header-right {
    width: 100%;
    justify-content: center;
    gap: 12px;
  }
  .clock { font-size: 12px; }
}

/* — Section nav: horizontal scroll on mobile, not overflow — */
@media (max-width: 700px) {
  .section-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .section-nav-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: max-content;
    min-width: 100%;
  }
  .section-nav a {
    padding: 8px 10px;
    font-size: 10px;
    letter-spacing: 1px;
  }
  /* hide scrollbar but keep functionality */
  .section-nav::-webkit-scrollbar { display: none; }
  .section-nav { -ms-overflow-style: none; scrollbar-width: none; }
}

/* — Editor note: tighter on mobile — */
@media (max-width: 600px) {
  .editor-note { padding: 12px 14px 12px 16px; }
  .editor-note .en-text { font-size: 14px; line-height: 1.6; }
  .editor-note .en-tag { font-size: 10px; }
  .editor-note .en-tag .en-date { display: block; margin-left: 0; margin-top: 2px; }
}

/* — Cards row: 2-col then 1-col — */
@media (max-width: 700px) {
  .cards-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 480px) {
  .cards-row { grid-template-columns: 1fr; }
  .cards-row-2 { grid-template-columns: 1fr; }
  .cards-row-3 { grid-template-columns: 1fr; }
}

/* — Landing grid: 2-col then 1-col — */
@media (max-width: 600px) {
  .landing-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .landing-card { padding: 12px 14px; }
  .landing-card .lc-title { font-size: 16px; }
  .landing-card .lc-dek { font-size: 12px; }
}
@media (max-width: 400px) {
  .landing-grid { grid-template-columns: 1fr; }
}

/* — Run Down: tighter on mobile — */
@media (max-width: 560px) {
  #theRunDown .rd-masthead { font-size: 12px; }
  #runDownList article .rd-head { font-size: 15px; }
  #runDownList article .rd-dek { font-size: 12px; }
  #runDownList article .rd-kicker { font-size: 10px; }
  #runDownList article.lead .rd-factbox ul { grid-template-columns: 1fr; }
}

/* — Iran War banner: stats 2-col (already handled), delegations stack — */
@media (max-width: 480px) {
  #iranWarBanner .iw-delegations { grid-template-columns: 1fr; gap: 10px; }
  #iranWarBanner .iw-headline { font-size: 13px; }
}

/* — Lebanon stats: 2-col then 1-col — */
@media (max-width: 600px) {
  #lebanonTrack .lt-stats , #ukraineTrack .lt-stats { grid-template-columns: repeat(2, 1fr); }
  #lebanonTrack , #ukraineTrack { padding: 12px 14px; }
}
@media (max-width: 400px) {
  #lebanonTrack .lt-stats , #ukraineTrack .lt-stats { grid-template-columns: 1fr; }
}

/* — Track the Troops: tighter padding — */
@media (max-width: 700px) {
  #trackTroops { padding: 10px 12px; }
}

/* — Market grids: already have breakpoints, add very-small — */
@media (max-width: 400px) {
  .energy-strip { grid-template-columns: 1fr; }
  .ms-hype { grid-template-columns: 1fr; }
}

/* — Seattle / weather / objectives: 1-col at very narrow — */
@media (max-width: 480px) {
  .seattle-grid { grid-template-columns: 1fr; }
  .weather-strip { grid-template-columns: 1fr; }
  .objectives-by-person { grid-template-columns: 1fr; }
  .world-grid { grid-template-columns: 1fr; }
  .gameday-grid { grid-template-columns: 1fr; }
  .bingo-grid { grid-template-columns: repeat(3, 1fr); }
}

/* — War rows (politics page): stack on mobile — */
@media (max-width: 480px) {
  .war-row { grid-template-columns: 1fr; gap: 4px; }
  .war-row.header-row { display: none; }
}

/* — Countdown strip: full-width items — */
@media (max-width: 480px) {
  .countdown-strip { flex-direction: column; }
}

/* — Section page mastheads: scale down — */
@media (max-width: 600px) {
  .lan-masthead .lm-name, .lan-page-masthead .lpm-name { font-size: 26px; }
  .lan-masthead { margin: 32px 0 14px 0; padding: 10px 4px; }
}

/* — Chyron: smaller text on mobile — */
@media (max-width: 600px) {
  .chyron { font-size: 11px; padding: 4px 0; }
}

/* — Proposals grid: stack on mobile — */
@media (max-width: 700px) {
  .proposals-grid { grid-template-columns: 1fr !important; }
}

/* — AI section tables: card-stack on mobile — */
@media (max-width: 700px) {
  #aiSection table, #aiSection thead, #aiSection tbody, #aiSection tr, #aiSection th, #aiSection td { display: block; }
  #aiSection thead { display: none; }
  #aiSection tr { border-bottom: 1px solid var(--border); padding: 8px 0; margin-bottom: 6px; }
  #aiSection td { border: none; padding: 3px 0; font-size: 12px; }
  #aiSection td:first-child { font-weight: 700; font-size: 13px; margin-bottom: 2px; }
  .ai-capex-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 400px) {
  .ai-capex-grid { grid-template-columns: 1fr !important; }
}

/* — Truth Social feed items: stack on very narrow — */
@media (max-width: 480px) {
  .truth-item { grid-template-columns: 1fr; gap: 6px; }
  .truth-item-head { font-size: 12px; }
}


/* === wildcard comic strip + video figure ===
   Two-up image layout for meme-vs-meme entries, stacks on mobile.
   Video element uses the same wc-figure framing as photos. */
.wc-comic-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0;
}
.wc-comic-strip .wc-figure {
  margin: 0;
}
.wc-comic-strip .wc-figure img {
  max-height: 380px;
  width: 100%;
  object-fit: contain;
  background: #0d0d0d;
}
@media (max-width: 600px) {
  .wc-comic-strip {
    grid-template-columns: 1fr;
  }
}
.wc-figure video {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 520px;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #0d0d0d;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}


/* === US Debt cross-source tripwire ===
   Lives on index.html between The Run Down and the landing grid.
   Big ticking counter at top (IMF baseline + IMF-projected deficit run-rate).
   Three small cells below: IMF baseline, OECD baseline, divergence flag.
   Sources annotated; never sources from US Treasury directly. */
.us-debt-card {
  background: linear-gradient(180deg, #1a1813 0%, #0f0e0b 100%);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 18px 22px 16px;
  margin: 18px 0 22px;
  color: var(--text);
}
.usd-tag {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.usd-counter {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #f0e9d2;
  line-height: 1.1;
  margin: 4px 0 6px;
  font-variant-numeric: tabular-nums;
}
.usd-counter-sub {
  font-size: 11px;
  color: #c8c0a8;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.usd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 12px;
}
.usd-cell {
  background: rgba(0,0,0,0.32);
  border-left: 2px solid var(--amber);
  padding: 10px 14px;
}
.usd-cell.divergent {
  border-left-color: #ff6464;
}
.usd-cell.divergent .usd-val { color: #ff6464; }
.usd-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.usd-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 19px;
  font-weight: 700;
  color: #f5edd6;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.usd-asof {
  font-size: 10.5px;
  color: #b8b2a0;
  margin-top: 4px;
  letter-spacing: 0.5px;
}
.usd-foot {
  font-size: 11px;
  line-height: 1.55;
  color: #a8a298;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
}
.usd-foot a { color: var(--amber); text-decoration: none; border-bottom: 1px dotted var(--amber); }
@media (max-width: 600px) {
  .usd-counter { font-size: 28px; }
  .usd-grid { grid-template-columns: 1fr; }
}


/* === Track the Troops · Kinetic Force Laydown Map ===
   Lives on troops.html above the asset table.
   Self-contained SVG; no tile provider, no third-party CSS.
   Asset positions and headings come from a JSON island in the page,
   updated by the track-the-troops scheduled task each run. */
.tt-map-container {
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px 16px 12px;
  margin: 16px 0 22px;
}
.tt-map-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tt-map-stage {
  position: relative;
  background: #dfe7ee;
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 10px;
}
.tt-map-svg {
  display: block;
  width: 100%;
  height: auto;
}
.tt-map-svg .tt-land {
  fill: #353026;          /* warm gray — higher contrast vs blue water */
  stroke: #4a4438;
  stroke-width: 0.8;
}
/* Subtle regional tinting — none more than ~6% lightness apart, so the map
   reads as a continuous landmass with regional context, not a political map. */
.tt-map-svg .tt-land path[data-name="Iran"] { fill: #3d2c22; }                       /* faint warm — adversary */
.tt-map-svg .tt-land path[data-name="Saudi Arabia"],
.tt-map-svg .tt-land path[data-name="United Arab Emirates"],
.tt-map-svg .tt-land path[data-name="Qatar"],
.tt-map-svg .tt-land path[data-name="Kuwait"],
.tt-map-svg .tt-land path[data-name="Bahrain"],
.tt-map-svg .tt-land path[data-name="Oman"],
.tt-map-svg .tt-land path[data-name="Yemen"]                  { fill: #3a3326; }    /* Arabian peninsula */
.tt-map-svg .tt-land path[data-name="Iraq"],
.tt-map-svg .tt-land path[data-name="Syria"],
.tt-map-svg .tt-land path[data-name="Lebanon"],
.tt-map-svg .tt-land path[data-name="Israel"],
.tt-map-svg .tt-land path[data-name="Jordan"],
.tt-map-svg .tt-land path[data-name="Turkey"]                 { fill: #36302a; }    /* Levant + Anatolia */
.tt-map-svg .tt-land path[data-name="Egypt"],
.tt-map-svg .tt-land path[data-name="Sudan"],
.tt-map-svg .tt-land path[data-name="Eritrea"],
.tt-map-svg .tt-land path[data-name="Djibouti"],
.tt-map-svg .tt-land path[data-name="Somalia"],
.tt-map-svg .tt-land path[data-name="Ethiopia"]               { fill: #2f2d31; }    /* horn of Africa cooler */
.tt-map-svg .tt-land path[data-name="Pakistan"],
.tt-map-svg .tt-land path[data-name="India"],
.tt-map-svg .tt-land path[data-name="Afghanistan"]            { fill: #38332c; }    /* subcontinent */
.tt-map-svg .tt-water-grid {
  stroke: #16304e;
  stroke-width: 0.5;
  opacity: 0.6;
}
.tt-map-svg .tt-country-label {
  fill: #888070;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-anchor: middle;
  pointer-events: none;
  opacity: 0.85;
  paint-order: stroke;
  stroke: rgba(0,0,0,0.5);
  stroke-width: 2.5;
  stroke-linejoin: round;
}
.tt-map-svg .tt-water-label {
  fill: #6e92c0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-anchor: middle;
  font-style: italic;
  pointer-events: none;
  opacity: 0.7;
}
.tt-map-svg .tt-asset-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  fill: #e8e2d0;
  text-anchor: start;
  pointer-events: none;
  paint-order: stroke;
  stroke: rgba(0,0,0,0.6);
  stroke-width: 2.5;
  stroke-linejoin: round;
}
.tt-map-svg .tt-asset-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7.5px;
  fill: #aaa;
  letter-spacing: 0.8px;
  text-anchor: start;
  pointer-events: none;
  paint-order: stroke;
  stroke: rgba(0,0,0,0.55);
  stroke-width: 2;
  stroke-linejoin: round;
}

/* Carrier Strike Group: red core, amber ring, animated dashed heading arrow */
.tt-map-svg .tt-csg-core {
  fill: var(--red);
  stroke: #f0e9d2;
  stroke-width: 1.2;
}
.tt-map-svg .tt-csg-pulse {
  fill: none;
  stroke: var(--red);
  stroke-width: 1.2;
  opacity: 0.55;
  animation: ttPulseRing 2.6s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes ttPulseRing {
  0%   { transform: scale(0.8); opacity: 0.7; }
  80%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* MEU/ARG: blue square */
.tt-map-svg .tt-meu-core {
  fill: #4a8bd6;
  stroke: #f0e9d2;
  stroke-width: 1;
}

/* Bomber sortie origin (Diego Garcia): green diamond, no heading arrow */
.tt-map-svg .tt-bomber-core {
  fill: #6bbf6b;
  stroke: #f0e9d2;
  stroke-width: 1;
}

/* Base / fighter sqn: amber dot */
.tt-map-svg .tt-base-core {
  fill: var(--amber);
  stroke: #1a1813;
  stroke-width: 1;
}

/* THAAD / Patriot: white triangle */
.tt-map-svg .tt-thaad-core {
  fill: #f0e9d2;
  stroke: #1a1813;
  stroke-width: 1;
}

/* Hormuz blockade indicator: large pulsing red ring */
.tt-map-svg .tt-blockade {
  fill: none;
  stroke: var(--red);
  stroke-width: 1.5;
  opacity: 0.75;
}
.tt-map-svg .tt-blockade-pulse {
  fill: none;
  stroke: var(--red);
  stroke-width: 1;
  opacity: 0.5;
  animation: ttBlockadePulse 3.2s ease-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes ttBlockadePulse {
  0%   { transform: scale(0.7); opacity: 0.7; }
  85%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* Heading arrows: dashed line + animated dash march for kinetic feel */
.tt-map-svg .tt-arrow {
  fill: none;
  stroke: var(--amber);
  stroke-width: 1.4;
  stroke-dasharray: 6 4;
  stroke-linecap: round;
  opacity: 0.8;
  animation: ttArrowMarch 1.4s linear infinite;
}
@keyframes ttArrowMarch {
  to { stroke-dashoffset: -20; }
}
.tt-map-svg .tt-arrowhead {
  fill: var(--amber);
}

/* Legend */
.tt-map-svg .tt-legend-bg {
  fill: rgba(10,10,10,0.85);
  stroke: var(--border);
  stroke-width: 0.5;
}
.tt-map-svg .tt-legend-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  fill: #c8c0a8;
  letter-spacing: 1px;
}

.tt-map-foot {
  font-size: 11px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.tt-map-foot a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px dotted var(--amber);
}


/* === Wild Card · transcript scaffold ===
   Collapsible <details> block under a video entry. The user pastes
   transcribed text into the wc-lyrics <pre> block; styling matches the
   site's monospace dispatch aesthetic. */
.wc-transcript {
  margin: 18px 0 8px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: rgba(0,0,0,0.18);
}
.wc-transcript summary {
  cursor: pointer;
  padding: 10px 14px;
  list-style: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.wc-transcript summary::-webkit-details-marker { display: none; }
.wc-transcript summary::before {
  content: "▸";
  color: var(--amber);
  display: inline-block;
  transition: transform 0.15s ease;
}
.wc-transcript[open] summary::before {
  transform: rotate(90deg);
}
.wc-transcript[open] summary {
  border-bottom: 1px solid var(--border);
}
.wc-transcript summary em {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.5px;
  color: var(--text-dim);
}
.wc-lyrics {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 12.5px;
  line-height: 1.7;
  white-space: pre-wrap;
  color: var(--text);
  padding: 14px 20px 18px;
  margin: 0;
  background: transparent;
  overflow-x: auto;
}


/* === Track the Troops · map zoom controls ===
   Sits above the SVG stage. Buttons are small and dispatch-aesthetic;
   region presets jump the SVG viewBox to a known coordinate window. */
.tt-map-controls {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 6px 0 8px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
}
.tt-map-controls button {
  background: #1a1813;
  color: #d4c8a0;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 10px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  text-transform: uppercase;
}
.tt-map-controls button:hover {
  background: var(--amber);
  color: #1a1813;
  border-color: var(--amber);
}
.tt-map-controls #ttZoomIn,
.tt-map-controls #ttZoomOut {
  font-size: 14px;
  padding: 3px 9px;
  min-width: 28px;
  line-height: 1;
}
.tt-map-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
  margin: 0 4px;
}
.tt-map-hint {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-left: auto;
  text-transform: uppercase;
}
.tt-map-stage {
  cursor: grab;
  user-select: none;
  touch-action: none;
}
.tt-map-stage.is-panning {
  cursor: grabbing;
}
@media (max-width: 600px) {
  .tt-map-hint { display: none; }
}


/* === Track the Troops · additional asset markers === */
.tt-map-svg .tt-amphib-core {
  fill: #6fa8e0;
  stroke: #f0e9d2;
  stroke-width: 0.6;
}
.tt-map-svg .tt-ddg-core {
  fill: #4a8bd6;
  stroke: #f0e9d2;
  stroke-width: 0.5;
}
.tt-map-svg .tt-lcs-core {
  fill: #62c9d6;
  stroke: #f0e9d2;
  stroke-width: 0.5;
}
.tt-map-svg .tt-ground-core {
  fill: #dc2626;
  stroke: #f0e9d2;
  stroke-width: 1;
}
.tt-map-svg .tt-target-stroke {
  stroke: #ff6464;
  stroke-width: 2;
  stroke-linecap: round;
}
.tt-map-svg .tt-target-ring {
  fill: none;
  stroke: #ff6464;
  stroke-width: 1;
  stroke-dasharray: 3 2;
  opacity: 0.7;
}


/* === Track the Troops · significance-based label visibility + hover tooltip ===
   Default view: only major assets (carriers, ARGs, bases, bombers, AD) show labels.
   Minor assets (DDG, LCS, amphib) reveal labels on hover.
   Tooltip overlay shows full status on any asset hover. */

/* Hide labels for low-significance assets by default — reveal on hover */
.tt-map-svg .tt-sig-low .tt-asset-label,
.tt-map-svg .tt-sig-low .tt-asset-sub {
  opacity: 0;
  transition: opacity 0.15s ease;
  pointer-events: none;
}
.tt-map-svg .tt-sig-low:hover .tt-asset-label,
.tt-map-svg .tt-sig-low:hover .tt-asset-sub,
.tt-map-svg .tt-sig-low.tt-hovered .tt-asset-label,
.tt-map-svg .tt-sig-low.tt-hovered .tt-asset-sub {
  opacity: 1;
}

/* Medium-significance: hide subtitle by default, show on hover */
.tt-map-svg .tt-sig-med .tt-asset-sub {
  opacity: 0;
  transition: opacity 0.15s ease;
}
.tt-map-svg .tt-sig-med:hover .tt-asset-sub,
.tt-map-svg .tt-sig-med.tt-hovered .tt-asset-sub {
  opacity: 1;
}

/* Hover boost across all assets — amber tint on label, slight scale on marker */
.tt-map-svg .tt-asset { cursor: pointer; }
.tt-map-svg .tt-asset:hover .tt-asset-label,
.tt-map-svg .tt-asset.tt-hovered .tt-asset-label {
  fill: #ffd960;
  font-weight: 700;
}
.tt-map-svg .tt-asset:hover circle.tt-csg-core,
.tt-map-svg .tt-asset:hover rect.tt-meu-core,
.tt-map-svg .tt-asset:hover polygon,
.tt-map-svg .tt-asset:hover circle.tt-base-core,
.tt-map-svg .tt-asset:hover circle.tt-lcs-core,
.tt-map-svg .tt-asset:hover rect.tt-amphib-core {
  filter: drop-shadow(0 0 6px rgba(255,217,96,0.85));
}

/* HTML tooltip overlay (positioned above SVG) */
.tt-map-stage { position: relative; }
.tt-tooltip {
  position: absolute;
  pointer-events: none;
  background: rgba(8,10,14,0.96);
  border: 1px solid var(--amber);
  padding: 8px 12px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  color: #f0e9d2;
  z-index: 100;
  max-width: 280px;
  border-radius: 2px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.6);
  letter-spacing: 0.5px;
  line-height: 1.45;
}
.tt-tooltip[hidden] { display: none; }
.tt-tt-label {
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.tt-tt-sub {
  color: #c8c0a8;
  margin-top: 3px;
  font-size: 10.5px;
}
.tt-tt-status {
  color: #888;
  margin-top: 5px;
  font-style: italic;
  font-size: 10px;
  border-top: 1px dotted #333;
  padding-top: 4px;
}


/* === Track the Troops · Word-comment-style callout leader === */
.tt-map-svg .tt-leader-line {
  stroke: #d4a017;
  stroke-width: 1.2;
  stroke-dasharray: 4 3;
  fill: none;
  opacity: 0.85;
  pointer-events: none;
}
.tt-tooltip.tt-callout-right { text-align: left; }
.tt-tooltip.tt-callout-left  { text-align: left; }  /* keep text left-aligned regardless */


/* === Track the Troops · HTML legend overlay ===
   Moved out of SVG so it stays fixed at top-left during zoom/pan AND
   sits above all asset markers regardless of render order. */
.tt-legend-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 600;
  background: rgba(255,255,255,0.93);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 12px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 10.5px;
  color: var(--text);
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  min-width: 196px;
}
.tt-legend-title {
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #e8e2d0;
  margin-bottom: 8px;
  font-size: 11px;
  text-transform: uppercase;
}
.tt-legend-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tt-legend-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 3px 0;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.tt-li-ic {
  display: inline-flex;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
}
.tt-li-ic svg {
  width: 16px;
  height: 16px;
  display: block;
}
@media (max-width: 700px) {
  .tt-legend-overlay {
    font-size: 9.5px;
    padding: 8px 10px;
  }
}


/* === DARK MODE: page-title + section-heading contrast fix ===
   The site has many hardcoded #121212 / #1a1611 colors on titles, names,
   headers, and table cells (a relic of the WSJ light theme). Force all of
   those to use --text in dark mode so they read against the dark background. */
html[data-theme="dark"] .lan-page-masthead .lpm-name,
html[data-theme="dark"] .lan-masthead .lm-name,
html[data-theme="dark"] .landing-card .lc-title,
html[data-theme="dark"] #theRunDown .rd-title,
html[data-theme="dark"] #runDownList .rd-head,
html[data-theme="dark"] #runDownList article.lead .rd-head,
html[data-theme="dark"] #runDownList article.lead .rd-factbox li b,
html[data-theme="dark"] #trackTroops .tt-title,
html[data-theme="dark"] #trackTroops td,
html[data-theme="dark"] #quantumSection .qm-title,
html[data-theme="dark"] #quantumSection .qm-panel-title,
html[data-theme="dark"] #raptureSection .rp-title,
html[data-theme="dark"] #raptureSection .rp-panel-title,
html[data-theme="dark"] #raptureSection .rp-denom-name,
html[data-theme="dark"] #aiSection .ai-panel-title,
html[data-theme="dark"] #aiSection td,
html[data-theme="dark"] #ttBeyondOil .tt-analyst-tag,
html[data-theme="dark"] .gameday-team-name,
html[data-theme="dark"] .leaderboard-title,
html[data-theme="dark"] .lb-name,
html[data-theme="dark"] .card-header,
html[data-theme="dark"] .section-tag {
  color: var(--text) !important;
}

/* Page H1-style mastheads need a touch of accent for hierarchy */
html[data-theme="dark"] .lan-page-masthead .lpm-name,
html[data-theme="dark"] .lan-masthead .lm-name {
  color: #f0e9d2 !important;  /* warm off-white, slightly brighter than --text for prominence */
}

/* Run Down kicker / dateline / source links — softer than headlines */
html[data-theme="dark"] .rd-kicker,
html[data-theme="dark"] .rd-dek,
html[data-theme="dark"] .rd-dateline,
html[data-theme="dark"] .rd-src a {
  color: var(--text-dim);
}

/* The header-title (FFN nameplate) — was using a gradient; force readable color in dark */
html[data-theme="dark"] .header-title {
  background: none !important;
  -webkit-text-fill-color: #f0e9d2 !important;
  color: #f0e9d2 !important;
}
html[data-theme="dark"] .header-subtitle {
  color: var(--text-dim) !important;
}

/* Section nav (HOME / IRAN WAR / LEBANON / TROOPS / ...) */
html[data-theme="dark"] .nav,
html[data-theme="dark"] nav {
  background: var(--surface);
  border-color: var(--border);
}
html[data-theme="dark"] .nav a,
html[data-theme="dark"] nav a {
  color: var(--text-dim);
}
html[data-theme="dark"] .nav a:hover,
html[data-theme="dark"] .nav a.active,
html[data-theme="dark"] nav a:hover,
html[data-theme="dark"] nav a.active {
  color: var(--amber);
}

/* The Run Down dateline / shorts reference */
html[data-theme="dark"] .rd-dek,
html[data-theme="dark"] #runDownList .rd-dek {
  color: var(--text-dim) !important;
}

/* Tt-dateline ("OSINT AS OF: ...") */
html[data-theme="dark"] .tt-dateline,
html[data-theme="dark"] .tt-subtitle {
  color: var(--text-dim);
}

/* Editor's note prose */
html[data-theme="dark"] .editor-note .en-text {
  color: #d8d2c0 !important;
}
html[data-theme="dark"] .editor-note .en-tag {
  color: var(--amber);
}


/* === DARK MODE: section-nav + masthead nameplate (specificity bumps) ===
   The site uses .section-nav (not .nav) for the section bar, with hardcoded
   #ffffff background and #1a1611 text color. Dark mode needs explicit
   overrides because those literals beat var-based defaults. */
html[data-theme="dark"] .section-nav {
  background: var(--surface) !important;
  border-top-color: var(--border) !important;
  border-bottom-color: var(--border) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
html[data-theme="dark"] .section-nav a {
  color: var(--text-dim) !important;
  border-right-color: var(--border) !important;
}
html[data-theme="dark"] .section-nav a:first-child {
  border-left-color: var(--border) !important;
}
html[data-theme="dark"] .section-nav a:hover,
html[data-theme="dark"] .section-nav a.active {
  color: var(--amber) !important;
  background: var(--surface-hover) !important;
}
html[data-theme="dark"] .section-nav a.active {
  color: #ff6464 !important;  /* matches the red accent of the active marker */
}
html[data-theme="dark"] .section-nav a.active::after {
  background: #ff6464;
}

/* Page mastheads — brighter gold for visibility (was #f0e9d2 but Playfair at large
   sizes washes against deep-dark backgrounds). Use --amber as the accent. */
html[data-theme="dark"] .lan-page-masthead .lpm-name,
html[data-theme="dark"] .lan-masthead .lm-name {
  color: var(--amber) !important;
  text-shadow: 0 0 18px rgba(212, 160, 23, 0.18);
}

/* FFN nameplate — nuke any inherited gradient/transparent text fill */
html[data-theme="dark"] .header-title,
html[data-theme="dark"] .header .header-title,
html[data-theme="dark"] .ffn-nameplate {
  background: none !important;
  background-image: none !important;
  background-clip: initial !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: #f0e9d2 !important;
  color: #f0e9d2 !important;
  text-shadow: 0 0 1px rgba(255, 240, 200, 0.4);
}

/* ═══════════════════════════════════════════════════════════════════════
   DARK MODE: comprehensive panel + section backgrounds
   The site's light theme hardcodes #ffffff / #fafafa / #f5f5f5 on dozens
   of panels, cards, and section containers. Dark mode text vars switch to
   cream (#ebe7d8) but these backgrounds stay white → invisible text.
   This block catches every known offender site-wide.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Major section containers ── */
html[data-theme="dark"] #theRunDown,
html[data-theme="dark"] #trackTroops,
html[data-theme="dark"] #quantumSection,
html[data-theme="dark"] #raptureSection,
html[data-theme="dark"] #aiSection .ai-panel,
html[data-theme="dark"] #iranWarBanner,
html[data-theme="dark"] #ttBeyondOil,
html[data-theme="dark"] #lebanonTrack,
html[data-theme="dark"] #ukraineTrack,
html[data-theme="dark"] .rc-doctrine,
html[data-theme="dark"] .cl-panel,
html[data-theme="dark"] .ballroom-pivot,
html[data-theme="dark"] .vault-panel,
html[data-theme="dark"] .pvh-panel,
html[data-theme="dark"] .newsletter-signup,
html[data-theme="dark"] .landing-card {
  background: var(--surface) !important;
  border-color: var(--border);
}

/* ── Sub-panels inside sections ── */
html[data-theme="dark"] #quantumSection .qm-panel,
html[data-theme="dark"] #raptureSection .rp-panel,
html[data-theme="dark"] #trackTroops .tt-notes,
html[data-theme="dark"] #iranWarBanner .iw-stat,
html[data-theme="dark"] #quantumSection .qm-stat,
html[data-theme="dark"] #quantumSection .qm-net-bar,
html[data-theme="dark"] #quantumSection .qm-qday,
html[data-theme="dark"] #aiSection .ai-capex-card {
  background: var(--bg) !important;
  border-color: var(--border) !important;
}

/* ── Table headers (all sections) ── */
html[data-theme="dark"] #trackTroops th,
html[data-theme="dark"] #quantumSection th,
html[data-theme="dark"] #raptureSection th,
html[data-theme="dark"] #aiSection th,
html[data-theme="dark"] .cl-table thead th {
  background: var(--surface) !important;
  color: var(--text-dim) !important;
  border-bottom-color: var(--border) !important;
}

/* ── Hardcoded #121212 text → readable in dark ── */
html[data-theme="dark"] #trackTroops,
html[data-theme="dark"] #quantumSection,
html[data-theme="dark"] #raptureSection,
html[data-theme="dark"] #trackTroops .tt-notes,
html[data-theme="dark"] #quantumSection .qm-title,
html[data-theme="dark"] #quantumSection .qm-panel-title,
html[data-theme="dark"] #raptureSection .rp-title,
html[data-theme="dark"] #raptureSection .rp-panel-title {
  color: var(--text) !important;
}

/* ── Temple Mount Primer (dark mode) ── */
html[data-theme="dark"] .tm-primer-tag {
  color: var(--text) !important;
  border-bottom-color: var(--border);
}
html[data-theme="dark"] .tm-text b {
  color: var(--text) !important;
}

/* ── Table row hovers ── */
html[data-theme="dark"] #trackTroops tr:hover td,
html[data-theme="dark"] #quantumSection tr:hover td,
html[data-theme="dark"] #raptureSection tr:hover td,
html[data-theme="dark"] #aiSection tr:hover td,
html[data-theme="dark"] #runDownList article.lead .rd-factbox {
  background: var(--surface-hover) !important;
}

/* ── Roy Cohn doctrine panel (politics.html) ── */
html[data-theme="dark"] .rc-doctrine-tag {
  color: var(--text) !important;
  border-bottom-color: var(--border);
}
html[data-theme="dark"] .rc-rules li b {
  color: var(--text) !important;
}
html[data-theme="dark"] .rc-aphorism,
html[data-theme="dark"] .cl-aphorism,
html[data-theme="dark"] .bp-quote,
html[data-theme="dark"] .pvh-aphorism {
  background: var(--bg) !important;
  border-left-color: var(--border-glow);
}

/* ── Claims Ledger (politics.html) ── */
html[data-theme="dark"] .cl-cell-days {
  color: var(--text) !important;
}
html[data-theme="dark"] .cl-table tbody tr.cl-featured td {
  background: rgba(212, 160, 23, 0.08) !important;
  border-bottom-color: var(--border) !important;
}
/* Status badges — dark-mode friendly backgrounds */
html[data-theme="dark"] .cl-no-receipts,
html[data-theme="dark"] .cl-disputed {
  background: rgba(212, 160, 23, 0.15) !important;
  border-color: rgba(212, 160, 23, 0.3) !important;
}
html[data-theme="dark"] .cl-denied {
  background: rgba(232, 94, 94, 0.15) !important;
  border-color: rgba(232, 94, 94, 0.3) !important;
}
html[data-theme="dark"] .cl-expired,
html[data-theme="dark"] .cl-unverified {
  background: rgba(128, 124, 112, 0.15) !important;
  border-color: var(--border) !important;
}
html[data-theme="dark"] .cl-policy,
html[data-theme="dark"] .cl-fulfilled {
  background: rgba(95, 191, 117, 0.15) !important;
  border-color: rgba(95, 191, 117, 0.3) !important;
}

/* ── Mobile card layouts (claims ledger + AI tables) ── */
@media (max-width: 700px) {
  html[data-theme="dark"] .cl-table tbody tr {
    background: var(--surface) !important;
    border-top-color: var(--border) !important;
  }
  html[data-theme="dark"] .cl-table tbody tr.cl-featured {
    background: rgba(212, 160, 23, 0.08) !important;
  }
}
@media (max-width: 600px) {
  html[data-theme="dark"] #aiSection tr {
    background: var(--surface) !important;
    border-top-color: var(--border) !important;
  }
}

/* ── Ballroom pivot panel (politics.html) ── */
html[data-theme="dark"] .bp-quote {
  background: var(--bg) !important;
  border-left-color: var(--amber) !important;
}

/* ── Truth Social feed (politics.html) ── */
html[data-theme="dark"] .truth-feed-panel {
  --ts-page: #15171c;
  --ts-card: #15171c;
  --ts-border: #2a2d33;
  --ts-text: #ebe7d8;
  --ts-muted: #807c70;
  --ts-link: #6b9fff;
}
html[data-theme="dark"] .truth-feed-header,
html[data-theme="dark"] .truth-feed-foot {
  background: var(--surface) !important;
  border-color: var(--border) !important;
}
html[data-theme="dark"] .truth-feed-title {
  color: var(--text-dim) !important;
}
html[data-theme="dark"] .truth-item:hover {
  background: var(--surface-hover) !important;
}

/* ── War rows / event timeline (politics.html) ── */
html[data-theme="dark"] .war-row.highlight-row {
  background: rgba(255, 184, 0, 0.06);
  border-color: rgba(255, 184, 0, 0.15);
}
html[data-theme="dark"] .war-row .war-name,
html[data-theme="dark"] .war-row .war-duration,
html[data-theme="dark"] .war-row .war-context {
  color: var(--text-dim);
}

/* ── Bingo cards (if on politics page) ── */
html[data-theme="dark"] .bingo-cell {
  background: var(--surface) !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
}

/* ── Generic: any remaining #fafafa / #f5f5f5 hover/focus states ── */
html[data-theme="dark"] .er-event {
  background: var(--surface) !important;
  border-color: var(--border) !important;
}
html[data-theme="dark"] .er-event:hover {
  background: var(--surface-hover) !important;
}

/* ═══════════════════════════════════════════════════════════════════════
   NEWSLETTER SIGNUP — Buttondown integration
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Primary form (below From the Editor) ── */
.newsletter-signup {
  margin: 0 0 20px 0;
  padding: 20px 24px;
  background: #faf9f7;
  border: 1px solid #d4d4d4;
  border-top: 3px solid #a42020;
  border-radius: 2px;
  text-align: center;
}
.newsletter-signup .ns-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #a42020;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: 'JetBrains Mono', monospace;
}
.newsletter-signup .ns-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #6b6b6b;
  font-family: Georgia, 'Playfair Display', serif;
  font-style: italic;
  margin-bottom: 14px;
}
.newsletter-signup .ns-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-signup .ns-form input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: #121212;
  background: #ffffff;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-signup .ns-form input[type="email"]::placeholder {
  color: #6b6b6b;
  opacity: 0.7;
}
.newsletter-signup .ns-form input[type="email"]:focus {
  border-color: #a42020;
}
.newsletter-signup .ns-form button {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  color: #fff;
  background: #a42020;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.newsletter-signup .ns-form button:hover {
  opacity: 0.85;
}
.newsletter-signup .ns-fine {
  margin-top: 10px;
  font-size: 11px;
  color: #6b6b6b;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px;
}
.newsletter-signup .ns-fine a {
  color: #6b6b6b;
  text-decoration: none;
  border-bottom: 1px dotted #d4d4d4;
}
.newsletter-signup .ns-fine a:hover {
  color: #a42020;
  border-bottom-color: #a42020;
}

/* ── Footer form (compact) ── */
.newsletter-footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #d4d4d4;
  text-align: center;
}
.newsletter-footer .nf-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #6b6b6b;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 8px;
}
.newsletter-footer .nf-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  max-width: 380px;
  margin: 0 auto;
}
.newsletter-footer .nf-form input[type="email"] {
  flex: 1;
  padding: 8px 12px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  color: #121212;
  background: #ffffff;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-footer .nf-form input[type="email"]::placeholder {
  color: #6b6b6b;
  opacity: 0.7;
}
.newsletter-footer .nf-form input[type="email"]:focus {
  border-color: #a42020;
}
.newsletter-footer .nf-form button {
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  color: #fff;
  background: #a42020;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.newsletter-footer .nf-form button:hover {
  opacity: 0.85;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .newsletter-signup { padding: 16px; }
  .newsletter-signup .ns-form { flex-direction: column; }
  .newsletter-signup .ns-form input[type="email"],
  .newsletter-signup .ns-form button { width: 100%; }
  .newsletter-footer .nf-form { flex-direction: column; }
  .newsletter-footer .nf-form input[type="email"],
  .newsletter-footer .nf-form button { width: 100%; }
}

/* ── Dark-mode overrides ── */
html[data-theme="dark"] .newsletter-signup {
  background: var(--surface);
  border-color: var(--border);
  border-top-color: var(--red);
}
html[data-theme="dark"] .newsletter-signup .ns-tag {
  color: var(--red);
}
html[data-theme="dark"] .newsletter-signup .ns-tagline {
  color: var(--text-muted);
}
html[data-theme="dark"] .newsletter-signup .ns-form input[type="email"] {
  background: var(--bg);
  border-color: var(--border);
  color: var(--text);
}
html[data-theme="dark"] .newsletter-signup .ns-form input[type="email"]::placeholder {
  color: var(--text-muted);
}
html[data-theme="dark"] .newsletter-signup .ns-form button {
  background: var(--red);
}
html[data-theme="dark"] .newsletter-signup .ns-fine {
  color: var(--text-muted);
}
html[data-theme="dark"] .newsletter-signup .ns-fine a {
  color: var(--text-muted);
  border-bottom-color: var(--border);
}
html[data-theme="dark"] .newsletter-footer {
  border-top-color: var(--border);
}
html[data-theme="dark"] .newsletter-footer .nf-label {
  color: var(--text-muted);
}
html[data-theme="dark"] .newsletter-footer .nf-form input[type="email"] {
  background: var(--bg);
  border-color: var(--border);
  color: var(--text);
}
html[data-theme="dark"] .newsletter-footer .nf-form input[type="email"]::placeholder {
  color: var(--text-muted);
}
html[data-theme="dark"] .newsletter-footer .nf-form button {
  background: var(--red);
}



/* === track-the-troops Leaflet map (Google-Earth-style basemap) === */
.tt-leaflet-map { height: 540px; width: 100%; border-radius: 10px; z-index: 1; }
@media (max-width: 700px){ .tt-leaflet-map { height: 380px; } }
.tt-map-stage .tt-legend-title { color: var(--text); }
.tt-map-stage .tt-legend-list li { color: var(--text-muted); }
.tt-lf-fail { padding: 48px 16px; text-align:center; color: var(--text-muted); font-size: 13px; }
.tt-lf-pop b { font-family: Georgia,'Playfair Display',serif; font-size: 14px; color: var(--text); }
.tt-lf-sub { font-size: 11px; color: var(--text-muted); font-family:'JetBrains Mono',monospace; margin-top:2px; }
.tt-lf-status { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--red); margin-top:4px; }
.leaflet-tooltip.tt-lf-label { background: rgba(255,255,255,0.92); border:1px solid var(--border);
  box-shadow:0 1px 2px rgba(0,0,0,0.12); border-radius:4px; color: var(--text);
  font:700 10px 'JetBrains Mono',monospace; padding:2px 6px; }
.leaflet-tooltip.tt-lf-label.tgt { color: var(--red); border-color: rgba(164,32,32,0.35); }
.leaflet-tooltip.tt-lf-label::before { display:none; }


/* ============================================================================
   TYPE SCALE — Four Fingers News (added in the readability pass)
   Newsroom convention: a clear ratio between display, headings, and body so
   nothing reads as a tiny wall. Body copy floor is 13px; labels/eyebrows/meta
   may stay smaller (they're scannable chrome, not reading text).

     Nameplate / hero ....... 30–42px  (serif display)
     Section title .......... 18–24px  (.qm-panel-title, .rp-panel-title, h2)
     Card / panel head ...... 15–16px
     Body copy (READ) ....... 13–14px  ← minimum for sentences
     Bullets / feed prose ... 13px
     Labels / eyebrows ...... 9–11px   (uppercase mono, letter-spaced)
     Meta / timestamps ...... 9–11px

   Why: at 13px body / ~18px head the ratio is ~1.4 — comfortable and standard.
   Sub-13px reading prose was the "too small" problem; this floors it.
   ============================================================================ */
.qm-wire-desc, .qm-net-desc, .rp-cat-why, .rp-news-desc,
.rp-panel-sub, .qm-wire-item, .lt-bullets li {
  font-size: 13px;
  line-height: 1.55;
}
.qm-wire-title, .rp-news-title, .rp-cat-name { font-size: 13.5px; }
