/* === Font fallbacks with size-adjust to reduce CLS === */
@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial');
  size-adjust: 107%;
  ascent-override: 100%;
  descent-override: 25%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'Playfair Fallback';
  src: local('Georgia');
  size-adjust: 112%;
  ascent-override: 108%;
  descent-override: 28%;
  line-gap-override: 0%;
}

/* === Variables === */
:root {
  --bg-primary: #0a0a0c;
  --bg-secondary: #111114;
  --bg-card: #16161a;
  --bg-card-hover: #1c1c22;
  --text-primary: #e8e8ed;
  --text-secondary: #9a9aa6;
  --text-muted: #8a8a96;
  --accent: #c8a04a;
  --accent-dim: rgba(200, 160, 74, 0.12);
  --accent-glow: rgba(200, 160, 74, 0.2);
  --danger: #ef4444;
  --danger-dim: rgba(239, 68, 68, 0.1);
  --success: #34d399;
  --success-dim: rgba(52, 211, 153, 0.1);
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --font-serif: 'Playfair Display', 'Playfair Fallback', Georgia, serif;
  --font-sans: 'Inter', 'Inter Fallback', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --article-width: 720px;
  --section-width: 1100px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
code { font-family: var(--font-mono); font-size: 0.85em; background: var(--accent-dim); color: var(--accent); padding: 0.15em 0.4em; border-radius: 3px; }

.bilingual .original { color: #d4b060; }
.bilingual .translation { color: #c0c0cc; font-size: 0.9em; }

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 10, 12, 0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.nav.hidden { transform: translateY(-100%); }

.nav-inner {
  max-width: var(--section-width);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-brand-mark {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-brand-divider {
  width: 1px;
  height: 16px;
  background: var(--border-strong);
}

.nav-brand-section {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nav-links { display: flex; gap: 1.5rem; }

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--text-primary); text-decoration: none; }

/* === Masthead === */
.masthead {
  position: relative;
  padding: 10rem 1.5rem 5rem;
  text-align: center;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.masthead-hero {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.masthead-hero-img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  opacity: 0.65;
}

.masthead-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.5) 0%, rgba(10, 10, 12, 0.75) 50%, var(--bg-primary) 100%);
}

.masthead-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.masthead-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.masthead-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  color: var(--text-primary);
}

.masthead-deck {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  min-height: 5.1em;
}

.masthead-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.masthead-byline { text-align: left; }
.byline-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.byline-org { font-weight: 600; font-size: 0.9rem; }

.masthead-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.masthead-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === Article Body === */
.article {
  border-bottom: 1px solid var(--border);
}

.article-body {
  max-width: var(--article-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.article-body p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.article-body p strong { color: var(--text-primary); }

.article-section-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 3.5rem 0 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-primary);
}

/* === Lede === */
.lede { margin-bottom: 3rem; }

.subject-showcase {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.subject-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100vw;
  max-width: var(--section-width);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 0 max(1.5rem, calc(50vw - var(--section-width) / 2));
  box-sizing: border-box;
}

.subject-visual-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.subject-visual-item img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.subject-visual-item figcaption {
  padding: 1rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(0,0,0,0.3);
}

.subject-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.subject-photo {
  width: 140px;
  height: 140px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-dim);
}

.subject-name {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
}

