/* ===== MOONARK — minimal & cinematic ===== */
:root {
  --bg: #050505;
  --fg: #ECE8E1;
  --muted: #6a6a6a;
  --accent: #C5252C;
  --line: rgba(236, 232, 225, 0.12);
  --line-strong: rgba(236, 232, 225, 0.28);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: #050505;
  color: var(--fg);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  height: 100%;
  width: 100%;
}
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }

/* film grain overlay */
.grain::before {
  content: "";
  position: fixed; inset: -50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.92  0 0 0 0 0.91  0 0 0 0 0.88  0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  background-size: 240px 240px;
  opacity: 0.10;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1000;
  animation: grainShift 1s steps(8) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); }
  25% { transform: translate(-3%, 2%); }
  50% { transform: translate(2%, -3%); }
  75% { transform: translate(-2%, -2%); }
  100% { transform: translate(0,0); }
}

/* ===== Type tokens ===== */
.display {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.85;
  text-transform: uppercase;
}
.italic-serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  letter-spacing: -0.02em;
}
.mono { font-family: 'JetBrains Mono', monospace; }
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== Stage / View routing ===== */
.stage {
  position: fixed; inset: 0;
  overflow: hidden;
  background: #050505;
}
.view {
  position: absolute; inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}
.view.active {
  opacity: 1;
  pointer-events: auto;
}

