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

:root {
  --bg: #020408;
  --bg-card: #060d14;
  --bg-panel: #08111a;
  --border: #0d2035;
  --border-cyan: rgba(0,212,255,0.25);
  --text: #c8e8f8;
  --text-muted: #5a8aaa;
  --text-dim: #2a4a60;
  --green: #00e5a0;
  --red: #ff3b3b;
  --yellow: #f0c030;
  --orange: #ff7a20;
  --cyan: #00d4ff;
  --cyan-glow: rgba(0,212,255,0.15);
  --cyan-strong: rgba(0,212,255,0.3);
  --radius: 10px;
  --radius-sm: 6px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: #05090f;
  color: var(--text);
  line-height: 1.6;
  font-size: 14px;
}

body.home-page {
  background: #000;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 34px; height: 34px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 9px;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
}
.logo-mark-diamond {
  width: 13px; height: 13px;
  background: #fff;
  border-radius: 3px;
  transform: rotate(45deg);
}
.logo-name {
  font-size: 14px; font-weight: 800;
  color: #fff; letter-spacing: 0.03em;
  font-family: var(--font-body);
}
.logo-name-dim { color: rgba(255,255,255,0.35); font-weight: 600; }
.logo-sub { font-size: 9px; color: rgba(255,255,255,0.25); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 2px; }
.nav {
  display: flex; gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 4px;
}
.nav-link {
  color: rgba(255,255,255,0.45); text-decoration: none; font-size: 11px; font-weight: 700;
  padding: 6px 14px; border-radius: 999px; transition: all 0.2s;
  letter-spacing: 0.07em; text-transform: uppercase;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-link.active { color: #fff; background: rgba(255,255,255,0.12); }

/* ── HERO ── */
.hero {
  padding: 64px 0 48px; border-bottom: 1px solid var(--border-cyan);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -150px; left: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,255,0.07); border: 1px solid var(--border-cyan);
  color: var(--cyan); font-size: 10px; font-weight: 700;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 20px;
  letter-spacing: 0.12em; text-transform: uppercase;
  animation: fadeIn 0.5s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(36px, 5.5vw, 68px); font-weight: 800; line-height: 1.05;
  letter-spacing: -0.01em; margin-bottom: 18px;
  background: linear-gradient(135deg, #00f5d4 0%, #00b4ff 50%, #ffffff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 40px rgba(0,212,255,0.3));
  animation: fadeInUp 0.65s 0.1s ease both;
}
.hero-subtitle {
  font-size: 14px; color: var(--text-muted); max-width: 640px; line-height: 1.9; margin-bottom: 40px;
  animation: fadeInUp 0.65s 0.2s ease both;
}

/* ── DASHBOARD STATS ── */
.dashboard-stats {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  animation: fadeInUp 0.65s 0.3s ease both;
}
.gauge-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  position: relative;
}
.gauge-panel::before {
  content: 'DELIVERY RATE';
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--text-dim); text-transform: uppercase;
}
.gauge-svg { width: 140px; height: 140px; margin-top: 16px; }
.gauge-value {
  font-size: 28px; font-weight: 800; font-family: var(--font-mono);
  color: var(--cyan); text-shadow: 0 0 20px var(--cyan); margin-top: 8px;
  animation: glowPulse 3s ease-in-out infinite;
}
.gauge-label { font-size: 10px; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stat-box {
  background: var(--bg-panel);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius);
  padding: 20px 18px;
  position: relative;
  overflow: hidden;
}
.stat-box::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--stat-color, var(--cyan));
  box-shadow: 0 0 8px var(--stat-color, var(--cyan));
}
.stat-box-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 10px;
}
.stat-box-number {
  font-size: 44px; font-weight: 800; font-family: var(--font-mono);
  line-height: 1; color: var(--stat-color, var(--cyan));
  text-shadow: 0 0 24px var(--stat-color, var(--cyan));
  letter-spacing: -0.04em;
}
.stat-box-bar {
  margin-top: 12px; height: 3px; background: var(--border);
  border-radius: 99px; overflow: hidden;
}
.stat-box-fill {
  height: 100%; border-radius: 99px;
  background: var(--stat-color, var(--cyan));
  box-shadow: 0 0 6px var(--stat-color, var(--cyan));
  transition: width 1s ease;
}
.stat-box--link {
  text-decoration: none; cursor: pointer;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}
.stat-box--link:hover {
  border-color: var(--stat-color, var(--cyan));
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3), 0 0 16px var(--stat-color, var(--cyan-glow));
}
.stat-box-hint {
  margin-top: 10px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--stat-color, var(--cyan)); opacity: 0;
  transition: opacity 0.2s;
}
.stat-box--link:hover .stat-box-hint { opacity: 1; }

/* ── SECTIONS ── */
.section { padding: 64px 0; background: #05090f; }
.section-dark { background: #040810; border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); padding: 64px 0; }
.section-header { margin-bottom: 32px; }
.section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 6px;
  color: #fff;
}
.section-sub { color: var(--text-muted); font-size: 13px; }

/* ── PROTOCOL PANEL (matches image) ── */
.protocol-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  align-items: start;
}
.protocol-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius);
  overflow: hidden;
}
.protocol-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-cyan);
  background: rgba(0,212,255,0.04);
}
.protocol-panel-title {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cyan);
}
.protocol-panel-badge {
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-dim);
  background: var(--border); padding: 3px 8px; border-radius: 4px;
}
.protocol-items { padding: 8px 0; }
.protocol-item {
  display: grid;
  grid-template-columns: 36px 1fr 80px;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.protocol-item:last-child { border-bottom: none; }
.protocol-item:hover { background: rgba(0,212,255,0.03); }
.protocol-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,229,160,0.12); border: 1px solid rgba(0,229,160,0.3);
  color: var(--green); font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  text-shadow: 0 0 8px var(--green); flex-shrink: 0;
}
.protocol-content { min-width: 0; }
.protocol-label { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 2px; line-height: 1.3; }
.protocol-detail { font-size: 11px; color: var(--text-muted); line-height: 1.5; }
.mini-chart { display: flex; align-items: flex-end; gap: 3px; height: 36px; }
.mini-bar {
  flex: 1; border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, var(--cyan), rgba(0,212,255,0.3));
  box-shadow: 0 0 4px rgba(0,212,255,0.3);
}

