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

  body {
    background: #000;
    color: #e0e0e0;
    font-family: 'Georgia', serif;
    line-height: 1.7;
  }

  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: radial-gradient(ellipse at center, #0a0a1a 0%, #000 70%);
    border-bottom: 1px solid #1a1a2e;
  }

  .hero-label {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #8b0000;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
  }

  .hero h1 span {
    color: #8b0000;
  }

  .hero-quote {
    max-width: 680px;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: #aaa;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 48px;
  }

  .hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat {
    text-align: center;
  }

  .stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b0000;
    font-family: 'Courier New', monospace;
  }

  .stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666;
  }

  .section {
    max-width: 960px;
    margin: 0 auto;
    padding: 80px 24px;
  }

  .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #8b0000;
    margin-bottom: 16px;
  }

  .section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    margin-bottom: 24px;
    font-weight: 600;
  }

  .section p {
    color: #bbb;
    font-size: 1.05rem;
    margin-bottom: 16px;
    max-width: 720px;
  }

  .timeline {
    border-left: 2px solid #1a1a2e;
    margin: 48px 0;
    padding-left: 32px;
  }

  .timeline-item {
    position: relative;
    margin-bottom: 40px;
  }

  .timeline-item::before {
    content: '';
    position: absolute;
    left: -41px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #8b0000;
  }

  .timeline-item.confirmed::before {
    background: #2d6a2d;
  }

  .timeline-date {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 6px;
    font-family: monospace;
  }

  .timeline-item h3 {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 8px;
  }

  .timeline-item p {
    font-size: 0.95rem;
    color: #888;
    max-width: 600px;
    margin: 0;
  }

  .source-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 2px;
    margin-left: 8px;
    vertical-align: middle;
  }

  .badge-leaked { background: #2a1010; color: #c44; border: 1px solid #422; }
  .badge-public { background: #0d1a0d; color: #4a4; border: 1px solid #1a3a1a; }
  .badge-confirmed { background: #0a1a0a; color: #5a5; border: 1px solid #1a4a1a; }

  .names-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 12px;
    margin: 40px 0;
  }

  .name-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-left: 3px solid #8b0000;
    padding: 14px 16px;
    transition: border-color 0.2s;
  }

  .name-card:hover {
    border-left-color: #c00;
    background: #0d0d0d;
  }

  .name-card .person-name {
    font-size: 0.95rem;
    color: #ddd;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .name-card .person-stats {
    font-size: 0.75rem;
    color: #555;
    font-family: monospace;
  }

  .statement {
    background: #050505;
    border: 1px solid #1a0000;
    border-left: 4px solid #8b0000;
    padding: 40px;
    margin: 48px 0;
  }

  .statement p {
    font-size: 1.15rem;
    color: #ccc;
    font-style: italic;
    line-height: 1.9;
    margin-bottom: 12px;
  }

  .statement p:last-child { margin-bottom: 0; }

  .divider {
    border: none;
    border-top: 1px solid #111;
    margin: 0;
  }

  .verdict {
    background: #030303;
    padding: 80px 24px;
    text-align: center;
  }

  .verdict h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
  }

  .verdict p {
    font-size: 1.1rem;
    color: #777;
    max-width: 600px;
    margin: 0 auto 32px;
  }

  .back-link {
    display: inline-block;
    color: #555;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-bottom: 1px solid #222;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }

  .back-link:hover { color: #888; border-color: #444; }

  @media (max-width: 600px) {
    .hero-stats { gap: 24px; }
    .stat-num { font-size: 2rem; }
    .statement { padding: 24px; }
    .timeline { padding-left: 20px; }
    .timeline-item::before { left: -29px; }
  }
.source-highlight { color: #c44; }
.names-note { font-size: 0.85rem; color: #555; margin-bottom: 32px; }