/* ===== Top frame ===== */
.top-frame {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted);
  pointer-events: none;
}
.top-frame > * { pointer-events: auto; }
.brand-mark {
  display: flex; align-items: center; gap: 12px;
  color: var(--fg);
  letter-spacing: 0.32em;
  font-size: 11px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.brand-mark:hover { opacity: 0.7; }
.brand-mark img {
  width: 30px; height: 30px; display: block;
  border-radius: 4px;
}
.tx-status {
  display: inline-flex; align-items: center; gap: 8px;
}
.tx-dot {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ===== Bottom nav ===== */
.bottom-nav {
  position: fixed; left: 50%; bottom: 28px;
  transform: translate(-50%, 30px);
  z-index: 70;
  display: flex; gap: 0;
  padding: 6px;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.2,.7,.1,1);
}
.bottom-nav.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.bottom-nav button {
  background: transparent;
  border: none;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 999px;
  transition: color 0.2s, background 0.3s;
}
.bottom-nav button:hover { color: var(--fg); }
.bottom-nav button.active {
  color: var(--bg);
  background: var(--fg);
}

/* ===== HERO ===== */
.hero {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.2px 1.2px at 12% 22%, #ECE8E1 50%, transparent 100%),
    radial-gradient(1px 1px at 82% 33%, #ECE8E1 50%, transparent 100%),
    radial-gradient(1px 1px at 27% 71%, #ECE8E1 50%, transparent 100%),
    radial-gradient(1.2px 1.2px at 64% 82%, #ECE8E1 50%, transparent 100%),
    radial-gradient(1px 1px at 47% 14%, #ECE8E1 50%, transparent 100%),
    radial-gradient(1px 1px at 92% 60%, #ECE8E1 50%, transparent 100%),
    radial-gradient(1px 1px at 17% 53%, #ECE8E1 50%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 47%, #ECE8E1 50%, transparent 100%),
    radial-gradient(1px 1px at 38% 92%, #ECE8E1 50%, transparent 100%),
    radial-gradient(1px 1px at 77% 12%, #ECE8E1 50%, transparent 100%),
    radial-gradient(1px 1px at 5% 80%, #ECE8E1 50%, transparent 100%),
    radial-gradient(1px 1px at 95% 88%, #ECE8E1 50%, transparent 100%);
  opacity: 0.55;
}
/* ===== HERO photo home ===== */
.hero-photo { background: #000; }
.hero-video-wrap {
  position: absolute; inset: 0;
  background: #000;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-soundhint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(236,232,225,0.85);
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(236,232,225,0.18);
  padding: 8px 16px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  animation: soundHintPulse 1.8s ease-in-out infinite;
}
@keyframes soundHintPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
.hero-photo-layer {
  position: absolute;
  inset: -2%;
  background-size: cover;
  background-position: center 46%;
  background-repeat: no-repeat;
  will-change: transform, mask-image;
  transform-origin: center center;
}
.hero-photo-city, .hero-grass {
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  will-change: clip-path, transform;
}
.hero-grass-line {
  position: absolute;
  left: 0; right: 0;
  height: 70px;
  z-index: 3;
  transform: translateY(-50%);
  background: linear-gradient(to bottom,
    rgba(120,210,80,0) 0%,
    rgba(150,235,90,0.35) 35%,
    rgba(210,255,170,0.85) 50%,
    rgba(150,235,90,0.35) 65%,
    rgba(120,210,80,0) 100%);
  filter: blur(7px);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-spore {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  background: radial-gradient(circle, #b6f06a 0%, #4fae34 55%, transparent 75%);
  transform: translate(-50%, -50%);
  filter: blur(0.4px);
  pointer-events: none;
}
.hero-enddim {
  position: absolute; inset: 0;
  z-index: 5;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,0,0,0.1), rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.hero-endcard {
  position: absolute; inset: 0;
  z-index: 7;
  pointer-events: none;
}
.hero-endlogo {
  position: absolute;
  left: 50%; top: 47%;
  width: 120px; height: 120px;
  border-radius: 14px;
  box-shadow: 0 0 60px rgba(236,232,225,0.35), 0 0 120px rgba(120,190,80,0.25);
}
.hero-endring {
  position: absolute;
  left: 50%; top: 47%;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(236,232,225,0.7);
  box-shadow: 0 0 40px rgba(236,232,225,0.4);
}
.hero-endring-2 {
  border-color: rgba(150,235,90,0.6);
  box-shadow: 0 0 40px rgba(150,235,90,0.4);
}
.hero-endword {
  position: absolute;
  left: 0; right: 0;
  top: calc(47% + 92px);
  text-align: center;
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  text-shadow: 0 2px 30px rgba(0,0,0,0.7);
}
.hero-photo-vignette {
  position: absolute; inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 80% at 50% 42%, transparent 55%, rgba(0,0,0,0.45) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, transparent 22%, transparent 70%, rgba(0,0,0,0.4) 100%);
}
.hero-title-stagger {
  position: absolute;
  left: 0; right: 0;
  top: 44%;
  z-index: 6;
  text-align: center;
  font-family: 'Anton', sans-serif;
  font-size: clamp(96px, 18vw, 260px);
  line-height: 0.84;
  letter-spacing: -0.02em;
  color: var(--fg);
  white-space: nowrap;
  pointer-events: none;
  text-shadow: 0 6px 40px rgba(0,0,0,0.6), 0 0 80px rgba(0,0,0,0.5);
}
.hero-tagline {
  position: absolute;
  left: 0; right: 0;
  bottom: 16vh;
  z-index: 6;
  text-align: center;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 22px);
  letter-spacing: 0.02em;
  color: var(--fg);
  pointer-events: none;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}
.hero-skip {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 7;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(236,232,225,0.7);
  transition: opacity 0.6s;
  pointer-events: none;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

/* ===== ARTISTS ===== */
.artists-view {
  display: flex; flex-direction: column;
  height: 100%;
  padding-top: 80px;
}
.artists-head {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 0 40px 0;
  gap: 40px;
}
.artists-head .eyebrow { color: var(--muted); }
.artists-head h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.artists-head h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
}
.artists-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--muted);
}

.artist-rail {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: grab;
  display: flex; align-items: center;
}
.artist-rail.dragging { cursor: grabbing; }
.artist-rail .track {
  position: absolute;
  top: 50%; left: 0;
  transform: translate(0, -50%);
  display: flex;
  gap: 80px;
  padding-left: calc(50vw - 200px);
  padding-right: calc(50vw - 200px);
  will-change: transform;
  align-items: center;
}

.artist-card {
  flex: 0 0 auto;
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  user-select: none;
  transition: transform 0.4s cubic-bezier(.2,.7,.1,1), opacity 0.4s;
  opacity: 0.45;
  transform: scale(0.86);
  cursor: pointer;
}
.artist-card.active {
  opacity: 1;
  transform: scale(1);
}
.vinyl {
  position: relative;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0a0a0a 50%, #000 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    inset 0 0 40px rgba(0,0,0,0.9),
    0 30px 60px rgba(0,0,0,0.6);
  overflow: hidden;
  transition: box-shadow 0.4s;
}
.artist-card.active .vinyl {
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.07),
    inset 0 0 40px rgba(0,0,0,0.9),
    0 30px 80px rgba(0,0,0,0.7),
    0 0 80px rgba(197,37,44,0.18);
}
.vinyl::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at 50% 50%,
      transparent 0px, transparent 3px,
      rgba(255,255,255,0.025) 3px, rgba(255,255,255,0.025) 4px);
  pointer-events: none;
}
.vinyl::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 30%, transparent 70%, rgba(255,255,255,0.04) 100%);
  pointer-events: none;
}
.vinyl .photo-label {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 50%; height: 50%;
  border-radius: 50%;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
}
.vinyl .photo-label img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.vinyl .photo-label .ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 64px;
  color: rgba(236,232,225,0.92);
  background: var(--ph-bg, linear-gradient(135deg, #2a1a3a 0%, #0d0d1a 60%, #050505 100%));
}
.vinyl .photo-label::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  background: #050505;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.05);
}
.artist-card.active .vinyl-spin {
  animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.artist-meta {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
  text-align: center;
}
.artist-meta .name {
  font-family: 'Anton', sans-serif;
  font-size: 44px;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.artist-meta .sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--muted);
  text-transform: uppercase;
}
.artist-meta .spotify {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 6px;
  opacity: 0;
  transition: opacity 0.3s;
}
.artist-card.active .artist-meta .spotify { opacity: 1; }

.rail-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 30px;
  padding: 30px 0 100px;
}
.rail-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--fg);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
  font-family: 'JetBrains Mono', monospace;
}
.rail-btn:hover { border-color: var(--accent); color: var(--accent); }
.rail-btn:active { transform: scale(0.94); }
.rail-progress {
  display: flex; align-items: center;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--muted);
}
.rail-progress .bar {
  width: 200px; height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.rail-progress .bar .fill {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(var(--p, 0));
  transition: transform 0.3s ease;
}

/* ===== ABOUT ===== */
.about-root {
  position: absolute; inset: 0;
  overflow: hidden;
}
.about-scroll {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: auto;
  scrollbar-width: none;
}
.about-scroll::-webkit-scrollbar { display: none; }

.about-intro {
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 0 40px;
}
.about-intro-inner { text-align: center; }
.about-intro h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(80px, 13vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--fg);
}
.about-intro h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.about-scroll-hint {
  margin-top: 60px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* ----- Pinned photo reels ----- */
.photo-reel-section {
  height: 320vh;
  position: relative;
}
.photo-reel-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
}
.reel-stack {
  position: absolute; inset: 0;
  overflow: hidden;
}
.reel-photo {
  position: absolute;
  top: 10vh; left: 10vw;
  width: 80vw; height: 80vh;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  will-change: clip-path, transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  display: flex; align-items: center; justify-content: center;
}
.reel-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.reel-photo-grid {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(236,232,225,0.08) 0 6px, transparent 6px 14px),
    radial-gradient(ellipse at 30% 30%, rgba(236,232,225,0.06), transparent 60%);
  pointer-events: none;
}
.reel-title-overlay {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 100;
  pointer-events: none;
  padding: 0 8vw;
  text-align: center;
  mix-blend-mode: difference;
  transition: opacity 0.2s;
}
.reel-title-overlay h3 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(54px, 9vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--fg);
  text-shadow: 0 0 30px rgba(0,0,0,0.4);
  max-width: 14ch;
}
.reel-dots {
  position: absolute;
  left: 50%; top: 40px;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 50;
}
.reel-dot {
  width: 28px; height: 2px;
  background: var(--line);
  transition: background 0.3s;
}
.reel-dot.active { background: var(--accent); }
.reel-dot.past { background: var(--fg); }