.subject-aka {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.lede-text { font-size: 1.25rem !important; line-height: 1.8 !important; }

.dropcap {
  float: left;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.8;
  padding: 0.1em 0.12em 0 0;
  color: var(--accent);
}

/* === Pull Quote === */
.pullquote {
  margin: 3rem -2rem;
  padding: 2rem 2rem 2rem 2.5rem;
  border-left: 3px solid var(--accent);
  background: var(--bg-card);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.pullquote blockquote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
}

.pullquote blockquote em { color: var(--accent); font-style: normal; font-weight: 700; }

/* === Article Image Break === */
.article-image-break {
  margin: 3rem 0 4rem;
  width: 100vw;
  max-width: 100%;
  margin-left: 50%;
  transform: translateX(-50%);
}

.inline-figure {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.inline-figure img {
  width: 100%;
  min-height: 520px;
  max-height: 75vh;
  object-fit: cover;
}

.inline-figure figcaption {
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  max-width: var(--section-width);
  margin: 0 auto;
}

/* === Extortion Section === */
.extortion-layout {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 3rem;
  margin: 2rem 0 4rem;
  align-items: start;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: max(1.5rem, calc(50vw - var(--section-width) / 2));
  padding-right: max(1.5rem, calc(50vw - var(--section-width) / 2));
  box-sizing: border-box;
}

.extortion-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

.extortion-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.extortion-figure-main img {
  width: 100%;
  aspect-ratio: 3/4;
  min-height: 360px;
  object-fit: cover;
}

.extortion-figure-side img {
  width: 100%;
  aspect-ratio: 1;
  min-height: 200px;
  object-fit: cover;
}

.extortion-figure figcaption {
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(0,0,0,0.3);
}

.extortion-content p {
  margin-bottom: 1.5rem;
}

.extortion-content .pullquote {
  margin: 2rem 0;
}

.manipulation-subtitle {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 3rem 0 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-primary);
}

.manipulation-tactics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.manipulation-tactic {
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}

.manipulation-tactic:hover {
  border-color: var(--accent-dim);
}

.tactic-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.manipulation-tactic p {
  font-size: 0.9rem !important;
  color: var(--text-secondary) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

/* === Evidence Grid === */
.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  margin: 2rem 0 3rem;
}

.evidence-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.evidence-card:hover { border-color: var(--accent-dim); }

.evidence-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.evidence-content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.evidence-content p {
  font-size: 0.85rem !important;
  line-height: 1.6 !important;
  color: var(--text-muted) !important;
  margin-bottom: 0 !important;
}

/* === Identity Table === */
.identity-table-wrapper {
  margin: 2rem 0 3rem;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.identity-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.identity-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.identity-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.identity-table tr:last-child td { border-bottom: none; }

.identity-table tr.flagged { background: var(--danger-dim); }
.identity-table tr.flagged td { color: var(--text-primary); }

.flag-cell {
  color: var(--danger) !important;
  font-size: 0.8rem;
  font-weight: 500;
}

/* === Executives Table === */
.executives-table-wrapper {
  margin: 2rem 0 1.5rem;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.executives-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.executives-table th {
  text-align: left;
  padding: 0.85rem 1.25rem;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.executives-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.executives-table tbody tr:last-child td { border-bottom: none; }

.executives-table tbody tr:hover {
  background: rgba(255,255,255,0.02);
}

.executives-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
}

.executives-note {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  font-style: italic;
  margin-top: 1rem;
}

/* === Scheme Cards === */
.scheme-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin: 2rem 0 3rem;
}

.scheme-card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.2s;
}

.scheme-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-2px);
}

.scheme-icon {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bg-primary);
  background: var(--accent);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.scheme-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.scheme-card p {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

/* === Timeline === */
.timeline {
  position: relative;
  margin: 2rem 0 3rem;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-strong);
}

.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--text-muted);
  transform: translateX(-4px);
}

.timeline-item.active::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-dim);
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.timeline-body h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.timeline-body p {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  margin-bottom: 0 !important;
}

