  @import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,400;0,500;1,400&family=Courier+Prime:ital,wght@0,400;0,700;1,400&display=swap');

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

  body {
    background: #ffffff;
    color: #000000;
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 16px;
    line-height: 1.8;
    min-height: 100vh;
     display: flex;
  flex-direction: column;
  }

  header, footer {
    padding: 1.5rem 2.5rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
  }

  header {
    border-bottom: 1px solid #000000;
  }

  footer {
    border-top: 1px solid #000000;
    margin-top: auto;
  }

  .project-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .nav-links {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .nav-links a {
    color: #000000;
    text-decoration: none;
    margin-left: 2rem;
  }

  .nav-links a:hover { text-decoration: underline; }

  main {
    max-width: 680px;
    margin: 0 auto;
    padding: 5rem 2.5rem 8rem;
  }

  main.home {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .home a {
    font-size: larger;
  }

  .figure-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
  }

  .body-text {
    font-size: 1rem;
    line-height: 2.2;
    margin-bottom: 2rem;
  }

  .cite-link {
    color: #000000;
    text-decoration: none;
    font-size: 0.75em;
    vertical-align: super;
    font-family: 'IBM Plex Mono', monospace;
    margin-left: 1px;
  }

  /* Word-level redaction */
  .w {
    display: inline;
    cursor: pointer;
    border-radius: 1px;
  }

  /* White box = commentary (your voice) */
  .w-white {
    background-color: #ffffff;
    color: transparent;
    /* outline: 1.5px solid #cccccc; */
    padding: 0 2px;
    user-select: none;
    transition: background-color 0.2s ease, color 0.2s ease, outline-color 0.2s ease;
  }

  .w-white.revealed {
    background-color: transparent;
    color: #000000;
    outline-color: transparent;
    cursor: default;
  }

  /* Black box = facts, quotes, evidence */
  .w-black {
    background-color: #000000;
    color: transparent;
    padding: 0 2px;
    user-select: none;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .w-black.revealed {
    background-color: transparent;
    color: #000000;
    cursor: default;
  }

  /* Name at the bottom — letter by letter, black boxes */
  .name-section {
    margin-top: 6rem;
    padding-top: 3rem;
    border-top: 1px solid #000000;
  }

  .name-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }

  .name-display {
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.05em;
  }

  .letter {
    display: inline-block;
    background-color: #000000;
    color: transparent;
    cursor: pointer;
    min-width: 0.6em;
    transition: background-color 0.15s ease, color 0.15s ease;
    user-select: none;
  }

  .letter.space {
    background-color: transparent;
    min-width: 0.4em;
    cursor: default;
  }

  .letter.revealed {
    background-color: transparent;
    color: #000000;
    cursor: default;
  }

  .citation {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    line-height: 1.6;
    margin-top: 2.5rem;
    padding-left: 1rem;
    border-left: 1px solid #000000;
  }

  .network {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #000000;
  }

  .network-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
  }

  .network-links { display: flex; flex-wrap: wrap; gap: 0.8rem; }

  .network-link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #000000;
    text-decoration: none;
    border: 1px solid #000000;
    padding: 0.4rem 0.8rem;
    transition: all 0.15s;
  }

  .network-link:hover { background: #000000; color: #ffffff; }

  @media (max-width: 600px) {
    header { padding: 1rem 1.2rem; }
    main { padding: 3rem 1.2rem 5rem; }
    footer { padding: 1rem 1.2rem;}
    .nav-links a:first-child { margin-left: 0; }
  }