/* ─── Bomr Font ─── */
@font-face {
  font-family: "Bomr";
  src: url("../fonts/bomr.woff2") format("woff2");
  font-display: swap;
}

/* ─── Variables ─── */
:root {
  --bg: #050505;
  --bg-2: #0a0a0f;
  --surface: #111118;
  --surface-2: #1a1a24;
  --text: #e8e8f0;
  --text-dim: #6a6a80;
  --acid: #39ff14;
  --acid-dim: #39ff1440;
  --purple: #bf00ff;
  --purple-dim: #bf00ff40;
  --cyan: #00f0ff;
  --red: #ff0040;
  --yellow: #ffe600;
  --font-mono: ui-monospace, "Cascadia Code", "SF Mono", Consolas, monospace;
  --font-display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --font-bomr: "Bomr", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 72px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-mono);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: none; border: none; background: none; }
input, select, textarea { font: inherit; cursor: none; }

.bomr { font-family: var(--font-bomr); }

/* ─── Overlays ─── */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: noise-shift 0.5s steps(4) infinite;
}
@keyframes noise-shift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(-1%, 2%); }
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.15) 2px,
    rgba(0, 0, 0, 0.15) 4px
  );
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 9996;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.7) 100%);
}

/* ─── Custom Cursor ─── */
.cursor-ring, .cursor-dot {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease-out), height 0.2s var(--ease-out), border-color 0.2s;
}
.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid var(--acid);
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--purple);
}
body.cursor-hover .cursor-ring {
  width: 60px;
  height: 60px;
  border-color: var(--purple);
}

/* ─── Canvas Background ─── */
#wave-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
}