/* ----- Artist marquee (3 rows, alternating directions) ----- */
.artist-marquee-section {
  padding: 16vh 0;
  background: #050505;
  overflow: hidden;
  display: flex; flex-direction: column;
  gap: 22px;
  contain: layout paint style;
  isolation: isolate;
}
.marquee-row {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation-duration: 80s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}
.marquee-row.right .marquee-track {
  animation-name: marqueeRight;
}
.marquee-row.left .marquee-track {
  animation-name: marqueeLeft;
}
@keyframes marqueeRight {
  from { transform: translate3d(-50%, 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}
@keyframes marqueeLeft {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-card {
  flex: 0 0 auto;
  width: 220px;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s;
}
.marquee-card:hover { transform: translateY(-3px); }
.mq-cover {
  width: 220px; height: 220px;
  border-radius: 6px;
  overflow: hidden;
  background: #1a1a1a;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.mq-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.05);
  transition: filter 0.3s, transform 0.4s;
}
.marquee-card:hover .mq-cover img {
  filter: grayscale(0);
  transform: scale(1.04);
}
.mq-cover-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 90px;
  color: rgba(236,232,225,0.9);
  background:
    repeating-linear-gradient(135deg, rgba(236,232,225,0.06) 0 8px, transparent 8px 16px),
    linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 60%, #050505 100%);
}
.mq-name {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--fg);
  white-space: nowrap;
}

/* ----- Step blocks ----- */
.about-steps {
  padding: 18vh 8vw;
  display: flex; flex-direction: column;
  gap: 16vh;
  background: #050505;
  position: relative;
  z-index: 1;
  isolation: isolate;
}
.about-step {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.about-step-n {
  font-family: 'Anton', sans-serif;
  font-size: 140px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.about-step-body h3 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.about-step-body p {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  max-width: 600px;
  color: var(--fg);
}

/* ----- Playlists ----- */
.about-playlists {
  padding: 18vh 8vw;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.about-playlists-head {
  margin-bottom: 50px;
}
.about-playlists-head h3 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;

  position: relative;
  z-index: 2;

  transform: none;
  will-change: auto;
  backface-visibility: hidden;
}
.about-playlists {
  position: relative;
  z-index: 2;
  background: #050505;
  isolation: isolate;
  transform: translateZ(0);
}
.about-playlists-head h3 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.playlist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.spotify-embed-wrap {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;

  min-height: 352px;
  isolation: isolate;
}

.spotify-embed-wrap:hover {
  border-color: var(--accent);
}

.spotify-embed {
  display: block;
  width: 100%;
  height: 352px;
  border: 0;
  border-radius: 12px;
}

/* tail spacer */
.about-tail { height: 60vh; }

/* ----- Contact ticket (printed receipt) ----- */
.contact-ticket {
  position: fixed;
  right: 32px;
  bottom: 0;
  width: 320px;
  z-index: 65;
  pointer-events: none;
  opacity: 0;
  clip-path: inset(100% 0 0 0);
  transform: translateX(0) rotate(-1deg);
  color: var(--fg);
  filter: drop-shadow(0 16px 28px rgba(0,0,0,0.55));
  transform-origin: bottom right;
  transition: opacity 0.4s ease;
}
.contact-ticket.shown {
  opacity: 1;
  pointer-events: auto;
}
.contact-ticket.printed {
  clip-path: inset(0 0 0 0);
}
.contact-ticket.printing {
  animation:
    ticketPrint var(--print-dur, 2.6s) linear forwards,
    ticketJudder 0.14s steps(2) 0s 5;
}
@keyframes ticketPrint {
  /* Faster print: completes by 35% of the audio timeline. */
  0%   { clip-path: inset(100% 0 0 0); animation-timing-function: steps(3); }
  12%  { clip-path: inset(60% 0 0 0); animation-timing-function: steps(1); }
  20%  { clip-path: inset(60% 0 0 0); animation-timing-function: steps(5); }
  35%  { clip-path: inset(0 0 0 0); animation-timing-function: linear; }
  100% { clip-path: inset(0 0 0 0); }
}
@keyframes ticketJudder {
  0% { transform: translateX(0) rotate(-1deg); }
  25% { transform: translateX(-2px) rotate(-1.2deg); }
  50% { transform: translateX(1px) rotate(-0.8deg); }
  75% { transform: translateX(-1px) rotate(-1.1deg); }
  100% { transform: translateX(0) rotate(-1deg); }
}

.ticket-saw {
  display: block;
  width: 100%;
  height: 10px;
  color: var(--fg);
}

.ticket-inner {
  background: var(--fg);
  color: #050505;
  padding: 22px 24px 22px;
  font-family: 'JetBrains Mono', monospace;
  position: relative;
  /* Subtle paper texture */
  background-image:
    radial-gradient(ellipse at 30% 20%, rgba(0,0,0,0.025), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(0,0,0,0.025), transparent 60%);
}
.ticket-hole {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #050505;
  opacity: 0.7;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05) inset;
}

.ticket-title-block {
  text-align: center;
  padding: 4px 0 14px;
}
.ticket-title {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #050505;
  line-height: 1;
}
.ticket-subtitle {
  margin-top: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.55);
}

.ticket-divider {
  height: 1px;
  background-image: linear-gradient(90deg, rgba(0,0,0,0.25) 50%, transparent 50%);
  background-size: 6px 1px;
  background-repeat: repeat-x;
}

.ticket-section {
  padding: 16px 0;
}
.ticket-heading {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #050505;
  margin-bottom: 8px;
  line-height: 1;
}
.ticket-line {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #050505;
  text-decoration: none;
  padding: 3px 0;
  transition: color 0.2s;
}
.ticket-line:hover { color: var(--accent); }

.ticket-thanks {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(0,0,0,0.55);
  padding: 12px 0 4px;
  letter-spacing: 0.04em;
}
/* Old ticket styles below kept for legacy markup — superseded by new layout */
.ticket-perforation { display: none; }
.ticket-head, .ticket-row, .ticket-footer, .ticket-barcode { display: none; }

/* ===== DEMOS ===== */
.demos-view {
  display: flex; align-items: center; justify-content: center;
  height: 100%;
  padding: 100px 40px;
}
.demos-form-wrap {
  width: 100%;
  max-width: 640px;
  display: flex; flex-direction: column;
}
.demos-form-wrap .eyebrow { color: var(--muted); margin-bottom: 12px; }
.demos-form-wrap h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.demos-form-wrap h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.demos-form-wrap .lede {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 36px;
}

.field {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  color: var(--fg);
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  padding: 8px 0 10px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(236,232,225,0.18); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field textarea { resize: none; min-height: 70px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' fill='none' stroke='%236a6a6a' stroke-width='1.4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
}
.field select option { background: #0a0a0a; color: var(--fg); }

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.file-drop {
  border: 1px dashed var(--line-strong);
  padding: 26px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  margin-top: 6px;
}
.file-drop:hover, .file-drop.has-file, .file-drop.over {
  border-color: var(--accent);
  color: var(--fg);
  background: rgba(197,37,44,0.05);
}
.file-drop .filename {
  display: block;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--fg);
  margin-top: 8px;
  word-break: break-all;
}
.file-drop input { display: none; }

.submit-btn {
  margin-top: 28px;
  background: var(--fg);
  color: #050505;
  border: none;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: 999px;
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 14px;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.submit-btn:hover {
  background: var(--accent);
  color: var(--fg);
  transform: translateY(-1px);
}
.submit-btn:disabled {
  background: #1a1a1a;
  color: var(--muted);
  cursor: not-allowed;
  transform: none;
}

.demos-success {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 18px;
  padding: 40px 0;
}
.demos-success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 32px;
}
.demos-success h3 {
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.demos-success p {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  max-width: 380px;
}
.demos-success button {
  margin-top: 14px;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line-strong);
  padding: 12px 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 999px;
}
.demos-success button:hover { border-color: var(--accent); color: var(--accent); }

.form-error {
  margin-top: 18px;
  padding: 12px 16px;
  border: 1px solid var(--accent);
  background: rgba(197,37,44,0.08);
  color: var(--fg);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.02em;
  border-radius: 4px;
}

/* ===== Music player ===== */
.music-player {
  position: fixed;
  left: 28px;
  bottom: 28px;
  z-index: 70;
  display: flex; align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 8px;
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--fg);
  max-width: 360px;
  user-select: none;
}
.mp-play, .mp-mute {
  border: none;
  background: var(--fg);
  color: #050505;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.mp-mute {
  background: transparent;
  color: var(--muted);
  width: 26px; height: 26px;
}
.mp-play:hover { background: var(--accent); color: var(--fg); }
.mp-mute:hover { color: var(--fg); }
.mp-play:active, .mp-mute:active { transform: scale(0.92); }
.mp-meta {
  display: flex; flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.mp-track-row {
  display: inline-flex; align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
  white-space: nowrap;
}
.mp-title { overflow: hidden; text-overflow: ellipsis; }
.mp-bars {
  display: inline-flex; align-items: end;
  gap: 2px;
  height: 12px;
}
.mp-bars span {
  display: block;
  width: 2px;
  background: var(--accent);
  animation: mpBar 0.9s ease-in-out infinite alternate;
}
.mp-bars span:nth-child(1) { height: 50%; animation-delay: 0s; }
.mp-bars span:nth-child(2) { height: 90%; animation-delay: 0.18s; }
.mp-bars span:nth-child(3) { height: 70%; animation-delay: 0.34s; }
@keyframes mpBar {
  from { transform: scaleY(0.4); transform-origin: bottom; }
  to { transform: scaleY(1); transform-origin: bottom; }
}
.mp-sub {
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.mp-volume {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.mp-volume input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 18px;
  background: transparent;
  cursor: pointer;
}
.mp-volume input[type="range"]::-webkit-slider-runnable-track {
  height: 2px;
  background: linear-gradient(to right, var(--fg) 0 var(--p), var(--line-strong) var(--p) 100%);
  border-radius: 1px;
}
.mp-volume input[type="range"]::-moz-range-track {
  height: 2px;
  background: var(--line-strong);
}
.mp-volume input[type="range"]::-moz-range-progress {
  height: 2px;
  background: var(--fg);
}
.mp-volume input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: -4px;
  border: 2px solid var(--fg);
}
.mp-volume input[type="range"]::-moz-range-thumb {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--fg);
}

@media (max-width: 700px) {
  .music-player { max-width: calc(100vw - 56px); }
  .mp-meta { display: none; }
}

/* ===== Tweaks panel layering ===== */
.tweaks-fab,
.tweaks-window { z-index: 80; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .row-2 { grid-template-columns: 1fr; }
  .about-step { grid-template-columns: 1fr; gap: 16px; }
  .about-step-n { font-size: 80px; }
  .playlist-grid { grid-template-columns: 1fr; }
  .contact-ticket { width: calc(100% - 64px); right: 32px; }
}


.labelradar-card {
  display: block;
  margin-top: 32px;
  padding: 28px;

  border-radius: 24px;

  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.12);

  color: #fff;
  text-decoration: none;

  backdrop-filter: blur(12px);

  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.labelradar-card:hover {
  transform: translateY(-3px);

  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
}

.labelradar-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 18px;
}