/* Verdict box */
.verdict-box {
  background: var(--bg-panel);
  border: 1px solid rgba(0,229,160,0.3);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.verdict-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.verdict-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.verdict-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,229,160,0.15); border: 1px solid rgba(0,229,160,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 16px; font-weight: 800;
  text-shadow: 0 0 10px var(--green);
}
.verdict-title { font-size: 14px; font-weight: 800; color: var(--green); letter-spacing: 0.04em; }
.verdict-text { font-size: 12px; color: var(--text-muted); line-height: 1.7; }
.verdict-stat {
  display: flex; align-items: center; gap: 8px; margin-top: 12px;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.verdict-stat-num {
  font-size: 24px; font-weight: 800; font-family: 'JetBrains Mono', monospace;
  color: var(--red); text-shadow: 0 0 12px var(--red);
}
.verdict-stat-label { font-size: 11px; color: var(--text-muted); line-height: 1.4; }

/* Price comparison bar */
.price-comparison {
  margin-top: 20px;
  background: rgba(255,59,59,0.05);
  border: 1px solid rgba(255,59,59,0.2);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-comparison-header {
  padding: 10px 16px;
  background: rgba(255,59,59,0.08);
  border-bottom: 1px solid rgba(255,59,59,0.15);
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red);
}
.price-row {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 16px; padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.price-row:last-child { border-bottom: none; }
.price-col { display: flex; flex-direction: column; gap: 3px; }
.price-col-label { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
.price-col-value { font-size: 18px; font-weight: 800; font-family: 'JetBrains Mono', monospace; color: var(--red); text-shadow: 0 0 12px var(--red); }
.price-col-value.green { color: var(--green); text-shadow: 0 0 12px var(--green); }
.price-arrow { font-size: 20px; color: var(--red); }
.price-delta {
  font-size: 10px; font-weight: 700; color: var(--red);
  background: rgba(255,59,59,0.1); border: 1px solid rgba(255,59,59,0.2);
  padding: 2px 8px; border-radius: 4px; white-space: nowrap; align-self: flex-start;
}

/* ── FILTERS ── */
.filter-bar {
  display: flex; gap: 4px; margin-bottom: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 7px 18px; border-radius: 999px; border: none;
  background: transparent; color: rgba(255,255,255,0.4);
  font-size: 11px; font-weight: 700; cursor: pointer;
  transition: all 0.2s; font-family: var(--font-body);
  letter-spacing: 0.07em; text-transform: uppercase;
}
.filter-btn:hover { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.06); }
.filter-btn.active { background: rgba(255,255,255,0.12); color: #fff; }

/* ── PROMISE TABLE ── */
.promise-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}
.promise-table-header {
  display: grid;
  grid-template-columns: 48px 1fr 140px 120px 100px;
  padding: 0 20px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 4px;
}
.promise-table-header span {
  font-size: 9px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.2);
}
.promise-row {
  display: grid;
  grid-template-columns: 48px 1fr 140px 120px 100px;
  gap: 0;
  padding: 16px 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.promise-row--broken     { border-left-color: var(--red); }
.promise-row--kept       { border-left-color: var(--green); }
.promise-row--pending    { border-left-color: var(--yellow); }
.promise-row--misleading { border-left-color: var(--orange); }
.promise-row:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.promise-row.expanded { border-radius: 12px 12px 0 0; border-bottom-color: transparent; }

.pr-num {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; font-family: var(--font-mono);
  flex-shrink: 0;
}
.pr-num.broken    { background: rgba(255,59,59,0.12); border: 1px solid rgba(255,59,59,0.25); color: var(--red); }
.pr-num.kept      { background: rgba(0,229,160,0.12); border: 1px solid rgba(0,229,160,0.25); color: var(--green); }
.pr-num.pending   { background: rgba(240,192,48,0.12); border: 1px solid rgba(240,192,48,0.25); color: var(--yellow); }
.pr-num.misleading{ background: rgba(255,122,32,0.12); border: 1px solid rgba(255,122,32,0.25); color: var(--orange); }

.pr-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 1.45; padding-right: 16px; }
.pr-cat {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06); padding: 3px 9px; border-radius: 999px;
  align-self: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  border: 1px solid rgba(255,255,255,0.08);
}
.pr-date { font-size: 11px; color: rgba(255,255,255,0.3); font-family: var(--font-mono); }
.pr-status {
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 999px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 4px;
}
.pr-status.broken    { background: rgba(255,59,59,0.1);  color: var(--red);    border: 1px solid rgba(255,59,59,0.2); }
.pr-status.kept      { background: rgba(0,229,160,0.1);  color: var(--green);  border: 1px solid rgba(0,229,160,0.2); }
.pr-status.pending   { background: rgba(240,192,48,0.1); color: var(--yellow); border: 1px solid rgba(240,192,48,0.2); }
.pr-status.misleading{ background: rgba(255,122,32,0.1); color: var(--orange); border: 1px solid rgba(255,122,32,0.2); }