/* ─── Preloader ─── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  text-align: center;
  width: min(320px, 80vw);
}
.preloader-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  animation: flicker 2s infinite;
}
.preloader-bar {
  height: 3px;
  background: var(--surface-2);
  overflow: hidden;
  margin-bottom: 1rem;
}
.preloader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--acid), var(--purple));
  animation: load-bar 2s var(--ease-out) forwards;
}
@keyframes load-bar { to { width: 100%; } }
.preloader-bpm {
  font-family: var(--font-bomr);
  font-size: 2rem;
  color: var(--acid);
  letter-spacing: 0.1em;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  92% { opacity: 1; }
  93% { opacity: 0.3; }
  94% { opacity: 1; }
  96% { opacity: 0.5; }
  97% { opacity: 1; }
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: linear-gradient(to bottom, rgba(5,5,5,0.95), transparent);
  backdrop-filter: blur(8px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--acid);
  transition: text-shadow 0.3s;
}
.nav-logo:hover {
  text-shadow: 2px 0 var(--red), -2px 0 var(--cyan);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}
.nav-links a::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--acid);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s var(--ease-out);
}
.nav-links a:hover::before { clip-path: inset(0 0 0 0); }
.nav-links a:hover { color: var(--text-dim); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--acid);
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) clamp(1.5rem, 4vw, 3rem) 4rem;
  z-index: 1;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--text-dim);
}
.hero-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--acid);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--acid);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 var(--acid-dim); }
  50% { transform: scale(1.2); opacity: 0.8; box-shadow: 0 0 20px 4px var(--acid-dim); }
}

.hero-title {
  margin-bottom: 1.5rem;
  line-height: 0.85;
}
.glitch-title {
  display: block;
  font-size: clamp(4rem, 18vw, 14rem);
  letter-spacing: -0.02em;
  color: var(--text);
  position: relative;
  animation: title-glitch 4s infinite;
}
.glitch-title::before,
.glitch-title::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.glitch-title::before {
  color: var(--cyan);
  animation: glitch-1 3s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}
.glitch-title::after {
  color: var(--red);
  animation: glitch-2 2s infinite linear alternate-reverse;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
  0% { transform: translate(0); }
  20% { transform: translate(-3px, 2px); }
  40% { transform: translate(3px, -1px); }
  60% { transform: translate(-2px, -2px); }
  80% { transform: translate(2px, 1px); }
  100% { transform: translate(0); }
}
@keyframes glitch-2 {
  0% { transform: translate(0); }
  25% { transform: translate(3px, -2px); }
  50% { transform: translate(-3px, 1px); }
  75% { transform: translate(2px, 2px); }
  100% { transform: translate(0); }
}
@keyframes title-glitch {
  0%, 90%, 100% { filter: none; }
  91% { filter: hue-rotate(90deg) saturate(2); transform: skewX(-2deg); }
  92% { filter: none; transform: none; }
  93% { filter: contrast(2); transform: translateX(4px); }
  94% { filter: none; transform: none; }
}

.hero-sub {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2.5rem;
}
.hero-sub-line {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.15em;
}
.hero-sub-dim { color: var(--text-dim); font-weight: 400; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--acid);
  color: var(--bg);
  border-color: var(--acid);
}
.btn-primary:hover {
  background: transparent;
  color: var(--acid);
  box-shadow: 0 0 30px var(--acid-dim), inset 0 0 30px var(--acid-dim);
}
.btn-ghost {
  border-color: var(--purple);
  color: var(--purple);
}
.btn-ghost:hover {
  background: var(--purple);
  color: var(--bg);
  box-shadow: 0 0 30px var(--purple-dim);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--text-dim);
}
.scroll-indicator {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--acid), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

.hero-freq {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: 20%;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 120px;
}
.freq-bar {
  width: 4px;
  background: linear-gradient(to top, var(--purple), var(--acid));
  animation: freq-dance 0.8s ease-in-out infinite alternate;
}
.freq-bar:nth-child(1) { animation-delay: 0s; }
.freq-bar:nth-child(2) { animation-delay: 0.1s; }
.freq-bar:nth-child(3) { animation-delay: 0.2s; }
.freq-bar:nth-child(4) { animation-delay: 0.05s; }
.freq-bar:nth-child(5) { animation-delay: 0.15s; }
.freq-bar:nth-child(6) { animation-delay: 0.25s; }
.freq-bar:nth-child(7) { animation-delay: 0.08s; }
.freq-bar:nth-child(8) { animation-delay: 0.18s; }
.freq-bar:nth-child(9) { animation-delay: 0.28s; }
.freq-bar:nth-child(10) { animation-delay: 0.03s; }
.freq-bar:nth-child(11) { animation-delay: 0.13s; }
.freq-bar:nth-child(12) { animation-delay: 0.23s; }

@keyframes freq-dance {
  0% { height: 10%; opacity: 0.4; }
  100% { height: 100%; opacity: 1; }
}

/* ─── Marquee ─── */
.marquee-wrap {
  position: relative;
  z-index: 2;
  background: var(--acid);
  color: var(--bg);
  padding: 0.75rem 0;
  overflow: hidden;
  transform: skewY(-1deg);
  margin: -1rem 0;
}
.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  font-family: var(--font-bomr);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Sections ─── */
.section {
  position: relative;
  z-index: 2;
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 4vw, 3rem);
  max-width: 1400px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 3rem;
  border-left: 3px solid var(--purple);
  padding-left: 1.5rem;
}
.section-index {
  font-size: 0.7rem;
  color: var(--acid);
  letter-spacing: 0.3em;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  margin: 0.25rem 0;
}
.section-desc {
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ─── Releases ─── */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.release-card {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
  transform-style: preserve-3d;
}
.release-card:hover {
  border-color: var(--acid);
  transform: translateY(-4px);
}
.release-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: hsl(var(--hue, 120), 80%, 15%);
}
.release-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s var(--ease-out), filter 0.3s;
}
.release-card:hover .release-cover {
  transform: scale(1.06);
  filter: contrast(1.1) saturate(1.15);
}
.release-art-inner {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      hsla(var(--hue, 120), 100%, 50%, 0.1) 10px,
      hsla(var(--hue, 120), 100%, 50%, 0.1) 11px
    ),
    radial-gradient(circle at 30% 70%, hsl(var(--hue, 120), 100%, 50%), transparent 60%),
    radial-gradient(circle at 70% 30%, hsl(var(--hue, 120), 80%, 30%), transparent 50%);
  animation: art-shift 8s ease-in-out infinite alternate;
}
.release-art-inner--has-cover {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  animation: none;
}
.release-art-scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(transparent 48%, rgba(57, 255, 20, 0.12) 49%, rgba(57, 255, 20, 0.12) 51%, transparent 52%);
  opacity: 0;
  transition: opacity 0.3s;
}
.release-card:hover .release-art-scan {
  opacity: 1;
  animation: portrait-scan 2.5s linear infinite;
}
.release-art:not(:has(.release-cover)) .release-art-inner {
  z-index: 1;
}
@keyframes art-shift {
  0% { transform: scale(1) rotate(0deg); filter: hue-rotate(0deg); }
  100% { transform: scale(1.1) rotate(2deg); filter: hue-rotate(20deg); }
}
.release-bpm {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  z-index: 4;
  font-family: var(--font-bomr);
  font-size: 1.5rem;
  color: var(--text);
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}
.release-info { padding: 1.25rem; }
.release-type {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--purple);
}
.release-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0.25rem 0;
  letter-spacing: 0.05em;
}
.release-date {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}
.release-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.release-link {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--acid);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.release-link:hover { border-color: var(--acid); }

