:root {
    --ink: #0a0a0a;
    --paper: #f5f0e8;
    --red: #c41e1e;
    --gold: #b8860b;
    --faded: #8a7f6e;
    --rule: #2a2a2a;
  }

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

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* Noise texture overlay */
  body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
  }

  .masthead {
    background: var(--ink);
    color: var(--paper);
    text-align: center;
    padding: 48px 24px 36px;
    position: relative;
    overflow: hidden;
  }

  .masthead::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--red) 0, var(--red) 40px, transparent 40px, transparent 48px);
  }

  .dateline {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--faded);
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.6s 0.1s forwards;
  }

  .headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 7vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.7s 0.2s forwards;
  }

  .headline em {
    font-style: italic;
    color: var(--red);
  }

  .subhead {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 300;
    font-style: italic;
    color: #aaa;
    max-width: 680px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeUp 0.7s 0.35s forwards;
  }

  .container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* Drop cap intro */
  .intro-section {
    padding: 60px 0 48px;
    border-bottom: 1px solid var(--rule);
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
  }

  .intro-text {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.8;
    color: #1a1a1a;
  }

  .intro-text::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 5.5em;
    font-weight: 900;
    float: left;
    line-height: 0.75;
    margin: 8px 12px 0 0;
    color: var(--red);
  }

  /* Timeline / numbered sections */
  .sections-wrapper {
    padding: 48px 0;
  }

  .section-block {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0 28px;
    margin-bottom: 52px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s, transform 0.6s;
  }

  .section-block.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .section-number {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    color: var(--paper);
    -webkit-text-stroke: 2px var(--ink);
    line-height: 1;
    padding-top: 4px;
    user-select: none;
  }

  .section-content {
    border-top: 3px solid var(--ink);
    padding-top: 16px;
  }

  .section-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
    display: block;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--ink);
  }

  .section-body {
    font-size: 17px;
    line-height: 1.85;
    color: #2a2a2a;
  }

  .section-body p + p {
    margin-top: 14px;
  }

  /* Pull quotes */
  .pull-quote {
    border-left: 5px solid var(--red);
    margin: 32px 0;
    padding: 16px 24px;
    background: rgba(196, 30, 30, 0.04);
  }

  .pull-quote p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2.8vw, 24px);
    font-style: italic;
    line-height: 1.5;
    color: var(--ink);
  }

  /* The connection web - visual graphic */
  .connection-graphic {
    margin: 56px 0;
    padding: 40px;
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s, transform 0.6s;
  }

  .connection-graphic.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .connection-graphic::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
  }

  .connection-graphic::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
  }

  .cg-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
  }

  .cg-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 900;
    margin-bottom: 32px;
    line-height: 1.15;
  }

  .nodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    position: relative;
    z-index: 2;
  }

  .node {
    border: 1px solid rgba(255,255,255,0.15);
    padding: 20px;
    position: relative;
    transition: border-color 0.3s, background 0.3s, transform 0.2s;
    cursor: pointer;
    user-select: none;
  }

  .node:hover {
    border-color: rgba(196,30,30,0.6);
    background: rgba(196,30,30,0.08);
    transform: translateY(-2px);
  }

  .node.active {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
  }

  .node.active .node-title { color: #fff; }
  .node.active .node-desc { color: rgba(255,255,255,0.9); }
  .node.active .node-icon { filter: brightness(1.3); }
  .node.active .node-click-hint { opacity: 0; }

  .node-icon {
    font-size: 28px;
    margin-bottom: 10px;
    transition: filter 0.3s;
  }

  .node-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    transition: color 0.3s;
  }

  .node-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 300;
    transition: color 0.3s;
  }

  .node-click-hint {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-top: 12px;
    transition: opacity 0.3s;
  }

  .node-arrow {
    position: absolute;
    top: 50%;
    right: -24px;
    color: var(--red);
    font-size: 20px;
    transform: translateY(-50%);
    z-index: 3;
  }

  /* Evidence panel that expands below nodes */
  .evidence-panel {
    display: none;
    grid-column: 1 / -1;
    background: var(--red);
    padding: 28px 32px;
    margin-top: 4px;
    position: relative;
    animation: slideDown 0.3s ease;
  }

  .evidence-panel.open {
    display: block;
  }

  .evidence-panel::before {
    content: '';
    position: absolute;
    top: -10px;
    left: var(--arrow-left, 50px);
    width: 0; height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--red);
  }

  .evidence-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 20px;
    cursor: pointer;
    font-family: 'IBM Plex Mono', monospace;
    line-height: 1;
    padding: 4px 8px;
    transition: color 0.2s;
  }
  .evidence-close:hover { color: #fff; }

  .evidence-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
  }

  .evidence-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
  }

  .evidence-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .evidence-items li {
    font-family: 'Crimson Pro', serif;
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
  }

  .evidence-items li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(255,255,255,0.5);
    font-family: 'IBM Plex Mono', monospace;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Clickable facts list items */
  .facts-list li {
    cursor: pointer;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .facts-list li:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
  }

  .facts-list li.fact-active {
    background: #fff;
    color: var(--red);
    border-color: #fff;
    font-weight: 500;
  }

  .facts-list li.fact-active::before {
    color: var(--red);
  }

  .fact-detail {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    background: #fff;
    color: var(--ink);
    padding: 18px 20px;
    margin-top: 4px;
    font-family: 'Crimson Pro', serif;
    font-size: 16px;
    line-height: 1.7;
    animation: slideDown 0.25s ease;
    border-left: 4px solid var(--red);
  }

  .fact-detail.open {
    display: block;
  }

  /* Key facts bar */
  .facts-strip {
    background: var(--red);
    color: white;
    padding: 20px 32px;
    margin: 40px 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s, transform 0.6s;
  }

  .facts-strip.visible {
    opacity: 1;
    transform: translateX(0);
  }

  .facts-strip-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 12px;
  }

  .facts-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 8px;
  }

  .facts-list li {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
  }

  .facts-list li::before {
    content: '▶';
    font-size: 9px;
    margin-top: 3px;
    flex-shrink: 0;
  }

  /* Why it matters section */
  .matters-section {
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    padding: 48px 0;
    margin: 48px 0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s, transform 0.6s;
  }

  .matters-section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .matters-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
  }

  .matters-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
  }

  .matters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 32px;
  }

  .matter-item {
    border-top: 2px solid var(--ink);
    padding-top: 16px;
  }

  .matter-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .matter-item-text {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
  }

  /* Call to action */
  .cta-section {
    background: var(--ink);
    color: var(--paper);
    padding: 56px 40px;
    text-align: center;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s, transform 0.6s;
  }

  .cta-section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .cta-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(245,240,232,0.75);
    max-width: 580px;
    margin: 0 auto 32px;
  }

  .cta-mono {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid var(--red);
    display: inline-block;
    padding: 12px 28px;
  }

  /* Footer */
  .footer {
    background: #111;
    color: rgba(245,240,232,0.4);
    text-align: center;
    padding: 24px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  /* Divider */
  .rule-ornament {
    text-align: center;
    color: var(--faded);
    font-size: 20px;
    letter-spacing: 0.5em;
    margin: 40px 0;
  }

  /* Inline highlight */
  .highlight {
    background: linear-gradient(180deg, transparent 60%, rgba(196,30,30,0.2) 60%);
    padding: 0 2px;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 600px) {
    .section-block {
      grid-template-columns: 1fr;
    }
    .section-number {
      font-size: 48px;
      -webkit-text-stroke: 1.5px var(--ink);
    }
    .connection-graphic {
      padding: 24px;
    }
    .facts-strip {
      padding: 16px 20px;
    }
    .cta-section {
      padding: 40px 24px;
    }
  }

/* Evidence page extras */
:root {
    --ink: #0a0a0a;
    --paper: #f5f0e8;
    --red: #c41e1e;
    --gold: #b8860b;
    --faded: #8a7f6e;
    --rule: #2a2a2a;
    --green: #1a5c2a;
    --amber: #b85c00;
  }

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

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 18px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* Noise texture */
  body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
  }

  /* ── MASTHEAD ── */
  .masthead {
    background: var(--ink);
    color: var(--paper);
    padding: 48px 24px 36px;
    position: relative;
    overflow: hidden;
  }

  .masthead::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--red) 0, var(--red) 40px, transparent 40px, transparent 48px);
  }

  .masthead-inner {
    max-width: 900px;
    margin: 0 auto;
  }

  .back-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    transition: color 0.2s;
  }
  .back-link:hover { color: var(--red); }

  .page-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.6s 0.1s forwards;
  }

  .page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.7s 0.2s forwards;
  }

  .page-title em { font-style: italic; color: var(--red); }

  .page-subhead {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(15px, 2vw, 19px);
    font-style: italic;
    color: rgba(245,240,232,0.6);
    max-width: 680px;
    opacity: 0;
    animation: fadeUp 0.7s 0.3s forwards;
  }

  /* ── METHODOLOGY BAR ── */
  .methodology-bar {
    background: #111;
    color: rgba(245,240,232,0.7);
    padding: 20px 24px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    line-height: 1.7;
  }

  .methodology-bar-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px 32px;
  }

  .method-item strong {
    color: var(--red);
    display: block;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  /* ── CONTAINER ── */
  .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ── STATUS KEY ── */
  .status-key {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(0,0,0,0.15);
    opacity: 0;
    animation: fadeUp 0.7s 0.5s forwards;
  }

  .status-key-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--faded);
    width: 100%;
    margin-bottom: 4px;
  }

  .status-badge {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.05em;
  }

  .badge-confirmed {
    background: rgba(26,92,42,0.12);
    color: var(--green);
    border: 1px solid rgba(26,92,42,0.3);
  }

  .badge-reported {
    background: rgba(184,92,0,0.1);
    color: var(--amber);
    border: 1px solid rgba(184,92,0,0.3);
  }

  .badge-alleged {
    background: rgba(196,30,30,0.08);
    color: var(--red);
    border: 1px solid rgba(196,30,30,0.25);
  }

  .badge-named-only {
    background: rgba(10,10,10,0.06);
    color: var(--faded);
    border: 1px solid rgba(10,10,10,0.15);
  }

  .badge-staff {
    background: rgba(30,80,180,0.08);
    color: #1e50b4;
    border: 1px solid rgba(30,80,180,0.25);
  }

  /* ── DATA SET NAVIGATION ── */
  .dataset-nav {
    padding: 32px 0 0;
    opacity: 0;
    animation: fadeUp 0.7s 0.6s forwards;
  }

  .dataset-nav-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--faded);
    margin-bottom: 12px;
  }

  .dataset-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0;
  }

  .dataset-tab {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    padding: 8px 16px;
    border: 1px solid rgba(0,0,0,0.2);
    background: transparent;
    cursor: pointer;
    color: var(--faded);
    transition: all 0.2s;
    letter-spacing: 0.05em;
  }

  .dataset-tab:hover {
    border-color: var(--red);
    color: var(--red);
  }

  .dataset-tab.active {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
  }

  /* ── DATASET SECTIONS ── */
  .dataset-section {
    display: none;
    padding: 40px 0;
    border-top: 3px solid var(--ink);
    margin-top: 0;
  }

  .dataset-section.active {
    display: block;
    animation: fadeUp 0.4s ease forwards;
  }

  .dataset-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 24px;
    margin-bottom: 32px;
    align-items: start;
  }

  .dataset-number {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 900;
    color: var(--paper);
    -webkit-text-stroke: 2px var(--ink);
    line-height: 1;
    user-select: none;
  }

  .dataset-meta {
    padding-top: 8px;
    border-top: 3px solid var(--ink);
  }

  .dataset-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
    display: block;
  }

  .dataset-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .dataset-desc {
    font-size: 16px;
    color: #3a3a3a;
    line-height: 1.75;
    max-width: 640px;
  }

  .dataset-status {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
  }

  /* ── COMING SOON STATE ── */
  .coming-soon {
    background: rgba(0,0,0,0.03);
    border: 1px dashed rgba(0,0,0,0.2);
    padding: 40px;
    text-align: center;
    margin: 24px 0;
  }

  .coming-soon-icon {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .coming-soon-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
  }

  .coming-soon-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--faded);
    letter-spacing: 0.05em;
  }

  /* ── EVIDENCE ENTRIES ── */
  .evidence-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 24px;
  }

  .evidence-entry {
    border-top: 1px solid rgba(0,0,0,0.12);
    padding: 24px 0;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0 24px;
    cursor: pointer;
    transition: background 0.2s;
  }

  .evidence-entry:hover {
    background: rgba(196,30,30,0.03);
  }

  .evidence-entry:last-child {
    border-bottom: 1px solid rgba(0,0,0,0.12);
  }

  .evidence-entry-left {
    padding-top: 4px;
  }

  .evidence-date {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--faded);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: block;
  }

  .evidence-entry-title {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--ink);
  }

  .evidence-entry-body {
    font-size: 16px;
    line-height: 1.75;
    color: #2a2a2a;
  }

  .evidence-entry-body.collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .evidence-toggle {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0 0;
    display: block;
  }

  .evidence-source {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--faded);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.08);
  }

  .evidence-source a {
    color: var(--red);
    text-decoration: none;
  }
  .evidence-source a:hover { text-decoration: underline; }

  /* ── ASSOCIATION FRAMEWORK ── */
  .framework-section {
    padding: 48px 0;
    border-top: 3px solid var(--ink);
    margin-top: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
  }

  .framework-section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .framework-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1.15;
  }

  .framework-subtitle {
    font-family: 'Crimson Pro', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--faded);
    margin-bottom: 32px;
  }

  .framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
  }

  .framework-period {
    padding: 24px;
    border: 1px solid rgba(0,0,0,0.12);
    margin: -1px 0 0 -1px;
    transition: background 0.2s;
  }

  .framework-period:hover { background: rgba(0,0,0,0.02); }

  .framework-period-era {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
    display: block;
  }

  .framework-period-label {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .framework-period-text {
    font-size: 14px;
    line-height: 1.7;
    color: #3a3a3a;
  }

  .framework-period.era-before { border-top: 4px solid var(--green); }
  .framework-period.era-during { border-top: 4px solid var(--amber); }
  .framework-period.era-after { border-top: 4px solid var(--red); }

  /* ── REDACTION COUNTER ── */
  .redaction-counter {
    background: #1a0000;
    border-top: 3px solid var(--red);
    border-bottom: 3px solid var(--red);
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
  }
  .redaction-counter::before {
    content: 'REDACTED';
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    font-weight: 900;
    color: rgba(196,30,30,0.04);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
  }
  .rc-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
  .rc-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
  .rc-title { font-family: 'Playfair Display', serif; font-size: clamp(22px,4vw,38px); font-weight: 900; color: #fff; margin-bottom: 28px; line-height: 1.1; }
  .rc-title em { color: var(--red); font-style: italic; }
  .rc-totals { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 2px; margin-bottom: 28px; }
  .rc-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(196,30,30,0.2); padding: 20px; text-align: center; }
  .rc-box.hot { background: rgba(196,30,30,0.1); border-color: var(--red); }
  .rc-num { font-family: 'Playfair Display', serif; font-size: clamp(28px,4vw,48px); font-weight: 900; color: var(--red); display: block; line-height: 1; margin-bottom: 6px; }
  .rc-num.white { color: #fff; }
  .rc-num.pending { color: rgba(255,255,255,0.2); font-size: 18px; }
  .rc-box-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); line-height: 1.5; }
  .rc-section-title { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 10px; }
  .rc-exemptions { margin-bottom: 28px; }
  .rc-row { display: grid; grid-template-columns: 70px 1fr auto; gap: 0 12px; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .rc-code { font-family: 'IBM Plex Mono', monospace; font-size: 13px; font-weight: 500; color: var(--red); }
  .rc-desc { font-family: 'Crimson Pro', serif; font-size: 15px; color: rgba(255,255,255,0.55); }
  .rc-count { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.3); text-align: right; }
  .rc-parts { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px,1fr)); gap: 6px; margin-bottom: 20px; }
  .rc-part { border: 1px solid rgba(255,255,255,0.07); padding: 14px 10px 12px; }
  .rc-part.done { border-color: rgba(196,30,30,0.4); background: rgba(196,30,30,0.05); }
  .rc-part.todo { opacity: 0.3; }
  .rc-part-name { font-family: 'IBM Plex Mono', monospace; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); display: block; margin-bottom: 8px; }
  .rc-part-val { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 900; color: var(--red); display: block; line-height: 1; margin-bottom: 2px; }
  .rc-part-val.tbd { color: rgba(255,255,255,0.15); font-size: 14px; }
  .rc-part-sub { font-family: 'IBM Plex Mono', monospace; font-size: 8px; color: rgba(255,255,255,0.2); display: block; margin-bottom: 10px; }
  .rc-part-sub.done-sub { color: rgba(196,30,30,0.45); }
  .rc-bar-wrap { width: 100%; height: 6px; background: rgba(255,255,255,0.06); border-radius: 1px; overflow: hidden; margin-top: 4px; }
  .rc-bar-fill { height: 100%; background: var(--red); border-radius: 1px; }
  .rc-bar-fill.full { background: rgba(196,30,30,0.9); }
  .rc-bar-legend { display: flex; justify-content: space-between; margin-top: 5px; }
  .rc-bar-del { font-family: 'IBM Plex Mono', monospace; font-size: 8px; color: rgba(196,30,30,0.6); }
  .rc-bar-tot { font-family: 'IBM Plex Mono', monospace; font-size: 8px; color: rgba(255,255,255,0.2); }
  .rc-footnote { font-family: 'IBM Plex Mono', monospace; font-size: 10px; color: rgba(255,255,255,0.18); border-top: 1px solid rgba(255,255,255,0.05); padding-top: 14px; line-height: 1.7; letter-spacing: 0.05em; }

  /* ── PEOPLE NAMED SECTION ── */
  .people-section {
    padding: 48px 0;
    border-top: 3px solid var(--ink);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
  }

  .people-section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .people-disclaimer {
    background: rgba(196,30,30,0.06);
    border-left: 4px solid var(--red);
    padding: 20px 24px;
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.7;
    color: #2a2a2a;
  }

  .people-disclaimer strong {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 8px;
  }

  .people-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
  }

  .people-filter {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    padding: 6px 14px;
    border: 1px solid rgba(0,0,0,0.2);
    background: transparent;
    cursor: pointer;
    color: var(--faded);
    transition: all 0.2s;
  }

  .people-filter:hover { border-color: var(--ink); color: var(--ink); }
  .people-filter.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

  .people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
  }

  .person-card {
    border: 1px solid rgba(0,0,0,0.12);
    padding: 20px;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
  }

  .person-card:hover {
    border-color: var(--red);
    box-shadow: 0 4px 20px rgba(196,30,30,0.08);
  }

  .person-card.active {
    border-color: var(--red);
    background: rgba(196,30,30,0.03);
  }

  .person-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .person-role {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: var(--faded);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
  }

  .person-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
  }

  .person-summary {
    font-size: 14px;
    line-height: 1.6;
    color: #3a3a3a;
    display: none;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.08);
  }

  .person-card.active .person-summary { display: block; }

  .person-period {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 2px;
    letter-spacing: 0.05em;
  }

  .period-before { background: rgba(26,92,42,0.1); color: var(--green); }
  .period-during { background: rgba(184,92,0,0.1); color: var(--amber); }
  .period-after { background: rgba(196,30,30,0.1); color: var(--red); }

  /* ── CODED LANGUAGE GUIDE ── */
  .language-section {
    padding: 48px 0;
    border-top: 3px solid var(--ink);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
  }

  .language-section.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .language-intro {
    font-size: 17px;
    line-height: 1.8;
    color: #2a2a2a;
    max-width: 640px;
    margin-bottom: 32px;
  }

  .language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
  }

  .language-card {
    background: var(--ink);
    color: var(--paper);
    padding: 24px;
  }

  .language-category {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
    display: block;
  }

  .language-term {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
  }

  .language-meaning {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(245,240,232,0.7);
  }

  .language-example {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-style: italic;
    color: rgba(245,240,232,0.5);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    line-height: 1.5;
  }

  /* ── PROGRESS TRACKER ── */
  .progress-section {
    background: var(--ink);
    color: var(--paper);
    padding: 40px;
    margin: 48px 0 0;
  }

  .progress-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
  }

  .progress-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 700;
    margin-bottom: 24px;
  }

  .progress-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
  }

  .progress-item {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px;
  }

  .progress-item-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(245,240,232,0.5);
    margin-bottom: 8px;
    text-transform: uppercase;
  }

  .progress-item-value {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
  }

  .progress-item-value.highlight { color: var(--red); }

  .progress-item-sub {
    font-size: 13px;
    color: rgba(245,240,232,0.5);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
  }

  .progress-bar-wrap {
    margin-top: 20px;
    background: rgba(255,255,255,0.08);
    height: 4px;
    width: 100%;
  }

  .progress-bar-fill {
    height: 100%;
    background: var(--red);
    width: 0%;
    transition: width 1.5s ease;
  }

  /* ── FOOTER ── */
  .footer {
    background: #111;
    color: rgba(245,240,232,0.4);
    text-align: center;
    padding: 24px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  /* ── ASSOCIATE REDACTION COUNTER ── */
  .associate-counter {
    background: #0d0a00;
    border-top: 3px solid var(--amber);
    border-bottom: 3px solid var(--amber);
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
  }

  .associate-counter::before {
    content: 'REDACTED';
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    font-weight: 900;
    color: rgba(184,92,0,0.04);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
  }

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

  .ac-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 8px;
  }

  .ac-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3.5vw, 34px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.1;
  }

  .ac-title em { color: var(--amber); font-style: italic; }

  .ac-subtitle {
    font-family: 'Crimson Pro', serif;
    font-size: 16px;
    font-style: italic;
    color: rgba(245,240,232,0.45);
    margin-bottom: 28px;
    max-width: 620px;
  }

  .ac-totals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2px;
    margin-bottom: 24px;
  }

  .ac-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(184,92,0,0.15);
    padding: 20px 16px;
    text-align: center;
  }

  .ac-box.hot {
    background: rgba(184,92,0,0.1);
    border-color: rgba(184,92,0,0.45);
  }

  .ac-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    color: var(--amber);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
  }

  .ac-num.white { color: #fff; }

  .ac-box-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(245,240,232,0.4);
    text-transform: uppercase;
    line-height: 1.5;
  }

  .ac-parts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 2px;
    margin-bottom: 20px;
  }

  .ac-part {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 14px 12px;
    text-align: center;
  }

  .ac-part.reviewed {
    border-color: rgba(184,92,0,0.4);
    background: rgba(184,92,0,0.07);
  }

  .ac-part-name {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: rgba(245,240,232,0.5);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 6px;
  }

  .ac-part-val {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--amber);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
  }

  .ac-part-val.tbd {
    color: rgba(245,240,232,0.2);
    font-size: 16px;
  }

  .ac-part-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: rgba(245,240,232,0.3);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .ac-part-sub.reviewed-sub { color: rgba(184,92,0,0.8); }

  .ac-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 2px;
    margin-bottom: 20px;
  }

  .ac-breakdown-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(184,92,0,0.15);
    padding: 16px;
  }

  .ac-breakdown-code {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 18px;
    font-weight: 500;
    color: var(--amber);
    display: block;
    margin-bottom: 6px;
  }

  .ac-breakdown-desc {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: rgba(245,240,232,0.55);
    line-height: 1.6;
  }

  .ac-breakdown-count {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: rgba(184,92,0,0.7);
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(184,92,0,0.15);
  }

  .ac-note {
    background: rgba(184,92,0,0.07);
    border-left: 3px solid var(--amber);
    padding: 14px 18px;
    margin-top: 4px;
  }

  .ac-note p {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: rgba(245,240,232,0.6);
    line-height: 1.7;
    letter-spacing: 0.03em;
  }

  .ac-note p strong {
    color: var(--amber);
    display: block;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .ac-footnote {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: rgba(245,240,232,0.25);
    margin-top: 16px;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
  .victim-counter {
    background: #0a0a0a;
    border-top: 3px solid var(--red);
    border-bottom: 3px solid var(--red);
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
  }

  .victim-counter::before {
    content: 'PROTECTED';
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    font-weight: 900;
    color: rgba(196,30,30,0.04);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
  }

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

  .vc-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
  }

  .vc-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3.5vw, 34px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.1;
  }

  .vc-title em { color: var(--red); font-style: italic; }

  .vc-subtitle {
    font-family: 'Crimson Pro', serif;
    font-size: 16px;
    font-style: italic;
    color: rgba(245,240,232,0.45);
    margin-bottom: 28px;
    max-width: 600px;
  }

  .vc-totals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2px;
    margin-bottom: 24px;
  }

  .vc-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(196,30,30,0.15);
    padding: 20px 16px;
    text-align: center;
  }

  .vc-box.hot {
    background: rgba(196,30,30,0.08);
    border-color: rgba(196,30,30,0.4);
  }

  .vc-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 900;
    color: var(--red);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
  }

  .vc-num.white { color: #fff; }

  .vc-box-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(245,240,232,0.45);
    text-transform: uppercase;
    line-height: 1.5;
  }

  .vc-parts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 2px;
    margin-bottom: 20px;
  }

  .vc-part {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 14px 12px;
    text-align: center;
  }

  .vc-part.confirmed-none {
    border-color: rgba(26,92,42,0.4);
    background: rgba(26,92,42,0.07);
  }

  .vc-part.names-present {
    border-color: rgba(196,30,30,0.5);
    background: rgba(196,30,30,0.1);
  }

  .vc-part-name {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: rgba(245,240,232,0.5);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 6px;
  }

  .vc-part-val {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
  }

  .vc-part-val.zero { color: rgba(26,92,42,0.9); }
  .vc-part-val.tbd { color: rgba(245,240,232,0.25); font-size: 16px; }

  .vc-part-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    color: rgba(245,240,232,0.3);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .vc-part-sub.none-sub { color: rgba(26,92,42,0.8); }

  .vc-note {
    background: rgba(196,30,30,0.08);
    border-left: 3px solid var(--red);
    padding: 14px 18px;
    margin-top: 4px;
  }

  .vc-note p {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: rgba(245,240,232,0.6);
    line-height: 1.7;
    letter-spacing: 0.03em;
  }

  .vc-note p strong {
    color: var(--red);
    display: block;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .vc-footnote {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: rgba(245,240,232,0.25);
    margin-top: 16px;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 600px) {
    .evidence-entry {
      grid-template-columns: 1fr;
    }
    .dataset-header {
      grid-template-columns: 1fr;
    }
    .dataset-number { font-size: 56px; }
    .progress-section { padding: 28px 20px; }
  }

/* Nav button */
.nav-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 12px 28px 0;
  position: absolute;
  top: 0; right: 0;
  z-index: 10;
}
.evidence-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(245,240,232,0.35);
  padding: 9px 22px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.evidence-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.evidence-btn::before {
  content: '\25B6';
  font-size: 8px;
  color: var(--red);
  transition: color 0.25s;
}
.evidence-btn:hover::before { color: #fff; }