﻿:root {
    --red: #A02C2E;
    --red-deep: #6B1D1F;
    --red-bright: #C8363A;
    --red-hot: #FF5A2A;
    --black: #0A0606;
    --black-pure: #000000;
    --ink: #F4E8E6;
    --ink-dim: #8C7A78;
    --line: rgba(244, 232, 230, 0.08);

    --f-display: 'Bebas Neue', sans-serif;
    --f-body: 'Instrument Sans', sans-serif;
    --f-mono: 'JetBrains Mono', monospace;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
  }

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  body {
    background: var(--black);
    color: var(--ink);
    font-family: var(--f-body);
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    touch-action: pan-y;
    position: relative;
    width: 100%;
  }

  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
  }

  /* ---- DYNAMIC BACKGROUND ---- */
  .bg-layer {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
  }

  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    mix-blend-mode: screen;
    opacity: 0.45;
  }
  .orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200, 54, 58, 0.6), transparent 70%);
    top: -200px; left: -150px;
    animation: drift1 12s ease-in-out infinite;
  }
  .orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(160, 44, 46, 0.5), transparent 70%);
    bottom: -100px; right: -100px;
    animation: drift2 14s ease-in-out infinite;
  }
  .orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(107, 29, 31, 0.55), transparent 70%);
    top: 40%; left: 50%;
    animation: drift3 10s ease-in-out infinite;
  }
  @keyframes drift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(180px, 220px) scale(1.15); }
    66% { transform: translate(100px, -120px) scale(0.9); }
  }
  @keyframes drift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-220px, -180px) scale(1.2); }
  }
  @keyframes drift3 {
    0%, 100% { transform: translate(-50%, 0) scale(1); }
    25% { transform: translate(-30%, -120px) scale(1.1); }
    50% { transform: translate(-70%, 130px) scale(0.85); }
    75% { transform: translate(-40%, 60px) scale(1.05); }
  }

  .flash {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.12s ease-out, background 0.3s;
    mix-blend-mode: screen;
  }

  .lines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      115deg,
      transparent 0,
      transparent 80px,
      rgba(200, 54, 58, 0.025) 80px,
      rgba(200, 54, 58, 0.025) 81px,
      transparent 81px,
      transparent 200px
    );
    animation: linesDrift 40s linear infinite;
    mix-blend-mode: screen;
  }
  @keyframes linesDrift {
    from { transform: translate(0, 0); }
    to { transform: translate(-200px, -100px); }
  }

  /* Cursor spotlight (follows real cursor) */
  .cursor-glow {
    position: fixed;
    left: 0;
    top: 0;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200, 54, 58, 0.16), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    transform: translate3d(50vw, 50vh, 0) translate(-50%, -50%);
    mix-blend-mode: screen;
    transition: opacity 0.3s;
    will-change: transform;
  }

  /* ---- LEFT RAIL ---- */
  .side-wave {
    position: fixed;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 4px;
    z-index: 95;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 100px 0;
    pointer-events: none;
    align-items: center;
    justify-content: space-between;
  }
  .side-wave .seg {
    width: 2px;
    height: 4px;
    background: var(--ink);
    border-radius: 1px;
    opacity: 0.15;
    transition: height 0.5s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.5s ease, background 0.3s, width 0.3s;
  }
  /* When scrolling: bars expand to their per-segment target height — no pulse */
  body.scrolling .side-wave .seg {
    height: var(--expanded-h, 14px);
    opacity: 0.4;
  }
  body.scrolling .side-wave .seg.passed {
    background: var(--red-bright);
    opacity: 1;
    width: 3px;
  }
  /* Idle: all bars compressed, passed bars still tinted */
  .side-wave .seg.passed {
    background: var(--red-bright);
    opacity: 0.7;
  }

  /* ---- RIGHT RAIL (pushed behind content) ---- */
  .v-text {
    position: fixed;
    right: -32px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    z-index: 2;  /* behind content */
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--ink-dim);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0.6;
  }
  .v-text::after {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--red-bright);
    border-radius: 50%;
    margin-left: 12px;
    vertical-align: middle;
    animation: pulse 2s infinite;
  }

  /* ---- LOGO ---- */
  .logo-mark {
    position: absolute;
    top: 24px;
    left: 60px;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, top 0.3s ease;
  }
  .rec-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--red-bright);
    box-shadow: 0 0 8px rgba(200, 54, 58, 0.6);
    animation: recPulse 2.4s ease-in-out infinite;
    flex-shrink: 0;
  }
  @keyframes recPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(200, 54, 58, 0.5); }
    50%      { opacity: 0.5; box-shadow: 0 0 0 8px rgba(200, 54, 58, 0); }
  }
  .logo-mark .logo-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .logo-mark .logo-wordmark {
    /* small static version of the sliced HOTLINE logo */
    height: 18px;
    width: auto;
    display: block;
  }
  .logo-mark .logo-sub {
    font-family: var(--f-mono);
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-dim);
    line-height: 1;
  }

  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 28px 48px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
    pointer-events: none;
  }
  nav.scrolled {
    background: rgba(10, 6, 6, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    padding: 18px 48px;
  }
  nav .links {
    display: flex;
    gap: 32px;
    mix-blend-mode: difference;
    color: var(--ink);
    pointer-events: auto;
  }
  .menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: rgba(10, 6, 6, 0.74);
    color: var(--ink);
    cursor: pointer;
    pointer-events: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
  }
  .menu-toggle span {
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  nav .links a {
    color: inherit;
    text-decoration: none;
    position: relative;
    padding: 4px 0;
  }
  nav .links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--red-bright);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  }
  nav .links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .logo-mark.in-nav {
    position: fixed;
    top: 21px;
    left: 60px;
    z-index: 101;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(0.8); }
  }

  section {
    position: relative;
    z-index: 5;
    padding: 0 48px;
  }

  /* ---- HERO ---- */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
  }

  .hero-meta {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-bottom: 56px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
    flex-shrink: 0;
  }
  .hero-meta > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .hero-meta > span::before {
    content: '';
    width: 4px; height: 4px;
    background: var(--red-bright);
    flex-shrink: 0;
  }
  /* Glitch — using text-shadow only, no clip-path bands */
  .glitch {
    position: relative;
    display: inline-block;
    transition: text-shadow 0.05s, transform 0.05s;
  }
  .glitch.glitching {
    text-shadow:
      -2px 0 0 var(--red-bright),
       2px 0 0 #4dd0e1;
    transform: translateX(1px);
  }

  /* ---- HERO LOGO with slice animation ---- */
  .hero-logo-wrap {
    width: 100%;
    max-width: 880px;
    margin-bottom: 16px;
    position: relative;
    flex-shrink: 0;
  }
  .hero-logo {
    position: relative;
    display: block;
    width: 100%;
    /* aspect ratio of logo: 916/146 ≈ 6.27 */
    aspect-ratio: 916 / 146;
  }
  .hero-logo .half {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
  }
  .hero-logo .half img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* Top half starts overlapping bottom (closed), then slides up */
  .hero-logo .half-top {
    top: 0;
    height: 50%;
    transform: translateY(8%);
    animation: sliceOpenTop 1.4s cubic-bezier(0.7, 0, 0.3, 1) 0.4s forwards;
  }
  .hero-logo .half-bot {
    bottom: 0;
    height: 50%;
    transform: translateY(-8%);
    animation: sliceOpenBot 1.4s cubic-bezier(0.7, 0, 0.3, 1) 0.4s forwards;
  }
  .hero-logo .half-top img {
    /* anchor image to top */
    position: absolute;
    top: 0; left: 0;
    /* image is full logo at full width; this half-element clips at 50% */
    width: 100%;
    height: 200%;  /* image is twice the half's height = full logo */
  }
  .hero-logo .half-bot img {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 200%;
  }
  @keyframes sliceOpenTop {
    0%   { transform: translateY(8%); }
    100% { transform: translateY(0); }
  }
  @keyframes sliceOpenBot {
    0%   { transform: translateY(-8%); }
    100% { transform: translateY(0); }
  }

  /* The bright slice that scans through */
  .slice-blade {
    position: absolute;
    left: -10%;
    top: 50%;
    width: 120%;
    height: 6px;
    background: linear-gradient(90deg, transparent, #ffffff 30%, #ffffff 70%, transparent);
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.9), 0 0 60px rgba(255, 90, 42, 0.6);
    animation: bladeSweep 1.4s cubic-bezier(0.7, 0, 0.3, 1) 0.4s forwards;
    z-index: 5;
    pointer-events: none;
  }
  @keyframes bladeSweep {
    0%   { transform: translateY(-50%) scaleX(0); transform-origin: left center; opacity: 1; }
    50%  { transform: translateY(-50%) scaleX(1); transform-origin: left center; opacity: 1; }
    51%  { transform: translateY(-50%) scaleX(1); transform-origin: right center; }
    100% { transform: translateY(-50%) scaleX(0); transform-origin: right center; opacity: 0; }
  }

  .hero-divider {
    width: 0;
    height: 1.5px;
    background: var(--red-bright);
    margin-bottom: 20px;
    animation: divide 1.2s cubic-bezier(0.7, 0, 0.3, 1) 1.7s forwards;
    flex-shrink: 0;
  }
  @keyframes divide { to { width: min(485px, 80vw); } }

  .hero-tagline-group {
    margin-top: 34px;
    max-width: 580px;
    flex-shrink: 0;
  }

  .hero-tagline {
    font-size: 16px;
    color: var(--ink-dim);
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp 1s ease 1.9s forwards;
  }
  .hero-tagline strong { color: var(--ink); font-weight: 500; }

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

  .waveform {
    margin-top: 80px;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 3px;
    opacity: 0;
    animation: fadeUp 1.2s ease 2.1s forwards;
    max-width: 540px;
    flex-shrink: 0;
  }
  .waveform .bar {
    flex: 1;
    background: var(--red-bright);
    border-radius: 1px;
    animation: waveStd 1.4s ease-in-out infinite;
    min-height: 2px;
  }
  @keyframes waveStd {
    0%, 100% { height: 8%;  opacity: 0.4; }
    50%      { height: 95%; opacity: 1; }
  }

  .scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 48px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-dim);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 1s ease 2.4s forwards;
  }
  .scroll-cue::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--ink-dim);
    animation: scrollLine 2s infinite;
  }
  @keyframes scrollLine {
    0%, 100% { transform: scaleX(0.3); transform-origin: left; opacity: 0.4; }
    50%      { transform: scaleX(1); opacity: 1; }
  }

  /* ---- SLOGAN ---- */
  .slogan {
    min-height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .slogan-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1100px;
    transition: opacity 0.8s, transform 1s;
  }
  .slogan.revealed .slogan-content {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
  }
  .slogan-label {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red-bright);
    margin-bottom: 32px;
  }
  .slogan-text {
    font-family: var(--f-display);
    font-size: clamp(48px, 7vw, 110px);
    line-height: 1;
    letter-spacing: -0.01em;
  }
  .slogan-text .em { color: var(--red-bright); font-style: italic; }

  .crew-photo {
    position: absolute;
    inset: 0;
    background-image: url('../assets/crew.jpg');
    background-size: cover;
    background-position: center top;
    opacity: 0;
    transform: scale(1.15);
    transition: opacity 1.4s ease, transform 2s ease;
    z-index: 1;
  }
  .crew-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(10, 6, 6, 0.4), rgba(10, 6, 6, 0.65) 50%, var(--black)),
      linear-gradient(to right, rgba(10, 6, 6, 0.5), transparent 30%, transparent 70%, rgba(10, 6, 6, 0.5));
  }
  .slogan.revealed .crew-photo {
    opacity: 1;
    transform: scale(1);
  }

  .crew-tag {
    position: absolute;
    bottom: 60px;
    left: 48px;
    z-index: 3;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-dim);
    opacity: 0;
    transition: opacity 1s ease 0.8s;
  }
  .slogan.revealed .crew-tag { opacity: 1; }
  .crew-tag span { color: var(--ink); }

  /* ---- ROSTER ---- */
  .roster { padding-top: 160px; padding-bottom: 160px; }

  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 100px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }
  .section-num {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--ink-dim);
  }
  .section-title {
    font-family: var(--f-display);
    font-size: clamp(40px, 5vw, 80px);
    line-height: 1;
    letter-spacing: -0.01em;
    font-weight: 400;
  }
  .section-title em {
    color: var(--red-bright);
    font-style: italic;
  }

  .dj {
    display: grid;
    grid-template-columns: 320px 1fr 1.4fr;
    gap: 60px;
    padding: 80px 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
  }
  .dj.in-view { opacity: 1; transform: translateY(0); }
  .dj:last-child { border-bottom: none; }

  /* ABRISH: mirror — portrait on RIGHT side */
  .dj.mirror {
    grid-template-columns: 1.4fr 1fr 320px;
  }
  .dj.mirror .dj-bio-col { order: 1; }
  .dj.mirror .dj-text-col { order: 2; text-align: right; }
  .dj.mirror .dj-portrait { order: 3; }
  .dj.mirror .dj-expand { order: 4; } /* keep expand below the row content */
  .dj.mirror .dj-genre {
    padding-left: 0;
    padding-right: 16px;
    border-left: none;
    border-right: 2px solid var(--red);
  }
  .dj.mirror:hover .dj-name {
    transform: translateX(-8px);
  }

  .dj-portrait {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    background: var(--black-pure);
  }
  .dj-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3) contrast(1.1) brightness(0.95);
    transition: filter 0.6s ease, transform 0.6s ease;
  }
  .dj:hover .dj-portrait img {
    filter: grayscale(0) contrast(1.1) brightness(1);
    transform: scale(1.05);
  }
  .dj-portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(10, 6, 6, 0.4));
    pointer-events: none;
  }

  .dj-text-col { display: flex; flex-direction: column; }
  .dj-index {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--ink-dim);
    margin-bottom: 16px;
  }
  .dj-name {
    font-family: var(--f-display);
    font-size: clamp(64px, 8vw, 132px);
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--ink);
    transition: color 0.4s, transform 0.4s;
    font-weight: 400;
  }
  .dj:hover .dj-name {
    color: var(--red-bright);
    transform: translateX(8px);
  }
  .dj-genre {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red-bright);
    margin-top: 20px;
    padding-left: 16px;
    border-left: 2px solid var(--red);
  }

  .dj-bio {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-dim);
    max-width: 560px;
  }
  .dj-bio::first-letter {
    color: var(--ink);
    font-size: 22px;
    font-weight: 500;
  }
  .dj.mirror .dj-bio { margin-left: auto; }

  /* DJ waveforms — paused by default, run only on hover */
  .dj-wave {
    margin-top: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    gap: 2px;
    max-width: 240px;
  }
  .dj.mirror .dj-wave { margin-left: auto; }
  .dj-wave .b {
    flex: 1;
    background: var(--red);
    border-radius: 1px;
    opacity: 0.35;
    min-height: 2px;
    height: 8%;
    animation-play-state: paused;
  }
  .dj:hover .dj-wave .b {
    animation-play-state: running;
    opacity: 0.8;
  }

  /* KOLO heartbeat */
  .wave-heartbeat .b {
    animation: heartbeat 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }
  @keyframes heartbeat {
    0%   { height: 8%; }
    8%   { height: 95%; }
    16%  { height: 20%; }
    24%  { height: 75%; }
    34%  { height: 8%; }
    100% { height: 8%; }
  }

  /* ABRISH ripple */
  .wave-ripple .b {
    animation: ripple 1.8s ease-in-out infinite;
  }
  @keyframes ripple {
    0%, 100% { height: 10%; opacity: 0.4; }
    50%      { height: 90%; opacity: 1; }
  }

  /* MYLØ breathing */
  .wave-breathing .b {
    animation: breathing 3.2s ease-in-out infinite;
  }
  @keyframes breathing {
    0%, 100% { height: 14%; opacity: 0.5; }
    50%      { height: 88%; opacity: 1; }
  }

  /* ===== DJ EXPAND PANEL ===== */
  .dj { cursor: pointer; }
  .dj:focus-visible,
  .dj-btn:focus-visible,
  .next-cta:focus-visible,
  .video-play:focus-visible,
  .video-fallback:focus-visible,
  nav a:focus-visible,
  .menu-toggle:focus-visible {
    outline: 2px solid var(--red-bright);
    outline-offset: 4px;
  }
  .dj-toggle {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    margin-top: 22px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-dim);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none; /* clicks fall through to the dj */
    transition: color 0.3s;
  }
  .dj.mirror .dj-toggle { justify-content: flex-end; }
  .dj:hover .dj-toggle { color: var(--red-bright); }
  .dj-toggle .sign {
    display: inline-block;
    width: 14px; height: 14px;
    position: relative;
  }
  .dj-toggle .sign::before,
  .dj-toggle .sign::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .dj-toggle .sign::before {
    top: 50%; left: 0;
    width: 14px; height: 1px;
    transform: translateY(-50%);
  }
  .dj-toggle .sign::after {
    left: 50%; top: 0;
    width: 1px; height: 14px;
    transform: translateX(-50%);
  }
  .dj.is-open .dj-toggle .sign::after { transform: translateX(-50%) rotate(90deg); }

  .dj-expand {
    grid-column: 1 / -1;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.7, 0, 0.3, 1),
                opacity 0.4s ease,
                margin-top 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    margin-top: 0;
  }
  .dj.is-open .dj-expand {
    max-height: 800px;
    opacity: 1;
    margin-top: 48px;
  }

  .dj-expand-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
  }

  .dj-block-label {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-bottom: 16px;
  }
  .dj-extra {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink);
  }
  .dj-tags {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .dj-tag {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 10px 14px;
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
  }
  .dj-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--red-bright);
    border-radius: 50%;
  }
  .dj-tag:hover {
    border-color: var(--red-bright);
    background: rgba(200, 54, 58, 0.05);
  }
  .dj-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .dj-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border: 1px solid var(--line);
    color: var(--ink);
    text-decoration: none;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: border-color 0.3s, color 0.3s, padding 0.3s;
    position: relative;
    overflow: hidden;
  }
  .dj-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red-bright);
    transform: translateX(-101%);
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: -1;
  }
  .dj-btn:hover {
    border-color: var(--red-bright);
    padding-left: 22px;
  }
  .dj-btn:hover::before { transform: translateX(0); }
  .dj-btn .arrow { transition: transform 0.3s; }
  .dj-btn:hover .arrow { transform: translateX(4px); }

  /* ===== MAGNETIC CTA HELPER ===== */
  .magnetic {
    display: inline-flex;
    transition: transform 0.25s cubic-bezier(0.7, 0, 0.3, 1);
    will-change: transform;
  }

  /* ===== HERO META TICKER ===== */
  .ticker {
    display: inline-block;
    min-width: 4ch;
    font-variant-numeric: tabular-nums;
  }

  /* ---- LISTEN ---- */
  .listen { padding-top: 120px; padding-bottom: 120px; }
  .listen-frame {
    position: relative;
    background: var(--black-pure);
    border: 1px solid var(--line);
    padding: 32px;
  }
  .listen-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-dim);
    flex-wrap: wrap;
    gap: 16px;
  }
  .listen-meta .live {
    display: flex; align-items: center; gap: 10px;
    color: var(--red-bright);
  }
  .listen-meta .live::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--red-bright);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
  }
  .video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
  }
  .video-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
    display: block;
  }
  /* ---- Video click-to-play poster ---- */
  .video-poster {
    position: absolute;
    inset: 0;
    overflow: hidden;
    cursor: pointer;
  }
  .video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.05);
    transition: filter 0.4s ease, transform 0.6s ease;
  }
  .video-poster:hover .video-thumb {
    filter: brightness(0.75) contrast(1.05);
    transform: scale(1.02);
  }
  .video-poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(10, 6, 6, 0.6));
    pointer-events: none;
  }
  .video-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    z-index: 2;
    transition: transform 0.3s ease;
  }
  .video-poster:hover .video-play {
    transform: translate(-50%, -50%) scale(1.05);
    color: var(--red-bright);
  }
  .video-play svg {
    transition: filter 0.3s;
    filter: drop-shadow(0 0 12px rgba(200, 54, 58, 0.4));
  }
  .video-poster:hover .video-play svg {
    filter: drop-shadow(0 0 20px rgba(200, 54, 58, 0.8));
  }
  .video-play-label {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: inherit;
  }
  .video-fallback {
    position: absolute;
    bottom: 20px;
    right: 24px;
    z-index: 3;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-dim);
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid rgba(244, 232, 230, 0.15);
    background: rgba(10, 6, 6, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: color 0.3s, border-color 0.3s, background 0.3s;
  }
  .video-fallback:hover {
    color: var(--ink);
    border-color: var(--ink);
    background: rgba(10, 6, 6, 0.7);
  }

  /* ---- NEXT ---- */
  .next {
    padding-top: 160px;
    padding-bottom: 160px;
    text-align: center;
    position: relative;
  }
  .next-section-num {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-dim);
    text-align: left;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 92px;
  }
  .next-label {
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--red-bright);
    margin-bottom: 40px;
  }
  .next-date {
    font-family: var(--f-display);
    font-size: clamp(80px, 14vw, 220px);
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    font-weight: 400;
  }
  .next-date em { color: var(--red-bright); font-style: italic; }
  .next-venue {
    font-family: var(--f-mono);
    font-size: 14px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 64px;
  }
  .next-venue span { color: var(--ink-dim); margin: 0 16px; }

  .next-wave {
    margin: 0 auto 64px;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 3px;
    max-width: 400px;
    justify-content: center;
  }
  .next-wave .b {
    width: 3px;
    background: var(--red-bright);
    border-radius: 1px;
    animation: waveStd 2s ease-in-out infinite;
    min-height: 2px;
    opacity: 0.7;
  }

  .next-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    border: 1px solid var(--ink);
    color: var(--ink);
    text-decoration: none;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .next-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red-bright);
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: -1;
  }
  .next-cta:hover { border-color: var(--red-bright); }
  .next-cta:hover::before { transform: translateX(0); }
  .next-cta .arrow { transition: transform 0.3s; }
  .next-cta:hover .arrow { transform: translateX(4px); }

  /* ---- ACCESS (private transmission) ---- */
  .access {
    padding-top: 180px;
    padding-bottom: 180px;
    position: relative;
    overflow: hidden;
  }
  .access-num {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-dim);
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 110px;
  }

  .access-stage {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  /* Coordinates withheld — redacted mono line */
  .access-coords {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-bottom: 44px;
  }
  .access-coords .sep { color: var(--red-bright); opacity: 0.6; }

  /* The statement — display scale, gives the section weight */
  .access-headline {
    font-family: var(--f-display);
    font-size: clamp(44px, 6vw, 92px);
    line-height: 0.98;
    letter-spacing: -0.01em;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 40px;
  }
  .access-headline em {
    color: var(--red-bright);
    font-style: italic;
  }

  .access-sub {
    font-family: var(--f-mono);
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-bottom: 72px;
  }

  /* Status line — a quiet divider, no numbers */
  .access-capacity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    max-width: 440px;
    margin: 0 auto 64px;
  }
  .cap-line {
    flex: 1;
    height: 1px;
    background: var(--line);
  }
  .cap-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-dim);
    white-space: nowrap;
  }
  .cap-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red-bright);
    box-shadow: 0 0 8px rgba(200, 54, 58, 0.6);
    animation: recPulse 2.4s ease-in-out infinite;
    flex-shrink: 0;
  }

  /* Sealed trigger — the only visible control until dialed in */
  .access-seal {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 14px 48px;
    font-family: var(--f-mono);
    font-size: 13px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--ink);
    position: relative;
    transition: color 0.4s ease, opacity 0.5s ease, transform 0.5s ease;
  }
  /* Dashes: absolutely positioned, grow outward from each side */
  .access-seal::before,
  .access-seal::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    width: 0;
    background: var(--red-bright);
    transition: width 0.45s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .access-seal::before { right: 100%; margin-right: -44px; }
  .access-seal::after  { left:  100%; margin-left:  -44px; }
  .access-seal:hover { color: var(--red-bright); }
  .access-seal:hover::before,
  .access-seal:hover::after { width: 40px; }
  /* Once dialed in, the trigger recedes */
  .access.dialed .access-seal {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
  }

  /* The form — sealed by default, unseals on dial-in */
  .access-form {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.7, 0, 0.3, 1),
                opacity 0.5s ease,
                margin-top 0.7s cubic-bezier(0.7, 0, 0.3, 1);
    margin-top: 0;
  }
  .access.dialed .access-form {
    max-height: 640px;
    opacity: 1;
    margin-top: 8px;
  }
  .access-form-inner {
    max-width: 440px;
    margin: 0 auto;
    padding: 44px;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }
  .access-form .field { display: flex; flex-direction: column; }
  .field-label {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-bottom: 14px;
  }
  .field-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: 16px;
    padding: 12px 2px;
    transition: border-color 0.3s ease;
  }
  .field-input::placeholder { color: var(--ink-dim); opacity: 0.6; }
  .field-input:focus { outline: none; border-bottom-color: var(--red-bright); }
  .field-input:focus::placeholder { opacity: 0.35; }
  .access-form .field.invalid .field-input { border-bottom-color: var(--red-bright); }
  .field-error {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red-bright);
    min-height: 14px;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .access-form .field.invalid .field-error { opacity: 1; }

  .privacy-field { gap: 10px; }
  .privacy-check {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 14px;
    align-items: start;
    color: var(--ink-dim);
    cursor: pointer;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    line-height: 1.8;
    text-transform: uppercase;
  }
  .privacy-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .privacy-box {
    width: 18px;
    height: 18px;
    border: 1px solid var(--line);
    margin-top: 1px;
    position: relative;
    transition: border-color 0.3s ease, background 0.3s ease;
  }
  .privacy-box::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: var(--red-bright);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .privacy-check input:checked + .privacy-box {
    border-color: var(--red-bright);
  }
  .privacy-check input:checked + .privacy-box::after {
    opacity: 1;
    transform: scale(1);
  }
  .privacy-check input:focus-visible + .privacy-box {
    outline: 1px solid var(--red-bright);
    outline-offset: 4px;
  }
  .privacy-check a {
    color: var(--ink);
    text-underline-offset: 4px;
    transition: color 0.3s ease;
  }
  .privacy-check a:hover { color: var(--red-bright); }
  .access-form .field.invalid .privacy-box { border-color: var(--red-bright); }

  /* Submit — same sweep mechanic as .next-cta */
  .access-submit {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 4px;
    padding: 20px 28px;
    border: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: border-color 0.4s;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .access-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red-bright);
    transform: translateX(-101%);
    transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    z-index: -1;
  }
  .access-submit:hover { border-color: var(--red-bright); }
  .access-submit:hover::before { transform: translateX(0); }
  .access-submit .arrow { transition: transform 0.3s; }
  .access-submit:hover .arrow { transform: translateX(4px); }
  .access-submit:disabled { cursor: default; opacity: 0.55; }
  .access-submit:disabled:hover { border-color: var(--ink); }
  .access-submit:disabled:hover::before { transform: translateX(-101%); }

  .access-status {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-dim);
    min-height: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .access-status.show { opacity: 1; }
  .access-status.ok,
  .access-status.err { color: var(--red-bright); }

  /* Confirmed state — the section seals shut behind a sigil */
  .access.confirmed .access-capacity,
  .access.confirmed .access-form { display: none; }
  .access-confirmed {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
  }
  .access.confirmed .access-confirmed { display: flex; }
  .confirmed-mark {
    font-family: var(--f-display);
    font-size: clamp(40px, 5vw, 64px);
    color: var(--red-bright);
    line-height: 1;
  }
  .confirmed-note {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink-dim);
    line-height: 2;
  }

  /* ---- PRIVACY ---- */
  .privacy {
    padding: 110px 48px;
    border-top: 1px solid var(--line);
    position: relative;
    z-index: 5;
  }
  .privacy-inner {
    max-width: 1180px;
    margin: 0 auto;
  }
  .privacy-num {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-bottom: 56px;
  }
  .privacy-title span {
    color: var(--red-bright);
    font-style: italic;
  }
  .privacy-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
    gap: 64px;
  }
  .privacy-title {
    font-family: var(--f-display);
    font-size: clamp(48px, 7vw, 108px);
    font-weight: 400;
    line-height: 0.95;
    margin: 0 0 24px;
    text-transform: uppercase;
  }
  .privacy-intro,
  .privacy-copy {
    color: var(--ink-dim);
    font-size: 15px;
    line-height: 1.8;
  }
  .privacy-intro { max-width: 420px; }
  .privacy-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .privacy-copy p { margin: 0; }
  .privacy-copy h2 {
    color: var(--ink);
    font-family: var(--f-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 1.6;
    margin: 26px 0 0;
    text-transform: uppercase;
  }
  .privacy-copy h2:first-child { margin-top: 0; }
  .privacy-copy ul {
    margin: 0;
    padding-left: 20px;
  }
  .privacy-copy li {
    margin: 8px 0;
    padding-left: 4px;
  }
  .privacy-copy strong {
    color: var(--ink);
    font-weight: 500;
  }
  .privacy-copy a {
    color: var(--ink);
    text-underline-offset: 4px;
    transition: color 0.3s ease;
  }
  .privacy-copy a:hover { color: var(--red-bright); }
  .privacy-page {
    min-height: 100vh;
    overflow-x: hidden;
  }
  .privacy-logo {
    mix-blend-mode: normal;
  }
  .privacy-standalone {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
  }
  .privacy-back {
    display: inline-flex;
    margin-top: 34px;
    color: var(--ink);
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease, padding 0.3s ease;
  }
  .privacy-back:hover {
    color: var(--red-bright);
    padding-left: 12px;
  }

  /* ---- FOOTER ---- */
  footer {
    border-top: 1px solid var(--line);
    padding: 80px 48px 48px;
    position: relative;
    z-index: 5;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
  }
  .foot-block-title {
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-dim);
    margin-bottom: 20px;
  }
  .foot-tagline {
    font-family: var(--f-display);
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -0.01em;
    max-width: 500px;
    font-weight: 400;
  }
  .foot-tagline em { color: var(--red-bright); font-style: italic; }
  .foot-links { display: flex; flex-direction: column; gap: 14px; }
  .foot-links a {
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s, padding 0.3s;
    position: relative;
    width: fit-content;
  }
  .foot-links a:hover {
    color: var(--red-bright);
    padding-left: 16px;
  }
  .foot-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .foot-links a:hover::before { opacity: 1; }
  .foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ink-dim);
  }
  .foot-bottom a {
    color: var(--ink-dim);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .foot-bottom a:hover { color: var(--red-bright); }

  @media (max-width: 768px) {
    .cursor-glow { display: none; }
    .side-wave, .v-text { display: none; }
    .orb { opacity: 0.25; }
    section, nav, footer { padding-left: 24px; padding-right: 24px; }
    .logo-mark,
    .logo-mark.in-nav {
      position: fixed;
      top: 29px;
      left: 24px;
      z-index: 101;
    }
    nav {
      top: 0;
      padding: 16px 24px;
      align-items: flex-start;
      background: rgba(10, 6, 6, 0.82);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }
    nav.scrolled { padding: 16px 24px; }
    .menu-toggle { display: flex; margin-left: auto; }
    nav .links {
      position: absolute;
      top: 68px;
      right: 24px;
      display: flex;
      flex-direction: column;
      gap: 0;
      min-width: 190px;
      padding: 10px;
      background: rgba(10, 6, 6, 0.96);
      border: 1px solid var(--line);
      mix-blend-mode: normal;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }
    nav.is-open .links {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    nav .links a {
      padding: 14px 12px;
      min-height: 44px;
    }
    .hero {
      min-height: 100vh;
      min-height: 100svh;
      height: auto;
      justify-content: flex-start;
      padding-top: 112px;
      padding-bottom: 88px;
    }
    .hero-meta {
      gap: 14px;
      font-size: 10px;
      letter-spacing: 0.16em;
      margin-bottom: 42px;
    }
    .hero-logo-wrap {
      width: 100%;
      max-width: min(620px, calc(100vw - 48px));
    }
    .hero-logo { height: auto; }
    .hero-divider { margin-bottom: 22px; }
    .hero-tagline-group { margin-top: 32px; }
    .hero-tagline { font-size: 16px; }
    .waveform {
      width: 100%;
      height: 44px;
      margin-top: 54px;
    }
    .scroll-cue {
      position: static;
      margin-top: 34px;
      left: auto;
    }
    .dj, .dj.mirror {
      grid-template-columns: 1fr;
      gap: 28px;
      padding: 52px 0;
    }
    .dj.mirror .dj-portrait { order: 1; }
    .dj.mirror .dj-text-col { order: 2; text-align: left; }
    .dj.mirror .dj-bio-col { order: 3; }
    .dj-expand { order: 4; }
    .dj.mirror .dj-bio { margin-left: 0; }
    .dj.mirror .dj-wave { margin-left: 0; }
    .dj.mirror .dj-toggle { justify-content: flex-start; }
    .dj.mirror .dj-genre {
      padding-left: 16px; padding-right: 0;
      border-left: 2px solid var(--red); border-right: none;
    }
    .dj-portrait { max-width: 280px; width: 100%; }
    .dj-name { font-size: clamp(58px, 22vw, 96px); }
    .dj-bio { font-size: 16px; }
    .dj-toggle {
      margin-top: 8px;
      min-height: 44px;
    }
    .dj.mirror .dj-toggle { left: auto; right: auto; }
    .dj-expand-inner {
      grid-template-columns: 1fr;
      gap: 32px;
      padding-top: 28px;
    }
    .dj.is-open .dj-expand { max-height: 1400px; margin-top: 32px; }
    .section-header {
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
      margin-bottom: 60px;
    }
    .listen-frame { padding: 16px; }
    .listen-meta { font-size: 9px; gap: 12px; }
    .next { min-height: 80vh; padding-top: 90px; padding-bottom: 90px; }
    .next-section-num { margin-bottom: 58px; }
    .next-date { font-size: clamp(84px, 31vw, 150px); }
    .next-venue {
      font-size: clamp(14px, 4vw, 20px);
      letter-spacing: 0.24em;
      line-height: 1.5;
    }
    .next-cta, .dj-btn { min-height: 44px; }
    .access { padding-top: 96px; padding-bottom: 96px; }
    .access-num { margin-bottom: 64px; }
    .access-sub { margin-bottom: 56px; }
    .access-capacity { margin-bottom: 48px; }
    .access-form-inner { padding: 28px; gap: 26px; }
    .access-submit { min-height: 44px; }
    .access-seal { min-height: 44px; }
    .privacy { padding: 88px 24px; }
    .privacy-num { margin-bottom: 42px; }
    .privacy-grid { grid-template-columns: 1fr; gap: 36px; }
    .privacy-standalone {
      align-items: flex-start;
      padding-top: 120px;
    }
    .foot-grid { grid-template-columns: 1fr; gap: 40px; }
    .foot-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .slogan {
      min-height: 0;
      aspect-ratio: 4 / 3;
      padding-top: 0;
      padding-bottom: 0;
    }
    .crew-photo {
      inset: 0 -24px;
      background-image: url('../assets/crew.jpg');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
    }
  }

  @media (max-width: 430px) {
    section, nav, footer { padding-left: 18px; padding-right: 18px; }
    .logo-mark { left: 18px; }
    .logo-mark .logo-wordmark { width: 112px; }
    nav,
    nav.scrolled { padding: 16px 18px; }
    nav .links { right: 18px; left: 18px; }
    .hero-meta {
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 34px;
    }
    .hero {
      padding-top: 104px;
      padding-bottom: 84px;
    }
    .hero-logo-wrap { max-width: calc(100vw - 36px); }
    .crew-photo { inset: 0 -18px; }
    .hero-tagline-group { margin-top: 30px; }
    .slogan-label,
    .section-num,
    .listen-meta,
    .foot-bottom {
      letter-spacing: 0.16em;
    }
    .slogan-text { font-size: clamp(46px, 16vw, 70px); }
    .crew-tag { left: 18px; bottom: 28px; right: 18px; line-height: 1.8; }
    .roster { padding-top: 90px; padding-bottom: 90px; }
    .section-header { margin-bottom: 36px; }
    .dj, .dj.mirror { padding: 44px 0; }
    .dj-actions { flex-direction: column; align-items: stretch; }
    .dj-btn { justify-content: space-between; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      scroll-behavior: auto !important;
      transition-duration: 0.001ms !important;
    }
    .orb,
    .lines,
    .cursor-glow,
    .flash {
      display: none;
    }
    .slogan .crew-photo,
    .slogan .slogan-content,
    .dj {
      opacity: 1;
      transform: none;
    }
  }