/* Expanded detail */
.promise-detail {
  display: none;
  padding: 16px 20px 20px 68px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: none;
  border-radius: 0 0 12px 12px;
  margin-top: -6px;
  margin-bottom: 0;
}
.promise-detail.open { display: block; }
.promise-detail-text {
  font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.75;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 2px solid rgba(0,212,255,0.35);
  border-radius: 8px;
  margin-bottom: 12px;
}
.promise-detail-quotes { display: flex; flex-direction: column; gap: 8px; }
.quote-item {
  padding: 12px 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
}
.quote-date-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; margin-bottom: 6px; flex-wrap: wrap;
}
.quote-date {
  font-size: 10px; font-weight: 700; font-family: var(--font-mono);
  color: var(--cyan); text-transform: uppercase; letter-spacing: 0.08em;
}
.quote-src-link {
  font-size: 10px; font-weight: 700; color: var(--cyan); text-decoration: none;
  padding: 2px 10px; border: 1px solid rgba(0,212,255,0.2); border-radius: 999px;
  transition: background 0.2s;
}
.quote-src-link:hover { background: rgba(0,212,255,0.1); }
.quote-text { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.7; font-style: italic; white-space: pre-wrap; }
.promise-detail-toggle {
  font-size: 11px; color: rgba(255,255,255,0.25); cursor: pointer;
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
  font-weight: 700; letter-spacing: 0.04em;
}
.promise-detail-toggle:hover { color: var(--cyan); }

/* ── TIMELINE ── */
.timeline { display: flex; flex-direction: column; gap: 8px; }
.tl-card {
  background: var(--tl-bg, rgba(255,255,255,0.02));
  border: 1px solid var(--tl-border, rgba(255,255,255,0.07));
  border-radius: 14px; padding: 18px 22px;
  transition: filter 0.2s;
}
.tl-card:hover { filter: brightness(1.1); }
.tl-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 10px; flex-wrap: wrap;
}
.tl-status { display: flex; align-items: center; gap: 8px; }
.tl-icon { font-size: 15px; }
.tl-label {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--tl-color, rgba(255,255,255,0.4));
}
.tl-date {
  font-size: 11px; color: rgba(255,255,255,0.25);
  font-family: var(--font-mono); white-space: nowrap;
}
.tl-text {
  font-size: 13px; color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* ── QUOTES (Evidence page) ── */
.quotes-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ev-card {
  background: var(--ev-bg, rgba(255,255,255,0.02));
  border: 1px solid var(--ev-border, rgba(255,255,255,0.07));
  border-radius: 16px;
  padding: 22px 26px;
  transition: background 0.2s;
}
.ev-card:hover { filter: brightness(1.08); }
.ev-status {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.ev-status-icon { font-size: 16px; flex-shrink: 0; }
.ev-status-label {
  font-size: 12px; font-weight: 800;
  color: var(--ev-color, #fff);
  text-transform: uppercase; letter-spacing: 0.08em;
  flex: 1;
}
.ev-date {
  font-size: 11px; color: rgba(255,255,255,0.25);
  font-family: var(--font-mono); white-space: nowrap;
}
.ev-quote {
  font-size: 15px; color: rgba(255,255,255,0.75);
  line-height: 1.8; white-space: pre-wrap;
  margin-bottom: 16px;
}
.ev-source-btn {
  display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 700;
  color: #1d9bf0; text-decoration: none;
  padding: 7px 16px;
  background: rgba(29,155,240,0.08);
  border: 1px solid rgba(29,155,240,0.2);
  border-radius: 999px;
  transition: background 0.2s;
}
.ev-source-btn:hover { background: rgba(29,155,240,0.18); }



/* Tweet card (quotes with X source link) */
.quote-tweet {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--qt-color, rgba(255,255,255,0.1));
  border-radius: 16px;
  padding: 24px 28px;
  transition: background 0.2s, border-color 0.2s;
}
.quote-tweet:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.15);
  border-left-color: var(--qt-color, rgba(255,255,255,0.2));
}
.tweet-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.tweet-account { display: flex; align-items: center; gap: 12px; }
.tweet-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: #1d9bf0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #fff;
}
.tweet-name {
  font-size: 14px; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 4px;
}
.tweet-check { color: #1d9bf0; font-size: 13px; }
.tweet-handle { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 1px; }
.tweet-x-logo {
  font-size: 20px; color: rgba(255,255,255,0.4);
  font-style: normal; font-family: serif;
}
.tweet-body {
  font-size: 15px; color: rgba(255,255,255,0.75);
  line-height: 1.75; white-space: pre-wrap;
  margin-bottom: 18px;
}
.tweet-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  gap: 12px; flex-wrap: wrap;
}
.tweet-meta { display: flex; align-items: center; gap: 12px; }
.tweet-date {
  font-size: 11px; color: rgba(255,255,255,0.25);
  font-family: var(--font-mono); letter-spacing: 0.04em;
}
.tweet-tag-pill {
  font-size: 9px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 999px;
  border: 1px solid; background: transparent;
  opacity: 0.8;
}
.tweet-view-btn {
  font-size: 12px; font-weight: 700; color: #1d9bf0;
  text-decoration: none; padding: 7px 16px;
  background: rgba(29,155,240,0.08);
  border: 1px solid rgba(29,155,240,0.2);
  border-radius: 999px; white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.tweet-view-btn:hover { background: rgba(29,155,240,0.18); }

/* Plain quote card (no source link) */
.quote-plain {
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--qt-color, rgba(255,255,255,0.08));
  border-radius: 14px;
  padding: 20px 24px;
}
.quote-plain-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.quote-plain-date {
  font-size: 10px; font-weight: 700; font-family: var(--font-mono);
  color: rgba(255,255,255,0.2); text-transform: uppercase; letter-spacing: 0.08em;
}
.quote-plain-tag {
  font-size: 9px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; opacity: 0.8;
}
.quote-plain-text {
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.8; font-style: italic; white-space: pre-wrap;
}