.labelradar-kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(255,255,255,0.42);
}

.labelradar-arrow {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
}

.labelradar-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;

  margin-bottom: 12px;
}

.labelradar-copy {
  margin: 0;

  color: rgba(255,255,255,0.58);

  font-size: 14px;
  line-height: 1.7;
}

.direct-email {
  margin-top: 26px;
  padding-top: 22px;

  border-top: 1px solid rgba(255,255,255,0.08);
}

.direct-email label {
  display: block;
  margin-bottom: 12px;

  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  color: rgba(255,255,255,0.36);
}

.direct-email a {
  display: inline-block;

  font-size: 18px;
  color: rgba(255,255,255,0.86);
  text-decoration: none;

  border-bottom: 1px solid rgba(255,255,255,0.28);
  padding-bottom: 4px;

  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.direct-email a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

@media (max-width: 700px) {
  .hero-moon-wrap {
    width: 300px;
    height: 300px;
  }

  .hero-title-stagger {
    font-size: clamp(68px, 24vw, 120px);
    white-space: normal;
    line-height: 0.9;
    padding: 0 18px;
  }

  .top-frame {
    padding: 18px;
  }

  .brand-mark {
    font-size: 9px;
    letter-spacing: 0.22em;
  }

  .brand-mark img {
    width: 24px;
    height: 24px;
  }

  .tx-status {
    display: none;
  }

  .rocket-gauge {
    right: 18px;
    transform: translateY(-50%) scale(0.82);
    transform-origin: right center;
  }

  .bottom-nav {
    bottom: 18px;
    max-width: calc(100vw - 24px);
    overflow-x: auto;
  }

  .bottom-nav button {
    font-size: 9px;
    padding: 10px 14px;
    letter-spacing: 0.18em;
  }

  /* Artists carousel — smaller vinyls so swiping covers a card easily */
  .hero-moon-wrap { width: 220px; height: 220px; }
  .artist-card { width: 230px; gap: 18px; }
  .vinyl { width: 230px; height: 230px; }
  .artist-rail .track {
    gap: 36px;
    padding-left: calc(50vw - 115px);
    padding-right: calc(50vw - 115px);
  }
  .artist-meta .name { font-size: 28px; }
  .rail-controls { padding: 16px 0 90px; }
  .rail-progress .bar { width: 120px; }

  /* HOME video — show the full landscape frame on portrait phones (no heavy crop) */
  .hero-video {
    object-fit: contain;
    background: #000;
  }
  .hero-endlogo { width: 92px; height: 92px; }
  .hero-endword { font-size: clamp(24px, 7vw, 40px); top: calc(47% + 74px); }
  .hero-soundhint { bottom: 20px; font-size: 9px; letter-spacing: 0.28em; }
}