/* === Money Breakdown === */
.money-breakdown {
  margin: 2rem 0 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.money-total {
  padding: 1.5rem;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.money-total-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.money-total-amount {
  display: block;
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.money-total-usd {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.money-stages { padding: 1.25rem; }

.money-stage {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.money-stage:last-child { border-bottom: none; }

.money-stage-bar {
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  width: var(--stage-width);
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.money-stage-info { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 0.5rem; }
.money-stage-label { font-size: 0.85rem; color: var(--text-secondary); }
.money-stage-amount { font-family: var(--font-mono); font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.money-stage-date { font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-muted); }

/* === Sections (full-width) === */
.section {
  border-bottom: 1px solid var(--border);
}

.dark-section { background: var(--bg-secondary); }

.section-inner {
  max-width: var(--section-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section-header { margin-bottom: 2.5rem; }

.section-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-description {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 650px;
  line-height: 1.7;
}

/* === Extracted Document Summary === */
.extracted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.extracted-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.extracted-card:hover {
  border-color: var(--accent-dim);
}

.extracted-card-wide {
  grid-column: 1 / -1;
}

.extracted-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.extracted-dl {
  margin: 0;
}

.extracted-dl dt {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
  margin-bottom: 0.2rem;
}

.extracted-dl dt:first-of-type {
  margin-top: 0;
}

.extracted-dl dd {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.extracted-dl a {
  color: var(--accent);
}

.extracted-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--danger);
}

/* === Documents === */
.documents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.document-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.document-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.document-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.document-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  word-break: break-word;
}

.document-actions { padding: 1rem 1.5rem; }

.btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
}

.btn-secondary {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(200, 160, 74, 0.2);
}

.btn-secondary:hover {
  background: rgba(200, 160, 74, 0.2);
  border-color: var(--accent);
  text-decoration: none;
}

.document-frame {
  width: 100%;
  min-height: 750px;
  border: none;
  border-top: 1px solid var(--border);
  background: #fff;
}

/* === Gallery === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

/* === Subject Gallery (Who Is She) === */
.subject-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
  min-height: 600px;
}

.subject-gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.subject-gallery-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-dim);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.subject-gallery-card-featured {
  grid-column: 1;
  grid-row: 1 / -1;
}

.subject-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.subject-gallery-card:not(.subject-gallery-card-featured) img {
  aspect-ratio: 1;
  min-height: 220px;
}

.subject-gallery-card-featured img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.subject-gallery-card:hover img {
  transform: scale(1.03);
}

.subject-gallery-caption {
  padding: 1.25rem;
  border-top: 1px solid var(--border);
}

.subject-gallery-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.subject-gallery-caption p {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* === Platform Cards === */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

/* === OSINT Toolbar === */
.osint-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.osint-search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.osint-search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: var(--text-muted);
  pointer-events: none;
}

.osint-search {
  width: 100%;
  padding: 0.6rem 1rem 0.6rem 2.5rem;
  font-size: 0.9rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  transition: box-shadow 0.2s;
}

.osint-search::placeholder { color: var(--text-muted); }
.osint-search:focus {
  outline: none;
  box-shadow: inset 0 0 0 1px var(--accent);
}

.osint-filter-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.osint-filter-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.osint-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.osint-pill {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: opacity 0.2s;
}

.osint-pill:hover {
  border-color: var(--accent-dim);
  color: var(--text-primary);
}

.osint-pill:active { opacity: 0.8; }

.osint-pill-active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

.osint-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-osint {
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-osint:hover {
  border-color: var(--accent-dim);
  color: var(--text-primary);
}

.btn-osint:active { opacity: 0.8; }

.osint-detail-header {
  margin: 2.5rem 0 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.osint-detail-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.osint-detail-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.osint-no-results {
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.platform-card-link {
  text-decoration: none;
  color: inherit;
}

.platform-card-link:hover {
  text-decoration: none;
}

.platform-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-dim);
  transform: translateY(-2px);
}

.platform-badge {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.platform-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.platform-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.platform-info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: capitalize;
}

.platform-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* === Data Cards === */
.data-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.data-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.data-card:hover { border-color: var(--accent-dim); }

.data-card-header {
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  -webkit-user-select: none;
  user-select: none;
}

.data-card-header:hover { background: rgba(0, 0, 0, 0.25); }

.data-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: capitalize;
  flex: 1;
}

.data-card-badge {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.data-card-toggle {
  color: var(--text-muted);
  font-size: 1rem;
  transition: transform 0.25s;
  flex-shrink: 0;
}

.data-card.expanded .data-card-toggle { transform: rotate(180deg); }

.data-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.data-card.expanded .data-card-body { max-height: none; }

.data-card-content { padding: 1.25rem; }

.data-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.data-row:last-child { border-bottom: none; }

.data-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  min-width: 140px;
  font-family: var(--font-mono);
  flex-shrink: 0;
}

.data-value-cell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}

.data-value {
  font-size: 0.85rem;
  color: var(--text-primary);
  word-break: break-word;
}

.data-value a { color: var(--accent); }

.data-copy-btn {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  font-size: 0.7rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  transition: opacity 0.2s;
  opacity: 0.6;
}

.data-copy-btn:hover {
  opacity: 1;
  border-color: var(--accent-dim);
  color: var(--accent);
}

.data-copy-btn.copied {
  color: var(--success);
  border-color: var(--success);
}

.data-value-array {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.data-value-array span {
  background: var(--accent-dim);
  color: var(--accent);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.75rem;
}

/* === Checker Grid === */
.checker-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.checker-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--success-dim);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.checker-item::before {
  content: '\2713';
  color: var(--success);
  font-weight: 700;
}

/* === Footer === */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--section-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  text-align: center;
}

.footer-brand {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-legal {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.footer-contact {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.footer-contact a {
  color: var(--accent);
}

.footer-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* === Content Visibility (reduce DOM processing) === */
#executives,
#document-summary,
#documents,
#photos,
#digital-trail {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

/* === Scroll Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-links { display: none; }

  .masthead { padding: 7rem 1rem 3rem; }
  .masthead-headline { font-size: clamp(2rem, 8vw, 3.5rem); }
  .masthead-deck { min-height: 12.24em; }
  .masthead-stats { gap: 1.5rem; }

  .article-body { padding: 2.5rem 1rem; }

  .subject-visual-grid {
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .extortion-layout {
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .extortion-images {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .extortion-figure-main,
  .extortion-figure-side {
    flex: 1 1 160px;
    min-width: 0;
  }

  .subject-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .subject-gallery-card-featured {
    grid-column: 1;
    grid-row: auto;
  }

  .subject-gallery-card-featured img {
    min-height: 400px;
    aspect-ratio: 4/5;
  }

  .pullquote { margin: 2rem -0.5rem; padding: 1.25rem; }
  .pullquote blockquote { font-size: 1.1rem; }

  .evidence-grid { grid-template-columns: 1fr; }
  .scheme-cards { grid-template-columns: 1fr; }

  .identity-table td:nth-child(3) { display: none; }

  .executives-table th:nth-child(3),
  .executives-table td:nth-child(3) { display: none; }

  .section-inner { padding: 2.5rem 1rem; }

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

  .osint-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .osint-search-wrap { min-width: 0; }

  .osint-filter-wrap { flex-direction: column; align-items: stretch; }

  .osint-filter-pills { justify-content: flex-start; }

  .osint-actions { justify-content: flex-start; }

  .data-copy-btn {
    width: auto;
    padding: 0.2rem 0.5rem;
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .masthead-meta { flex-direction: column; align-items: center; }
  .masthead-byline { text-align: center; }
  .money-stage-info { flex-direction: column; gap: 0.15rem; }
}