/* Keep old tag classes for backwards compat */
.tag-promise { color: var(--cyan); }
.tag-broken { color: var(--red); }
.tag-misleading { color: var(--orange); }
.tag-community { color: var(--yellow); }
.tag-warning { color: rgba(255,255,255,0.25); }
.tag-response { color: rgba(255,255,255,0.2); }
.tag-claim { color: var(--green); }
.tag-promo { color: var(--orange); }
.tag-fine-print { color: var(--red); }
.tag-investigation { color: var(--red); }

/* ── INVESTIGATION ── */
.investigation-source-link {
  display: inline-block; margin-top: 12px; color: var(--cyan);
  font-size: 13px; font-weight: 700; text-decoration: none;
}
.investigation-source-link:hover { text-shadow: 0 0 10px var(--cyan); }
.investigation-layout { display: flex; flex-direction: column; gap: 24px; }

/* Verdict strip */
.inv-verdict-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(255,40,40,0.04);
  border: 1px solid rgba(255,40,40,0.18);
  border-radius: 20px;
  overflow: hidden;
}
.inv-verdict-left {
  padding: 40px;
  border-right: 1px solid rgba(255,40,40,0.12);
}
.inv-verdict-badge {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 12px;
}
.inv-verdict-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px; font-weight: 800; color: #fff;
  margin-bottom: 16px; line-height: 1.1;
}
.inv-verdict-text {
  font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75;
  margin-bottom: 24px;
}
.inv-verdict-stat {
  display: flex; align-items: baseline; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,40,40,0.15);
}
.inv-verdict-num {
  font-family: var(--font-mono);
  font-size: 44px; font-weight: 800;
  color: var(--red); text-shadow: 0 0 32px rgba(255,59,59,0.4);
  line-height: 1;
}
.inv-verdict-lab {
  font-size: 12px; color: rgba(255,255,255,0.3);
  font-weight: 600; line-height: 1.4;
}

/* Price table */
.inv-verdict-right { padding: 40px; }
.inv-price-header {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}
.inv-price-row {
  display: grid; grid-template-columns: 1fr 24px 1fr;
  align-items: center; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.inv-price-row:last-child { border-bottom: none; }
.inv-price-col { display: flex; flex-direction: column; gap: 6px; }
.inv-price-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
}
.inv-price-val {
  font-family: var(--font-mono);
  font-size: 16px; font-weight: 800; color: #fff;
  line-height: 1;
}
.inv-price-val--strike {
  color: var(--red);
  text-decoration: line-through;
  text-decoration-color: rgba(255,59,59,0.5);
}
.inv-price-arrow {
  font-size: 16px; color: rgba(255,255,255,0.2);
  text-align: center;
}

/* Findings list */
.inv-findings-header {
  padding: 16px 24px;
  background: rgba(255,40,40,0.05);
  border: 1px solid rgba(255,40,40,0.15);
  border-radius: 14px 14px 0 0;
  border-bottom: none;
}
.inv-findings-title {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red);
}
.inv-findings-list {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,40,40,0.12);
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}
.inv-finding-card {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.inv-finding-card:last-child { border-bottom: none; }
.inv-finding-card:hover { background: rgba(255,40,40,0.03); }
.inv-finding-main {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px;
}
.inv-finding-num {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,59,59,0.12); border: 1px solid rgba(255,59,59,0.25);
  color: var(--red); font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
}
.inv-finding-body { flex: 1; min-width: 0; }
.inv-finding-label {
  font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.85);
  margin-bottom: 6px; line-height: 1.3;
}
.inv-finding-detail {
  font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7;
}
.inv-finding-img-wrap {
  margin: 0 24px 20px calc(30px + 16px + 24px);
}
.inv-finding-img {
  width: 100%; max-width: 640px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  display: block;
}
.inv-finding-img-caption {
  font-size: 11px; color: rgba(255,255,255,0.25);
  margin-top: 8px; line-height: 1.5; font-style: italic;
}

@media (max-width: 900px) {
  .inv-verdict-strip { grid-template-columns: 1fr; }
  .inv-verdict-left { border-right: none; border-bottom: 1px solid rgba(255,40,40,0.12); }
  .inv-finding-img-wrap { margin-left: 24px; }
}
.investigation-grid {
  background: rgba(255,40,40,0.03);
  border: 1px solid rgba(255,59,59,0.18);
  border-radius: 16px; overflow: hidden;
}
.investigation-grid-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px; border-bottom: 1px solid rgba(255,59,59,0.15);
  background: rgba(255,59,59,0.05);
}
.investigation-grid-title { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.investigation-card {
  display: grid; grid-template-columns: 36px 1fr 80px;
  gap: 12px; align-items: center;
  padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.investigation-card:last-child { border-bottom: none; }
.investigation-card:hover { background: rgba(255,59,59,0.04); }
.investigation-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,59,59,0.12); border: 1px solid rgba(255,59,59,0.3);
  color: var(--red); font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; flex-shrink: 0;
}
.investigation-icon { display: none; }
.investigation-label { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.investigation-detail { font-size: 11px; color: var(--text-muted); line-height: 1.5; }
.investigation-visual { display: flex; align-items: flex-end; gap: 3px; height: 36px; }
.inv-bar {
  flex: 1; border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, var(--red), rgba(255,59,59,0.2));
  box-shadow: 0 0 4px rgba(255,59,59,0.2);
}

/* Sources */
.sources-grid { display: flex; flex-direction: column; gap: 8px; }
.src-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 20px 24px;
  transition: background 0.2s;
}
.src-card:hover { background: rgba(255,255,255,0.04); }
.src-num {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.35); font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
}
.src-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.src-body { flex: 1; }
.src-name { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.src-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 10px; }
.src-link {
  font-size: 12px; font-weight: 700; color: var(--cyan);
  text-decoration: none; padding: 6px 14px;
  background: rgba(0,212,255,0.07); border: 1px solid rgba(0,212,255,0.2);
  border-radius: 999px; display: inline-block;
  transition: background 0.2s;
}
.src-link:hover { background: rgba(0,212,255,0.15); }