/* ─── Live ─── */
.live-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.live-visual {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--surface);
  border: 1px solid var(--surface-2);
  overflow: hidden;
}
#spectrum-canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.live-visual-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.live-visual-text {
  font-size: clamp(4rem, 12vw, 8rem);
  color: rgba(255,255,255,0.08);
  letter-spacing: 0.1em;
}

.show-list { list-style: none; }
.show-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--surface-2);
  transition: background 0.3s, padding-left 0.3s;
}
.show-item:hover {
  background: var(--surface);
  padding-left: 1rem;
}
.show-item-past { opacity: 0.5; }
.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
}
.show-day {
  font-family: var(--font-bomr);
  font-size: 2rem;
  line-height: 1;
  color: var(--acid);
}
.show-month {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}
.show-venue {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.show-location {
  font-size: 0.75rem;
  color: var(--text-dim);
}
.show-ticket {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  padding: 0.5rem 1rem;
  border: 1px solid var(--purple);
  color: var(--purple);
  transition: all 0.3s;
}
.show-ticket:hover {
  background: var(--purple);
  color: var(--bg);
}
.show-sold {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--red);
}

/* ─── About ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.about-portrait-frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 2px solid var(--surface-2);
}
.about-portrait-inner {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--surface-2) 0%, var(--bg) 50%, hsl(280, 60%, 15%) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(57,255,20,0.03) 2px, rgba(57,255,20,0.03) 4px);
}
.about-portrait-glitch {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(transparent 48%, var(--acid-dim) 49%, var(--acid-dim) 51%, transparent 52%);
  animation: portrait-scan 3s linear infinite;
  pointer-events: none;
}
@keyframes portrait-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
.about-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--surface-2);
}
.stat { text-align: center; }
.stat-value {
  display: block;
  font-family: var(--font-bomr);
  font-size: 2rem;
  color: var(--acid);
}
.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}
.about-lead {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: var(--text);
  line-height: 1.5;
}
.about-text p {
  margin-bottom: 1rem;
  color: var(--text-dim);
  font-size: 0.9rem;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--surface-2);
  transition: border-color 0.3s, color 0.3s;
}
.tag:hover {
  border-color: var(--acid);
  color: var(--acid);
}
.press-quotes {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.press-quote {
  padding: 1rem;
  border-left: 2px solid var(--purple);
  background: var(--surface);
}
.press-quote p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.press-quote cite {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-style: normal;
}

.corrupt-text {
  position: relative;
}
.corrupt-text:hover {
  animation: corrupt 0.3s steps(3) infinite;
}
@keyframes corrupt {
  0% { transform: translate(0); filter: none; }
  33% { transform: translate(-2px, 1px); filter: hue-rotate(90deg); }
  66% { transform: translate(2px, -1px); filter: contrast(1.5); }
}

/* ─── Media ─── */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.media-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--surface-2);
  transition: border-color 0.3s;
}
.media-item:hover { border-color: var(--cyan); }
.media-item-large {
  grid-row: span 2;
}
.media-thumb {
  aspect-ratio: 16/9;
  background:
    radial-gradient(circle at 50% 50%, hsl(var(--hue, 140), 80%, 40%), hsl(var(--hue, 140), 60%, 10%)),
    repeating-conic-gradient(from 0deg, transparent 0deg 10deg, rgba(0,0,0,0.3) 10deg 11deg);
  transition: transform 0.5s var(--ease-out);
}
.media-item-large .media-thumb { aspect-ratio: auto; height: 100%; min-height: 300px; }
.media-item:hover .media-thumb { transform: scale(1.05); }
.media-label {
  display: block;
  padding: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.media-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  padding: 0.75rem 1.5rem;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--acid);
  color: var(--acid);
  opacity: 0;
  transition: opacity 0.3s;
}
.media-item:hover .media-play { opacity: 1; }

