      :root {
        --void: #0A0A0C;
        --panel: #16151A;
        --panel-raised: #1E1C22;
        --flame: #FF4A1F;
        --acid: #D4FF3D;
        --paper: #F3F1EA;
        --muted: #8D8A93;
        --line: rgba(243, 241, 234, 0.09);
      }

      * {
        box-sizing: border-box;
      }

      body {
        background: var(--void);
        color: var(--paper);
        font-family: 'Space Grotesk', sans-serif;
        font-size: 16px;
        line-height: 1.55;
        overflow-x: hidden;
      }

      .mono {
        font-family: 'JetBrains Mono', monospace;
      }

      ::selection {
        background: var(--flame);
        color: var(--void);
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      /* ---------- NAV ---------- */
      .site-nav {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(10, 10, 12, 0.85);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--line);
        padding: 16px 0;
      }

      .brand {
        font-family: 'Anton', sans-serif;
        font-size: 22px;
        letter-spacing: 0.5px;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .brand .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--flame);
        box-shadow: 0 0 8px var(--flame);
      }

      .nav-links a {
        font-family: 'JetBrains Mono', monospace;
        font-size: 12.5px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--muted);
        margin-left: 28px;
        transition: color .2s ease;
      }

      .nav-links a:hover {
        color: var(--paper);
      }

      /* ---------- HERO ---------- */
      .hero {
        padding: 100px 0 70px;
        position: relative;
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(var(--line) 1px, transparent 1px),
          linear-gradient(90deg, var(--line) 1px, transparent 1px);
        background-size: 48px 48px;
        mask-image: linear-gradient(to bottom, black, transparent 85%);
        pointer-events: none;
        opacity: .5;
      }

      .eyebrow {
        font-family: 'JetBrains Mono', monospace;
        font-size: 12.5px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--acid);
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 22px;
      }

      .eyebrow .rec-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--flame);
        animation: blink 1.4s steps(1) infinite;
      }

      @keyframes blink {
        50% {
          opacity: .15;
        }
      }

      .hero h1 {
        font-family: 'Anton', sans-serif;
        font-size: clamp(52px, 10vw, 128px);
        line-height: 0.88;
        letter-spacing: -1px;
        text-transform: uppercase;
        margin: 0 0 28px;
        background: linear-gradient(180deg, var(--paper) 0%, var(--paper) 60%, #6b6870 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .hero h1 span {
        color: var(--flame);
        -webkit-text-fill-color: var(--flame);
      }

      .hero-sub {
        font-size: 18px;
        color: var(--muted);
        max-width: 520px;
        margin-bottom: 36px;
      }

      .hero-sub strong {
        color: var(--paper);
        font-weight: 600;
      }

      .btn-flame {
        background: var(--flame);
        color: var(--void);
        font-family: 'JetBrains Mono', monospace;
        font-weight: 600;
        font-size: 13px;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 14px 26px;
        border-radius: 2px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: transform .15s ease, box-shadow .15s ease;
      }

      .btn-flame:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(255, 74, 31, .35);
        color: var(--void);
      }

      .btn-ghost {
        font-family: 'JetBrains Mono', monospace;
        font-size: 13px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--muted);
        padding: 14px 8px;
        border-bottom: 1px solid var(--line);
        margin-left: 18px;
        transition: color .2s ease, border-color .2s ease;
      }

      .btn-ghost:hover {
        color: var(--paper);
        border-color: var(--paper);
      }

      /* ---------- FEATURED TAPE ---------- */
      .tape-frame {
        background: var(--panel);
        border: 1px solid var(--line);
        border-radius: 4px;
        padding: 14px;
        position: relative;
        margin-top: 20px;
      }

      .tape-frame .tape-topbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: 'JetBrains Mono', monospace;
        font-size: 11.5px;
        letter-spacing: 1px;
        color: var(--muted);
        padding: 0 6px 12px;
      }

      .tape-topbar .rec {
        color: var(--flame);
        display: flex;
        align-items: center;
        gap: 6px;
      }

      .tape-topbar .rec .rec-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--flame);
        animation: blink 1.4s steps(1) infinite;
      }

      .ratio-video {
        background: #000;
        border-radius: 2px;
        overflow: hidden;
        position: relative;
        aspect-ratio: 16/9;
      }

      .ratio-video iframe,
      .ratio-video video {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
        object-fit: contain;
        background: #000;
      }

      .quality-switch {
        display: flex;
        gap: 8px;
        margin-top: 12px;
        padding: 0 6px;
      }

      .quality-switch button {
        font-family: 'JetBrains Mono', monospace;
        font-size: 11.5px;
        letter-spacing: 1px;
        color: var(--muted);
        background: var(--panel-raised);
        border: 1px solid var(--line);
        padding: 6px 12px;
        border-radius: 2px;
        cursor: pointer;
        transition: color .15s ease, border-color .15s ease;
      }

      .quality-switch button:hover {
        color: var(--paper);
      }

      .quality-switch button.active {
        color: var(--void);
        background: var(--acid);
        border-color: var(--acid);
        font-weight: 600;
      }

      /* ---------- ABOUT STRIP ---------- */
      .about-strip {
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        padding: 64px 0;
      }

      .about-strip .tag {
        font-family: 'JetBrains Mono', monospace;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--flame);
        margin-bottom: 16px;
      }

      .about-strip p {
        font-size: 19px;
        color: #C8C6CE;
        max-width: 640px;
        margin: 0;
      }

      .about-strip p+p {
        margin-top: 16px;
      }

      /* ---------- ARCHIVE GRID ---------- */
      .archive-section {
        padding: 80px 0 60px;
      }

      .archive-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 40px;
        flex-wrap: wrap;
        gap: 16px;
      }

      .archive-head h2 {
        font-family: 'Anton', sans-serif;
        font-size: clamp(32px, 5vw, 46px);
        text-transform: uppercase;
        letter-spacing: -0.5px;
        margin: 0;
      }

      .archive-count {
        font-family: 'JetBrains Mono', monospace;
        font-size: 13px;
        color: var(--muted);
      }

      .tape-card {
        background: var(--panel);
        border: 1px solid var(--line);
        border-radius: 3px;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: border-color .2s ease, transform .2s ease;
      }

      .tape-card:hover {
        border-color: rgba(255, 74, 31, 0.4);
        transform: translateY(-3px);
      }

      .tape-thumb {
        position: relative;
        aspect-ratio: 16/9;
        background: #000 center/cover no-repeat;
        cursor: pointer;
        overflow: hidden;
      }

      .tape-thumb::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .75) 100%);
      }

      .tape-thumb .scan {
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0px, rgba(255, 255, 255, 0.05) 1px,
            transparent 1px, transparent 3px);
        opacity: 0;
        transition: opacity .2s ease;
        mix-blend-mode: overlay;
      }

      .tape-card:hover .scan {
        opacity: 1;
      }

      .tape-num {
        position: absolute;
        top: 10px;
        left: 10px;
        font-family: 'JetBrains Mono', monospace;
        font-size: 11px;
        letter-spacing: 1px;
        color: var(--paper);
        background: rgba(0, 0, 0, 0.55);
        padding: 3px 8px;
        border-radius: 2px;
        z-index: 2;
      }

      .tape-tc {
        position: absolute;
        bottom: 10px;
        right: 10px;
        font-family: 'JetBrains Mono', monospace;
        font-size: 11px;
        color: var(--acid);
        z-index: 2;
      }

      .play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: rgba(255, 74, 31, 0.92);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        opacity: 0;
        transition: opacity .2s ease, transform .2s ease;
      }

      .tape-card:hover .play-btn {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.06);
      }

      .play-btn svg {
        width: 16px;
        height: 16px;
        fill: var(--void);
        margin-left: 2px;
      }

      .tape-body {
        padding: 16px 18px 18px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }

      .tape-body h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 600;
        font-size: 17px;
        margin: 0 0 6px;
        color: var(--paper);
      }

      .tape-meta {
        font-family: 'JetBrains Mono', monospace;
        font-size: 11.5px;
        letter-spacing: .5px;
        color: var(--muted);
        text-transform: uppercase;
      }

      .placeholder-flag {
        display: inline-block;
        margin-top: 10px;
        font-family: 'JetBrains Mono', monospace;
        font-size: 10px;
        letter-spacing: 1px;
        color: var(--void);
        background: var(--acid);
        padding: 2px 6px;
        border-radius: 2px;
      }

      /* ---------- FOOTER ---------- */
      .site-footer {
        border-top: 1px solid var(--line);
        padding: 48px 0 40px;
        margin-top: 40px;
      }

      .site-footer .foot-brand {
        font-family: 'Anton', sans-serif;
        font-size: 20px;
        text-transform: uppercase;
      }

      .site-footer p {
        color: var(--muted);
        font-size: 14px;
        max-width: 460px;
      }

      .foot-links a {
        display: block;
        font-family: 'JetBrains Mono', monospace;
        font-size: 12.5px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 10px;
        transition: color .2s ease;
      }

      .foot-links a:hover {
        color: var(--flame);
      }

      @media (prefers-reduced-motion: reduce) {
        .rec-dot {
          animation: none !important;
        }

        .tape-card,
        .btn-flame {
          transition: none !important;
        }
      }

      @media (max-width:767px) {
        .nav-links {
          display: none;
        }

        .hero {
          padding: 64px 0 40px;
        }
      }