/* About */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.about-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px; font-weight: 800;
  color: #fff; margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.about-content p {
  color: rgba(255,255,255,0.5); line-height: 1.9;
  margin-bottom: 18px; font-size: 14px;
}
.about-content strong { color: rgba(255,255,255,0.8); }
.about-disclaimer {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(240,192,48,0.05);
  border: 1px solid rgba(240,192,48,0.15);
  border-radius: 14px; padding: 20px 22px; margin-top: 32px;
}
.about-disclaimer-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.about-disclaimer-title {
  font-size: 13px; font-weight: 800; color: var(--yellow);
  margin-bottom: 6px; letter-spacing: 0.02em;
}
.about-disclaimer-text {
  font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65;
}

/* About sidebar */
.about-stat-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 24px;
  margin-bottom: 16px;
}
.about-stat-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.about-stat-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.about-tag {
  font-size: 11px; font-weight: 700;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.55);
  padding: 5px 12px; border-radius: 999px;
  letter-spacing: 0.03em;
}
.about-numbers {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; overflow: hidden;
}
.about-number-item {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.about-number-item:last-child { border-bottom: none; }
.about-number {
  font-family: var(--font-mono);
  font-size: 28px; font-weight: 800;
  color: #fff; line-height: 1; margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.about-number-label {
  font-size: 11px; color: rgba(255,255,255,0.3);
  font-weight: 600; letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; }
}

/* ── Page summary strip (reusable) ── */
.summary-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
}
.summary-strip--cyan {
  background: rgba(0,212,255,0.04);
  border: 1px solid rgba(0,212,255,0.18);
}
.summary-strip--cyan .summary-left { border-right: 1px solid rgba(0,212,255,0.12); }
.summary-strip--cyan .summary-badge { color: var(--cyan); }
.summary-strip--cyan .summary-num { color: var(--cyan); text-shadow: 0 0 32px rgba(0,212,255,0.4); }
.summary-strip--cyan .summary-stat { border-top-color: rgba(0,212,255,0.15); }

.summary-strip--orange {
  background: rgba(255,122,32,0.04);
  border: 1px solid rgba(255,122,32,0.18);
}
.summary-strip--orange .summary-left { border-right: 1px solid rgba(255,122,32,0.12); }
.summary-strip--orange .summary-badge { color: var(--orange); }
.summary-strip--orange .summary-num { color: var(--orange); text-shadow: 0 0 32px rgba(255,122,32,0.4); }
.summary-strip--orange .summary-stat { border-top-color: rgba(255,122,32,0.15); }

.summary-strip--neutral {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
}
.summary-strip--neutral .summary-left { border-right: 1px solid rgba(255,255,255,0.06); }
.summary-strip--neutral .summary-badge { color: rgba(255,255,255,0.4); }
.summary-strip--neutral .summary-num { color: rgba(255,255,255,0.9); }
.summary-strip--neutral .summary-stat { border-top-color: rgba(255,255,255,0.07); }

.summary-left  { padding: 40px; }
.summary-right { padding: 40px; }
.summary-badge {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 12px;
}
.summary-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px; font-weight: 800; color: #fff;
  margin-bottom: 16px; line-height: 1.1;
}
.summary-text {
  font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.75;
  margin-bottom: 24px;
}
.summary-stat {
  display: flex; align-items: baseline; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.summary-num {
  font-family: var(--font-mono);
  font-size: 44px; font-weight: 800; line-height: 1;
}
.summary-lab {
  font-size: 12px; color: rgba(255,255,255,0.3);
  font-weight: 600; line-height: 1.4;
}
.summary-table-header {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 12px;
}
.summary-row:last-child { border-bottom: none; }
.summary-row-label {
  font-size: 13px; color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 8px;
}
.summary-row-val {
  font-family: var(--font-mono);
  font-size: 15px; font-weight: 700;
}
.summary-row-val--red    { color: var(--red); }
.summary-row-val--green  { color: var(--green); }
.summary-row-val--yellow { color: var(--yellow); }
.summary-row-val--orange { color: var(--orange); }
.summary-row-val--cyan   { color: var(--cyan); }
.summary-row-val--white  { color: rgba(255,255,255,0.7); }

/* ── HOME UPDATES GRID ── */
.home-updates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.home-update-panel {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
}
.home-update-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.home-update-badge {
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
}
.home-update-badge--green {
  background: rgba(0,229,160,0.12);
  border: 1px solid rgba(0,229,160,0.3);
  color: var(--green);
}
.home-update-badge--yellow {
  background: rgba(240,192,48,0.12);
  border: 1px solid rgba(240,192,48,0.3);
  color: var(--yellow);
}
.home-update-all {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.3);
  text-decoration: none; letter-spacing: 0.04em;
  transition: color 0.2s;
}
.home-update-all:hover { color: rgba(255,255,255,0.7); }
.home-update-list { display: flex; flex-direction: column; }
.home-update-item {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-decoration: none;
  transition: background 0.2s;
}
.home-update-item:last-child { border-bottom: none; }
.home-update-item:hover { background: rgba(255,255,255,0.04); }
.home-update-item-title {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7);
  line-height: 1.5; flex: 1;
}
.home-update-item-meta {
  font-size: 10px; font-weight: 700; flex-shrink: 0;
  padding: 3px 8px; border-radius: 999px; margin-top: 2px;
}
.home-update-item-meta--green { background: rgba(0,229,160,0.12); color: var(--green); }
.home-update-item-meta--yellow { background: rgba(240,192,48,0.12); color: var(--yellow); }
.home-update-item-meta--red { background: rgba(255,59,59,0.12); color: var(--red); }
.home-update-item-meta--orange { background: rgba(255,122,32,0.12); color: var(--orange); }