/* ─── Contact ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.form-row {
  margin-bottom: 1.25rem;
}
.form-row label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--surface-2);
  color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--acid);
  box-shadow: 0 0 20px var(--acid-dim);
}
.btn-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

.contact-block {
  margin-bottom: 2rem;
}
.contact-block h3 {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--purple);
  margin-bottom: 0.5rem;
}
.contact-block a {
  color: var(--text);
  transition: color 0.3s;
}
.contact-block a:hover { color: var(--acid); }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.social-link {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--surface-2);
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.contact-terminal {
  background: var(--surface);
  border: 1px solid var(--surface-2);
  font-size: 0.8rem;
  margin-top: 1rem;
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0.75rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--bg);
}
.terminal-header span:nth-child(1) { width: 10px; height: 10px; border-radius: 50%; background: var(--red); }
.terminal-header span:nth-child(2) { width: 10px; height: 10px; border-radius: 50%; background: var(--yellow); }
.terminal-header span:nth-child(3) { width: 10px; height: 10px; border-radius: 50%; background: var(--acid); }
.terminal-title {
  margin-left: auto;
  font-size: 0.65rem;
  color: var(--text-dim);
}
.terminal-body {
  padding: 1rem;
  color: var(--acid);
  min-height: 80px;
}
.terminal-body p { margin-bottom: 0.25rem; }

/* ─── Footer ─── */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--surface-2);
  padding: 3rem clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}
.footer-logo {
  font-size: 2.5rem;
  color: var(--text-dim);
  display: block;
  margin-bottom: 1rem;
  transition: color 0.3s, text-shadow 0.3s;
}
.footer-logo:hover {
  color: var(--acid);
  text-shadow: 3px 0 var(--red), -3px 0 var(--cyan);
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.footer-note {
  font-size: 0.65rem;
  color: var(--surface-2);
  letter-spacing: 0.1em;
}

/* ─── Glitch Overlay (scroll bursts) ─── */
.glitch-overlay {
  position: fixed;
  inset: 0;
  z-index: 9995;
  pointer-events: none;
  opacity: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(57,255,20,0.1) 0px,
    transparent 1px,
    transparent 3px,
    rgba(191,0,255,0.1) 4px
  );
  mix-blend-mode: overlay;
}
.glitch-overlay.active {
  animation: overlay-flash 0.15s steps(2) forwards;
}
@keyframes overlay-flash {
  0% { opacity: 0.8; transform: translateX(-5px); }
  50% { opacity: 0.4; transform: translateX(5px); }
  100% { opacity: 0; transform: translateX(0); }
}

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .live-layout,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .media-grid {
    grid-template-columns: 1fr 1fr;
  }
  .media-item-large {
    grid-row: span 1;
  }
  .hero-freq { display: none; }
}

@media (max-width: 640px) {
  body { cursor: auto; }
  .cursor-ring, .cursor-dot { display: none; }
  button, input, select, textarea, a { cursor: pointer; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(5,5,5,0.98);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease-out);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .media-grid { grid-template-columns: 1fr; }
  .glitch-title { font-size: clamp(3rem, 20vw, 6rem); }
}

/* ─── Admin link ─── */
.admin-link {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 200;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-dim);
  border: 1px solid var(--surface-2);
  background: rgba(5, 5, 5, 0.8);
  opacity: 0.3;
  transition: opacity 0.3s, color 0.3s, border-color 0.3s;
}
.admin-link:hover {
  opacity: 1;
  color: var(--acid);
  border-color: var(--acid);
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .noise { display: none; }
  html { scroll-behavior: auto; }
}