@media (max-width: 700px) {
  .home-updates-grid { grid-template-columns: 1fr; }
}

/* NEW badge */
.badge-new {
  display: inline-block;
  font-size: 9px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0,229,160,0.15);
  border: 1px solid rgba(0,229,160,0.4);
  color: var(--green);
  padding: 2px 7px; border-radius: 999px;
  vertical-align: middle; margin-left: 8px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .summary-strip { grid-template-columns: 1fr; }
  .summary-left { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.06); }
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
  background: #000;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer-top { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 16px; }
.footer-social { display: flex; align-items: center; gap: 10px; }
.footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social-link:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  transform: translateY(-2px);
}
.footer-social-link svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 800;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}
.footer-logo-mark {
  width: 26px; height: 26px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 7px;
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-diamond {
  width: 9px; height: 9px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  transform: rotate(45deg);
}
.footer-logo-dim { color: rgba(255,255,255,0.2); font-weight: 600; }
.footer-note { color: rgba(255,255,255,0.2); font-size: 11px; }

/* ── BELOW HERO ── */
.below-hero {
  background: #05090f;
  padding: 72px 0 88px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* Metrics strip */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.018);
  margin-bottom: 28px;
}
.metric-cell {
  padding: 40px 32px 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.metric-cell:last-child { border-right: none; }
.metric-cell::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--mc, var(--cyan));
  box-shadow: 0 0 20px var(--mc, var(--cyan));
}
.metric-cell:hover { background: rgba(255,255,255,0.03); }
.metric-value {
  font-family: var(--font-mono);
  font-size: 56px; font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.05em;
}
.metric-value--red   { color: var(--red);   text-shadow: 0 0 32px rgba(255,59,59,0.35); }
.metric-value--green { color: var(--green); text-shadow: 0 0 32px rgba(0,229,160,0.35); }
.metric-value--small { font-size: 40px; }
.metric-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}
.metric-detail {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* Investigation highlight */
.inv-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(255,40,40,0.05);
  border: 1px solid rgba(255,40,40,0.18);
  border-radius: 20px;
  padding: 32px 40px;
  margin-bottom: 28px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.inv-highlight:hover {
  background: rgba(255,40,40,0.09);
  border-color: rgba(255,40,40,0.3);
  transform: translateY(-2px);
}
.inv-highlight-left { flex: 1; min-width: 0; }
.inv-highlight-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 10px;
}
.inv-highlight-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px; font-weight: 800;
  color: #fff; line-height: 1.35;
}
.inv-highlight-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.inv-highlight-stats {
  display: flex;
  gap: 24px;
}
.inv-hs {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.inv-hs-num {
  font-family: var(--font-mono);
  font-size: 22px; font-weight: 800;
  color: var(--red);
  text-shadow: 0 0 16px rgba(255,59,59,0.4);
}
.inv-hs-lab {
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  white-space: nowrap;
}
.inv-highlight-cta {
  font-size: 12px; font-weight: 700; color: var(--red);
  letter-spacing: 0.04em;
}

/* 2x2 Nav cards */
.nav-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.nav-card-large {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 36px 28px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
  min-height: 210px;
}
.nav-card-large::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}
.nav-card-large:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.nav-card-l-top {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-card-l-icon { font-size: 26px; }
.nav-card-l-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 999px;
}
.nav-card-l-badge--cyan {
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--cyan);
}
.nav-card-l-title {
  font-size: 20px; font-weight: 800; color: #fff;
  letter-spacing: -0.01em; line-height: 1.2;
}
.nav-card-l-desc {
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.7; flex: 1;
}
.nav-card-l-arrow {
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  margin-top: 4px;
}
.nav-card-large:hover .nav-card-l-arrow { color: rgba(255,255,255,0.8); }

/* Category quick section */
.cat-section {
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
}
.cat-section-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.cat-section-title {
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.cat-section-all {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.25);
  text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s;
}
.cat-section-all:hover { color: var(--cyan); }
.cat-section .home-cat-list { padding: 4px 0; }
.cat-section .home-cat-row { padding: 12px 28px; }

/* ── HOMEPAGE SPLIT LAYOUT ── */
.home-layout {
  padding: 56px 0 72px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.home-layout::before {
  content: ''; position: absolute; top: -150px; left: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.home-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.home-left { display: flex; flex-direction: column; gap: 28px; }
.home-right { position: sticky; top: 80px; }

/* Category sidebar panel */
.home-cat-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius);
  overflow: hidden;
}
.home-cat-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-cyan);
  background: rgba(0,212,255,0.04);
}
.home-cat-title {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cyan);
}
.home-cat-all {
  font-size: 10px; font-weight: 700; color: var(--text-dim);
  text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s;
}
.home-cat-all:hover { color: var(--cyan); }

/* Compact category rows */
.home-cat-list { display: flex; flex-direction: column; }
.home-cat-row {
  display: grid;
  grid-template-columns: 22px 1fr 60px 28px;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.15s;
}
.home-cat-row:last-child { border-bottom: none; }
.home-cat-row:hover { background: rgba(0,212,255,0.04); }
.home-cat-row-icon { font-size: 14px; text-align: center; }
.home-cat-row-name {
  font-size: 12px; font-weight: 600; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.home-cat-row-bar {
  height: 4px; background: var(--border); border-radius: 99px;
  overflow: hidden; display: flex; gap: 1px;
}
.home-cat-row-count {
  font-size: 12px; font-weight: 800; font-family: 'JetBrains Mono', monospace;
  color: var(--cyan); text-align: right;
}

/* ── BACK LINK ── */
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  text-decoration: none; margin-bottom: 14px; letter-spacing: 0.06em;
  transition: color 0.2s;
}
.back-link:hover { color: var(--cyan); }

/* ── CATEGORY GRID ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.cat-card {
  display: flex; flex-direction: column; gap: 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--cat-accent, rgba(255,255,255,0.1));
  border-radius: 16px; padding: 22px 20px;
  text-decoration: none; transition: all 0.25s; position: relative; overflow: hidden;
  cursor: pointer;
}
.cat-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  border-top-color: var(--cat-accent, rgba(255,255,255,0.3));
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.cat-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.cat-count {
  font-size: 24px; font-weight: 800; font-family: 'JetBrains Mono', monospace;
  color: var(--cyan); text-shadow: 0 0 12px var(--cyan); line-height: 1; flex-shrink: 0;
}
.cat-name { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.35; }
.cat-pills { display: flex; gap: 5px; flex-wrap: wrap; }
.cat-pill {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 2px 7px; border-radius: 99px;
}
.cat-pill--red    { background: rgba(255,59,59,0.12);  color: var(--red);    border: 1px solid rgba(255,59,59,0.25); }
.cat-pill--green  { background: rgba(0,229,160,0.12);  color: var(--green);  border: 1px solid rgba(0,229,160,0.25); }
.cat-pill--yellow { background: rgba(240,192,48,0.12); color: var(--yellow); border: 1px solid rgba(240,192,48,0.25); }
.cat-bar {
  height: 4px; background: var(--border); border-radius: 99px;
  overflow: hidden; display: flex; gap: 1px;
}
.cat-bar-fill { height: 100%; border-radius: 99px; transition: width 0.8s ease; }
.cat-bar-fill--red    { background: var(--red); }
.cat-bar-fill--green  { background: var(--green); }
.cat-bar-fill--yellow { background: var(--yellow); }
.cat-arrow {
  font-size: 10px; font-weight: 700; color: var(--text-dim);
  letter-spacing: 0.06em; margin-top: 2px; transition: color 0.2s;
}
.cat-card:hover .cat-arrow { color: var(--cyan); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 64px 0 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
  background: #000;
}
.page-hero::before {
  content: ''; position: absolute; top: -120px; left: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero--red::before {
  background: radial-gradient(circle, rgba(255,59,59,0.08) 0%, transparent 60%);
}
.page-hero-inner { max-width: 720px; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 10px; font-weight: 700;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 20px;
  letter-spacing: 0.14em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.page-hero-badge--red {
  background: rgba(255,40,40,0.08);
  border-color: rgba(255,40,40,0.25);
  color: var(--red);
}
.page-hero-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(32px, 4.5vw, 58px); font-weight: 800; line-height: 1.06;
  letter-spacing: -0.01em; margin-bottom: 16px;
  color: #fff;
  animation: fadeInUp 0.65s 0.1s ease both;
}
.page-hero-sub {
  font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.85;
  max-width: 600px;
  animation: fadeInUp 0.65s 0.2s ease both;
}

/* ── HOME NAV GRID ── */
.home-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  animation: fadeInUp 0.65s 0.4s ease both;
}
.home-nav-card {
  display: flex; flex-direction: column; gap: 8px;
  background: var(--bg-panel); border: 1px solid var(--border-cyan);
  border-radius: var(--radius); padding: 24px 22px;
  text-decoration: none; transition: all 0.2s; position: relative; overflow: hidden;
}
.home-nav-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity 0.2s;
}
.home-nav-card:hover { border-color: var(--cyan); background: rgba(0,212,255,0.04); transform: translateY(-2px); }
.home-nav-card:hover::before { opacity: 1; }
.home-nav-card--red { border-color: rgba(255,59,59,0.3); }
.home-nav-card--red::before { background: linear-gradient(90deg, transparent, var(--red), transparent); }
.home-nav-card--red:hover { border-color: var(--red); background: rgba(255,59,59,0.04); }
.home-nav-icon { font-size: 24px; margin-bottom: 4px; }
.home-nav-title { font-size: 15px; font-weight: 800; color: var(--text); }
.home-nav-desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; flex: 1; }
.home-nav-arrow { font-size: 18px; color: var(--cyan); align-self: flex-end; margin-top: 4px; }
.home-nav-card--red .home-nav-arrow { color: var(--red); }

/* ── HERO FULL (Ethereal Beams style) ── */
.hero-full {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
  padding: 120px 28px 100px;
}

.beams-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-full-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 70%),
    linear-gradient(to bottom, transparent 60%, #000 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-full-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-full-content .hero-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-size: 11px; font-weight: 700;
  padding: 6px 18px; border-radius: 999px; margin-bottom: 28px;
  letter-spacing: 0.14em; text-transform: uppercase;
  backdrop-filter: blur(12px);
  animation: fadeIn 0.6s ease both;
}

.hero-full-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
  animation: fadeInUp 0.7s 0.1s ease both;
}
.hero-full-title em {
  font-style: italic;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.55) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-full-sub {
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  max-width: 640px;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s 0.2s ease both;
}

/* CTA buttons */
.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  color: #000;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 700;
  padding: 14px 28px; border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%) skewX(-12deg);
  transition: transform 0.8s ease;
}
.btn-primary:hover::after { transform: translateX(150%) skewX(-12deg); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,255,255,0.2); }
.btn-arrow { transition: transform 0.2s; }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-outline {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 700;
  padding: 14px 28px; border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* Mini stats inside hero */
.hero-stat-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.4s ease both;
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-family: var(--font-mono);
  font-size: 28px; font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-num--red  { color: rgba(255,100,100,0.9); }
.hero-stat-num--cyan { color: var(--cyan); }
.hero-stat-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}

.hero-scroll-hint { display: none; }

/* Section below hero */
.home-below {
  background: var(--bg);
  padding: 72px 0 80px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.home-below .home-nav-grid { margin-top: 40px; }
.home-below .home-cat-panel { margin-top: 40px; }

/* ── TICKER ── */
.ticker-wrap {
  background: rgba(10, 4, 4, 0.9);
  border-bottom: 1px solid rgba(255,59,59,0.18);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  position: relative;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before { left: 0;  background: linear-gradient(90deg, rgba(10,4,4,1), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(-90deg, rgba(10,4,4,1), transparent); }
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: ticker 40s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  padding: 0 28px; letter-spacing: 0.04em; white-space: nowrap;
  font-family: var(--font-body);
}
.ticker-item--red { color: rgba(255,100,100,0.85); }
.ticker-sep {
  color: rgba(255,59,59,0.3); font-size: 8px; flex-shrink: 0;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── GRADIENT BORDER CARDS ── */
.home-nav-card {
  position: relative;
}
.home-nav-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(0,212,255,0.4) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.home-nav-card:hover::after { opacity: 1; }
.home-nav-card--red::after {
  background: linear-gradient(135deg, transparent 40%, rgba(255,59,59,0.5) 100%);
}

/* ── STAT BOX GLOW ON HOVER ── */
.stat-box--link:hover {
  box-shadow: 0 0 0 1px var(--stat-color, var(--cyan)),
              0 8px 32px rgba(0,0,0,0.4),
              0 0 24px color-mix(in srgb, var(--stat-color, var(--cyan)) 20%, transparent);
}

/* ── CAT CARD GRADIENT BORDER ── */
.cat-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, rgba(0,212,255,0.5) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.cat-card:hover::after { opacity: 1; }

/* Hidden */
.hidden { display: none !important; }

/* ── MOBILE NAV ── */
.hamburger {
  display: none;
  background: none; border: 1px solid var(--border-cyan);
  color: var(--cyan); padding: 6px 10px; border-radius: 6px;
  font-size: 18px; cursor: pointer; line-height: 1;
}
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(2,4,8,0.97);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: 1px solid var(--border);
  color: var(--text-muted); font-size: 22px; padding: 6px 12px;
  border-radius: 6px; cursor: pointer; line-height: 1;
}
.mobile-nav a {
  font-size: 22px; font-weight: 800; color: var(--text);
  text-decoration: none; padding: 12px 40px; border-radius: 8px;
  letter-spacing: 0.04em; transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--cyan); background: var(--cyan-glow); }

/* ── RESPONSIVE: TABLET (≤900px) ── */
@media (max-width: 900px) {
  .hero-full { padding: 80px 20px 60px; min-height: 100svh; }
  .hero-full-title { font-size: clamp(36px, 9vw, 56px); }
  .hero-stat-row { gap: 24px; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 280px; justify-content: center; }
  .home-below { padding: 48px 0 56px; }
  .nav { display: none; }
  .hamburger { display: block; }

  .container { padding: 0 18px; }

  /* Homepage below-hero */
  .metrics-strip { grid-template-columns: repeat(2, 1fr); }
  .metric-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .metric-cell:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.06); }
  .metric-cell:nth-last-child(-n+2) { border-bottom: none; }
  .metric-value { font-size: 40px; }
  .metric-cell { padding: 28px 24px; }
  .inv-highlight { flex-direction: column; align-items: flex-start; }
  .inv-highlight-right { align-items: flex-start; width: 100%; }
  .nav-grid-2x2 { grid-template-columns: 1fr; }
  .nav-card-large { min-height: unset; padding: 28px 24px; }

  /* Old homepage */
  .home-layout { padding: 36px 0 48px; }
  .home-split { grid-template-columns: 1fr; gap: 28px; }
  .home-right { position: static; }
  .home-nav-grid { grid-template-columns: repeat(2, 1fr); }

  /* Stats */
  .dashboard-stats { grid-template-columns: 1fr; gap: 14px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gauge-panel { flex-direction: row; align-items: center; gap: 20px; min-width: unset; padding: 16px 20px; }
  .gauge-panel::before { display: none; }
  .gauge-svg { width: 80px; height: 80px; margin-top: 0; }
  .gauge-value { font-size: 20px; margin-top: 0; }

  /* Tracker table */
  .promise-table-header { display: none; }
  .promise-row { grid-template-columns: 36px 1fr 90px; gap: 8px; padding: 12px 14px; }
  .promise-row > .pr-cat, .promise-row > .pr-date { display: none; }
  .promise-detail { padding: 0 14px 14px 50px; }

  /* Investigation */
  .investigation-layout { grid-template-columns: 1fr; }
  .protocol-wrapper { grid-template-columns: 1fr; }

  /* Quotes */
  .quotes-grid { grid-template-columns: 1fr; }

  /* Sections */
  .hero { padding: 40px 0 32px; }
  .section { padding: 44px 0; }
  .page-hero { padding: 36px 0 28px; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ── RESPONSIVE: MOBILE (≤540px) ── */
@media (max-width: 540px) {
  .home-nav-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-box-number { font-size: 30px; }

  .promise-row { grid-template-columns: 30px 1fr 80px; padding: 10px 12px; }
  .promise-detail { padding: 0 12px 12px 42px; }
  .promise-detail-text { font-size: 11px; }

  .hero-title { font-size: 28px; }
  .page-hero-title { font-size: 24px; }
  .section-title { font-size: 20px; }

  .cat-grid { grid-template-columns: 1fr; }

  .home-cat-row { grid-template-columns: 20px 1fr 44px 24px; gap: 8px; padding: 9px 14px; }
  .home-cat-row-name { font-size: 11px; }

  .quote-date-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .notable-quote-text { font-size: 11px; }

  .source-card { flex-direction: column; gap: 10px; }

  .investigation-card { grid-template-columns: 30px 1fr; }
  .investigation-visual { display: none; }
}
