/* DJ HALVN — Landing Page */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-0: #05060A;
  --bg-1: #080B14;
  --bg-2: #0A1428;
  --navy: #0F1B36;
  --line: rgba(180, 210, 255, 0.06);
  --line-strong: rgba(180, 210, 255, 0.11);
  --neon: oklch(72% 0.18 245);
  --neon-soft: oklch(72% 0.11 245 / 0.09);
  --neon-glow: oklch(72% 0.13 245 / 0.14);
  --white: #F4F6FA;
  --white-dim: #B4BAC6;
  --white-faint: #6B7180;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

html, body {
  background: var(--bg-0);
  color: var(--white);
  font-family: var(--font-display);
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 2px,
      rgba(255,255,255,0.009) 2px 3px
    ),
    radial-gradient(120% 80% at 50% 0%, transparent 60%, rgba(0,0,0,0.6) 100%);
  mix-blend-mode: overlay;
  opacity: 0.45;
}

::selection { background: var(--neon); color: var(--bg-0); }

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

/* ─── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  backdrop-filter: blur(14px) saturate(140%);
  background: linear-gradient(180deg, rgba(5,6,10,0.85), rgba(5,6,10,0.4));
  border-bottom: 1px solid var(--line);
  transition: padding .3s ease;
}
.nav.scrolled { padding: 12px 32px; }
.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-brand .dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--neon); border-radius: 50%;
  margin-right: 10px; transform: translateY(-2px);
  box-shadow: 0 0 12px var(--neon-glow);
  animation: pulse 2.4s ease-in-out infinite;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.nav-links a { transition: color .4s cubic-bezier(.16,1,.3,1); }
.nav-links a:hover { color: var(--neon); }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(77, 168, 255, 0.06);
  color: var(--white);
  transition: all .25s;
}
.nav-cta:hover {
  border-color: var(--neon);
  background: rgba(77, 168, 255, 0.14);
  box-shadow: 0 0 24px rgba(77, 168, 255, 0.25);
}

@media (max-width: 720px) {
  .nav { padding: 14px 18px; }
  .nav-links { display: none; }
  .nav-brand { font-size: 13px; }
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

/* Cinematic edge vignette — darkens corners, focuses eye on center */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 9;
  background: radial-gradient(ellipse 85% 80% at 50% 45%, transparent 40%, rgba(0,0,0,0.55) 100%);
}

/* Spotlight + fog layers */
.hero-stage {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 50% 55%, rgba(77, 168, 255, 0.04) 0%, transparent 65%),
    radial-gradient(40% 50% at 50% 0%, rgba(77, 168, 255, 0.05) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-0) 70%, var(--bg-0) 100%);
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(80% 60% at 50% 60%, #000 0%, transparent 90%);
  opacity: 0.025;
  z-index: 1;
}

/* LED wall placeholder */
.hero-led {
  position: absolute;
  left: 50%; top: 8%;
  transform: translateX(-50%);
  width: min(85%, 1100px);
  aspect-ratio: 16 / 7;
  z-index: 1;
  border: 1px solid var(--line-strong);
  background:
    repeating-linear-gradient(
      90deg,
      rgba(77,168,255,0.04) 0 6px,
      transparent 6px 12px
    ),
    linear-gradient(180deg, rgba(77,168,255,0.1), rgba(15,27,54,0.6));
  box-shadow:
    0 0 80px rgba(77, 168, 255, 0.25),
    inset 0 0 80px rgba(77, 168, 255, 0.15);
  overflow: hidden;
}
.hero-led::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent 0 3px, rgba(0,0,0,0.4) 3px 4px
  );
  pointer-events: none;
}
.hero-led-label {
  position: absolute;
  top: 14px; left: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--neon);
  text-transform: uppercase;
  opacity: 0.7;
}

/* Fog layers */
.fog {
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 140%;
  height: 80%;
  background: radial-gradient(60% 50% at 50% 50%, rgba(77, 168, 255, 0.045), transparent 70%);
  filter: blur(80px);
  z-index: 2;
  animation: drift 18s ease-in-out infinite alternate;
}
.fog-2 {
  bottom: -10%;
  left: 10%;
  width: 80%;
  height: 50%;
  background: radial-gradient(50% 60% at 50% 50%, rgba(150, 200, 255, 0.018), transparent 70%);
  animation-duration: 24s;
  animation-direction: alternate-reverse;
}

@keyframes drift {
  0%   { transform: translateX(-4%) scale(1); }
  100% { transform: translateX(4%) scale(1.06); }
}

/* ── Ambient stage breathe ─────────────────────────────── */
@keyframes ambient-breathe {
  0%, 100% { opacity: 0.94; }
  50%       { opacity: 1;    }
}
.hero-stage { animation: ambient-breathe 14s ease-in-out infinite; }

/* ── Film grain ────────────────────────────────────────── */
.hero::before {
  content: "";
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 8;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 250px 250px;
  animation: grain 0.9s steps(1) infinite;
}
@keyframes grain {
  0%   { background-position:   0%   0%; }
  14%  { background-position: -12%  -6%; }
  28%  { background-position:  22% -18%; }
  42%  { background-position:  -4%  24%; }
  56%  { background-position:  16%  10%; }
  70%  { background-position: -20%   4%; }
  84%  { background-position:   8% -14%; }
  100% { background-position:   0%   0%; }
}

/* ── Portrait slow cinematic push-in ───────────────────── */
@keyframes portrait-breathe {
  0%   { transform: scale(1.01) translateY(0px); }
  100% { transform: scale(1.04) translateY(-8px); }
}
.hero-portrait-img {
  animation: portrait-breathe 30s ease-in-out infinite alternate;
}
.hero-portrait:hover .hero-portrait-img {
  animation-play-state: paused;
}

/* ── Atmospheric orb — slow float behind portrait ──────── */
.hero-orb {
  position: absolute;
  left: 50%;
  bottom: 18%;
  width: 560px;
  height: 300px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(77,168,255,0.07), transparent 70%);
  filter: blur(55px);
  z-index: 2;
  pointer-events: none;
  animation: orb-float 22s ease-in-out infinite;
}
@keyframes orb-float {
  0%, 100% { transform: translateX(-50%) translateY(0)   scale(1);    opacity: 0.75; }
  33%       { transform: translateX(-48%) translateY(-5%) scale(1.12); opacity: 1;    }
  66%       { transform: translateX(-52%) translateY(3%)  scale(0.94); opacity: 0.82; }
}

/* ── Third fog layer — slow cross-drift ────────────────── */
.fog-3 {
  bottom: 15%;
  left: -15%;
  width: 55%;
  height: 45%;
  background: radial-gradient(50% 55% at 50% 50%, rgba(100, 160, 255, 0.04), transparent 70%);
  animation-duration: 34s;
  animation-direction: alternate-reverse;
  filter: blur(60px);
}

/* Hero portrait placeholder — silhouette container */
.hero-portrait {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(64%, 700px);
  height: 96%;
  z-index: 3;
  overflow: hidden;
  /* Cutout — gradual floor dissolve, left/right atmospheric bleed */
  -webkit-mask-image:
    linear-gradient(to bottom, black 40%, transparent 88%),
    linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, black 40%, transparent 88%),
    linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  mask-composite: intersect;
}

/* Atmospheric fog layer — sits above portrait, bleeds into environment */
.hero-portrait-fog {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(92%, 920px);
  height: 52%;
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 55% at 50% 100%, rgba(5,6,10,0.75) 0%, transparent 100%),
    radial-gradient(ellipse 85% 35% at 16% 100%, rgba(5,6,10,0.42) 0%, transparent 100%),
    radial-gradient(ellipse 85% 35% at 84% 100%, rgba(5,6,10,0.42) 0%, transparent 100%);
}

.hero-portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 9s ease-out;
}
.hero-portrait:hover .hero-portrait-img { transform: scale(1.025); }

.hero-portrait-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--white-faint);
  text-transform: uppercase;
  padding: 16px 18px;
  border-bottom: 1px dashed var(--line);
}
.hero-portrait-desc {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--white-faint);
  text-transform: uppercase;
  padding: 16px 18px;
  line-height: 1.8;
  border-top: 1px dashed var(--line);
  max-width: 100%;
}
.hero-portrait-desc span { color: var(--neon); }
.hero-portrait-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
}
.hero-portrait-center .crosshair {
  width: 60px; height: 60px;
  border: 1px solid var(--neon-soft);
  border-radius: 50%;
  position: relative;
}
.hero-portrait-center .crosshair::before,
.hero-portrait-center .crosshair::after {
  content: "";
  position: absolute;
  background: var(--neon-soft);
}
.hero-portrait-center .crosshair::before {
  left: 50%; top: -10px; bottom: -10px; width: 1px; transform: translateX(-50%);
}
.hero-portrait-center .crosshair::after {
  top: 50%; left: -10px; right: -10px; height: 1px; transform: translateY(-50%);
}
.hero-portrait-center .tank-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--neon);
  text-shadow: 0 0 12px var(--neon-glow), 0 0 24px var(--neon-glow);
  animation: neon-pulse 3s ease-in-out infinite;
}

@keyframes neon-pulse {
  0%, 100% { opacity: 1; text-shadow: 0 0 12px var(--neon-glow), 0 0 24px var(--neon-glow); }
  50% { opacity: 0.85; text-shadow: 0 0 8px var(--neon-glow), 0 0 16px var(--neon-glow); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: translateY(-2px) scale(1); }
  50% { opacity: 0.5; transform: translateY(-2px) scale(0.85); }
}

/* Performance hints — GPU-composited layers */
.hero-massive,
.fog,
.hero-orb,
.hero-portrait,
.hero-portrait-img,
.page-atmosphere {
  will-change: transform;
}

/* Hero typography — massive HALVN behind portrait */
.hero-massive {
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(160px, 30vw, 520px);
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: rgba(244, 246, 250, 0.010);
  z-index: 2;
  white-space: nowrap;
  user-select: none;
  filter: blur(4px);
  text-shadow: none;
}

/* Hero content (foreground) */
.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 0 32px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
}
.hero-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-meta-row { display: flex; align-items: center; gap: 12px; }
.hero-meta-row .bar { width: 24px; height: 1px; background: var(--neon); }

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3.4vw, 44px);
  letter-spacing: -0.015em;
  line-height: 1.1;
  text-wrap: balance;
  max-width: 580px;
  justify-self: end;
  text-align: right;
}
.hero-tagline em {
  font-style: italic;
  color: var(--neon);
  font-weight: 300;
}

.hero-ctas {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 14px;
}

@media (max-width: 820px) {
  /* Portrait: anchor to top so the face shows, fade out at the bottom */
  .hero-portrait {
    width: 100%;
    height: 75%;
    top: 6%;
    bottom: auto;
    -webkit-mask-image: linear-gradient(to bottom, black 48%, transparent 92%);
    mask-image: linear-gradient(to bottom, black 48%, transparent 92%);
  }
  .hero-portrait-img {
    object-position: center top;
  }
  .hero-portrait-fog {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 44%;
  }
  /* Breathing room + single-column hierarchy */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 22px 210px;
  }
  .hero-tagline {
    justify-self: start;
    text-align: left;
    font-size: clamp(22px, 6vw, 34px);
  }

  /* CTAs: full-width elegant stack */
  .hero-ctas {
    bottom: 32px;
    flex-direction: column;
    width: calc(100% - 44px);
    gap: 10px;
  }
  .btn { padding: 19px 28px; width: 100%; justify-content: center; }

  /* HALVN: ghost watermark only — completely subconscious */
  .hero-massive {
    top: 28%;
    font-size: clamp(54px, 15vw, 108px);
    color: rgba(244, 246, 250, 0.004);
    filter: blur(8px);
  }

  /* Show only one meta row — maximum calm */
  .hero-meta-row:nth-child(2),
  .hero-meta-row:nth-child(3) { display: none; }
  .hero-meta {
    gap: 0;
    font-size: 10px;
    letter-spacing: 0.14em;
    opacity: 0.6;
  }

  /* Atmosphere: near-invisible on mobile */
  .hero-grid  { opacity: 0.01; }
  .fog        { filter: blur(100px); opacity: 0.5; }
  .hero-stage { opacity: 0.65; }
  .hero-orb   { opacity: 0.4; width: 280px; height: 160px; }
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all .5s cubic-bezier(.16,1,.3,1);
  border: 1px solid var(--line-strong);
  background: rgba(244, 246, 250, 0.04);
  color: var(--white);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  border-color: var(--neon);
  background: rgba(77, 168, 255, 0.10);
  box-shadow: 0 8px 28px -8px rgba(77, 168, 255, 0.18);
}
.btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: .1s;
  box-shadow: none;
}
.btn-primary {
  background: var(--neon);
  color: var(--bg-0);
  border-color: var(--neon);
  font-weight: 600;
  box-shadow:
    0 0 0 0 var(--neon-glow),
    0 12px 32px -8px rgba(77, 168, 255, 0.6);
}
.btn-primary:active {
  transform: scale(0.97);
  transition-duration: .08s;
}
.btn-primary:hover {
  background: oklch(78% 0.18 245);
  box-shadow:
    0 0 32px var(--neon-glow),
    0 12px 32px -8px rgba(77, 168, 255, 0.7);
}
.btn-arrow {
  display: inline-block;
  transition: transform .25s;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ─── SECTION SHELL ───────────────────────────────────── */
section { position: relative; }
.section {
  padding: 148px 32px;
  max-width: 1320px;
  margin: 0 auto;
}
.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 32px;
  padding-bottom: 64px;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--neon);
  vertical-align: middle;
  margin-right: 12px;
  box-shadow: 0 0 8px var(--neon-glow);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.025em;
  line-height: 0.95;
}
.section-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-faint);
  text-align: right;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .section { padding: 80px 18px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; padding-bottom: 28px; margin-bottom: 28px; }
  .section-meta { text-align: left; }
}

/* ─── GLASS CARD ──────────────────────────────────────── */
.glass {
  background: linear-gradient(180deg, rgba(20, 30, 55, 0.5), rgba(8, 12, 22, 0.6));
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: all .55s cubic-bezier(.16,1,.3,1);
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(135deg, var(--neon-soft), transparent 40%, transparent 60%, rgba(77,168,255,0.15));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
  transition: opacity .3s;
  pointer-events: none;
}
.glass:hover { border-color: var(--neon-soft); transform: translateY(-2px); }
.glass:hover::before { opacity: 1; }

/* ─── FEATURED RELEASE ────────────────────────────────── */
.release {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.release-art {
  aspect-ratio: 1 / 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background:
    radial-gradient(80% 60% at 50% 30%, rgba(77, 168, 255, 0.3), transparent 70%),
    linear-gradient(180deg, var(--bg-2), var(--bg-0));
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 80px -20px rgba(77, 168, 255, 0.25), 0 0 0 1px rgba(77, 168, 255, 0.08);
}
.release-art-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(77, 168, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 168, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent 80%);
}
.release-art-content {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
}
.release-art-mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--neon);
  text-transform: uppercase;
}
.release-art-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-shadow: 0 0 40px var(--neon-glow);
}
.release-art-title em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--neon);
}
.release-art-footer {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.release-info { display: flex; flex-direction: column; gap: 44px; }
.release-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon);
}
.release-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1;
}
.release-desc {
  font-size: 17px;
  line-height: 1.5;
  color: var(--white-dim);
  max-width: 460px;
  text-wrap: pretty;
}
.release-tracks { display: flex; flex-direction: column; gap: 4px; margin-top: 12px; }
.release-track {
  display: grid;
  grid-template-columns: 36px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 17px 20px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--white-dim);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .5s cubic-bezier(.16,1,.3,1);
}
.release-track:hover {
  background: rgba(77, 168, 255, 0.06);
  border-color: var(--line);
  color: var(--white);
}
.release-track .num { color: var(--white-faint); }
.release-track .title { color: var(--white); letter-spacing: 0.02em; font-family: var(--font-display); font-size: 15px; }
.release-track .dur { color: var(--white-faint); }
.release-track .play {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  color: var(--neon);
  transition: all .25s;
}
.release-track:hover .play { background: var(--neon); color: var(--bg-0); border-color: var(--neon); box-shadow: 0 0 16px var(--neon-glow); }
.release-track.playing .play { background: var(--neon); color: var(--bg-0); border-color: var(--neon); }
.release-track.playing { background: rgba(77, 168, 255, 0.06); color: var(--white); }
.release-track.playing .title { color: var(--neon); }

@media (max-width: 880px) {
  .release { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── STREAMING ───────────────────────────────────────── */
.streaming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.stream-card {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  min-height: 210px;
  cursor: pointer;
}
.stream-card-head {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.stream-glyph {
  width: 38px; height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--neon);
  background: rgba(77, 168, 255, 0.06);
}
.stream-arrow {
  width: 32px; height: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white-dim);
  transition: all .25s;
  font-size: 12px;
}
.stream-card:hover .stream-arrow {
  background: var(--neon);
  color: var(--bg-0);
  border-color: var(--neon);
  transform: rotate(-45deg);
}
.stream-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.stream-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-faint);
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}
.stream-meta .followers { color: var(--white-dim); }

@media (max-width: 880px) { .streaming-grid { grid-template-columns: 1fr; } }
@media (min-width: 881px) and (max-width: 1100px) { .streaming-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── LIVE VISUALS ────────────────────────────────────── */
.visuals-section {
  background: linear-gradient(180deg, transparent, rgba(77, 168, 255, 0.04), transparent);
}
.visuals-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 14px;
}
.visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-1);
  cursor: pointer;
  transition: all .35s;
}
.visual:hover { border-color: var(--neon-soft); }
.visual:nth-child(1) { grid-row: 1 / 3; }
.visual-bg {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(77,168,255,0.04) 0 2px, transparent 2px 14px),
    radial-gradient(70% 60% at var(--rx, 50%) var(--ry, 40%), rgba(77, 168, 255, 0.3), transparent 70%),
    linear-gradient(180deg, var(--bg-2), var(--bg-0));
}
.visual-1 .visual-bg { --rx: 30%; --ry: 30%; }
.visual-2 .visual-bg {
  --rx: 70%; --ry: 50%;
  background:
    repeating-linear-gradient(0deg, rgba(180,210,255,0.03) 0 1px, transparent 1px 5px),
    radial-gradient(60% 80% at 50% 50%, rgba(77, 168, 255, 0.2), transparent 70%),
    linear-gradient(180deg, #0c1a36, var(--bg-0));
}
.visual-3 .visual-bg {
  background:
    radial-gradient(circle at 30% 70%, rgba(77, 168, 255, 0.35), transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(150, 200, 255, 0.18), transparent 50%),
    linear-gradient(180deg, #0a1428, var(--bg-0));
}
.visual-4 .visual-bg {
  background:
    repeating-linear-gradient(90deg, rgba(77,168,255,0.08) 0 1px, transparent 1px 24px),
    linear-gradient(180deg, #0a1024, var(--bg-0));
}
.visual-5 .visual-bg {
  background:
    repeating-linear-gradient(135deg, rgba(77,168,255,0.05) 0 3px, transparent 3px 18px),
    radial-gradient(80% 60% at 50% 100%, rgba(77, 168, 255, 0.4), transparent 70%),
    linear-gradient(180deg, #0a1428, #02030A);
}

.visual-overlay {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.7) 100%);
}
.visual-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  display: flex; align-items: center; gap: 8px;
}
.visual-label .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 8px var(--neon-glow); animation: pulse 2s infinite; }
.visual-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.visual:nth-child(1) .visual-title { font-size: 36px; }
.visual-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 6px;
}

@media (max-width: 880px) {
  .visuals-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }
  .visual:nth-child(1) { grid-row: 1 / 2; }
}

/* ─── ABOUT ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 88px;
  align-items: start;
}
.about-portrait {
  aspect-ratio: 3 / 4;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-1), #02030A);
  /* Dissolve edges into page darkness — top stays sharp (editorial crop) */
  -webkit-mask-image:
    linear-gradient(to bottom, black 45%, transparent 96%),
    linear-gradient(to right,  transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to bottom, black 45%, transparent 96%),
    linear-gradient(to right,  transparent 0%, black 5%, black 95%, transparent 100%);
  mask-composite: intersect;
}
.about-portrait-marks {
  position: absolute; inset: 0;
  padding: 18px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.about-portrait-corner {
  position: absolute;
  width: 10px; height: 10px;
  border: 1px solid rgba(180, 210, 255, 0.22);
}
.about-portrait-corner.tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.about-portrait-corner.tr { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.about-portrait-corner.bl { bottom: 14px; left: 14px; border-right: none; border-top: none; }
.about-portrait-corner.br { bottom: 14px; right: 14px; border-left: none; border-top: none; }
.about-portrait-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--white-faint);
  text-transform: uppercase;
}
.about-portrait-id {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--neon);
  text-transform: uppercase;
}
.about-editorial-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: contrast(0.94) brightness(0.85) saturate(0.92);
  transform: scale(1);
  transition: transform 7s ease-out;
}
.about-portrait:hover .about-editorial-img { transform: scale(1.03); }

.about-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* top-to-bottom atmospheric gradient */
    linear-gradient(to bottom, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.52) 100%),
    /* bottom dark pool */
    radial-gradient(ellipse 85% 45% at 50% 100%, rgba(5,6,10,0.65) 0%, transparent 70%),
    /* bottom-left corner */
    radial-gradient(ellipse 45% 38% at 0% 100%,  rgba(0,0,0,0.58) 0%, transparent 65%),
    /* bottom-right corner */
    radial-gradient(ellipse 45% 38% at 100% 100%, rgba(0,0,0,0.58) 0%, transparent 65%),
    /* left edge */
    radial-gradient(ellipse 20% 80% at 0% 50%,   rgba(0,0,0,0.22) 0%, transparent 70%),
    /* right edge */
    radial-gradient(ellipse 20% 80% at 100% 50%,  rgba(0,0,0,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.about-text { display: flex; flex-direction: column; gap: 40px; }
.about-text p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--white);
  text-wrap: pretty;
  max-width: 620px;
}
.about-text p.dim { color: var(--white-dim); font-size: 17px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-stat { padding: 32px 0; }
.about-stat .num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 40px;
  letter-spacing: -0.02em;
  color: var(--neon);
  text-shadow: 0 0 24px var(--neon-glow);
  line-height: 1;
}
.about-stat .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-top: 10px;
}

@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ─── SIGNUP ──────────────────────────────────────────── */
.signup-wrap {
  position: relative;
  border-radius: 24px;
  padding: 108px 72px;
  text-align: center;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(77, 168, 255, 0.2), transparent 60%),
    linear-gradient(180deg, rgba(20, 30, 55, 0.4), rgba(8, 12, 22, 0.6));
  border: 1px solid var(--line);
  overflow: hidden;
}
.signup-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--neon-soft), transparent 50%);
  border-radius: 24px;
  z-index: -1;
}
.signup-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 16px;
}
.signup-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 60px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 14px;
  text-wrap: balance;
  max-width: 720px;
  margin-inline: auto;
}
.signup-title em { font-style: italic; color: var(--neon); font-weight: 300; }
.signup-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 36px;
}
.signup-form {
  display: flex;
  gap: 8px;
  max-width: 520px;
  margin: 0 auto;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(5, 6, 10, 0.6);
  backdrop-filter: blur(12px);
}
.signup-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 18px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.01em;
}
.signup-form input::placeholder { color: var(--white-faint); }
.signup-form button {
  border: none;
  background: var(--neon);
  color: var(--bg-0);
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all .25s;
}
.signup-form button:hover { background: oklch(78% 0.18 245); box-shadow: 0 0 20px var(--neon-glow); }
.signup-form.success button { background: rgba(77, 168, 255, 0.2); color: var(--neon); }
.signup-perks {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-faint);
  flex-wrap: wrap;
}
.signup-perks span::before {
  content: "—";
  color: var(--neon);
  margin-right: 8px;
}

@media (max-width: 720px) {
  .signup-wrap { padding: 64px 24px; }
  .signup-form { flex-direction: column; padding: 12px; border-radius: 16px; }
  .signup-form input { text-align: center; padding: 12px; }
}

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 104px 32px 56px;
  margin-top: 80px;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {
  display: flex; flex-direction: column; gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.05em;
}
.footer-logo .neon {
  color: var(--neon);
  text-shadow: 0 0 16px var(--neon-glow);
}
.footer-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-dim);
  max-width: 280px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 18px;
  font-weight: 400;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--white);
  transition: color .2s;
}
.footer-col a:hover { color: var(--neon); }
.footer-col .contact {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--neon);
}

.footer-bottom {
  max-width: 1320px;
  margin: 64px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-faint);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .live {
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-bottom .live .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 10px var(--neon-glow); animation: pulse 1.8s infinite; }

@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

/* ─── PAGE-WIDE ATMOSPHERE ────────────────────────────── */
/* Fixed low-opacity drifting gradient — gives the whole site a breathing quality */
.page-atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 38% at 12% 72%, rgba(77,168,255,0.016), transparent 70%),
    radial-gradient(ellipse 48% 32% at 88% 22%, rgba(77,168,255,0.013), transparent 70%),
    radial-gradient(ellipse 60% 45% at 50% 55%, rgba(30,50,110,0.010), transparent 70%);
  animation: atmosphere-drift 48s ease-in-out infinite alternate;
}
@keyframes atmosphere-drift {
  0%   { transform: translate(0,    0)    scale(1);    opacity: 0.65; }
  33%  { transform: translate(-2%, -3%)   scale(1.04); opacity: 1;    }
  66%  { transform: translate(3%,   2%)   scale(0.97); opacity: 0.80; }
  100% { transform: translate(-1%,  4%)   scale(1.06); opacity: 0.90; }
}

/* ─── FULL-PAGE GRAIN ─────────────────────────────────── */
/* Consistent filmic texture across the entire site */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.014;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grain-page 1.3s steps(1) infinite;
}
@keyframes grain-page {
  0%   { background-position:   0%   0%; }
  16%  { background-position:  -8%  -5%; }
  33%  { background-position:  20% -12%; }
  50%  { background-position:  -4%  18%; }
  66%  { background-position:  14%   7%; }
  83%  { background-position: -16%   4%; }
  100% { background-position:   0%   0%; }
}

/* ─── REVEAL ANIMS ────────────────────────────────────── */
/* Slower, expo-ease curve — more cinematic deceleration */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(3px);
  transition:
    opacity   1.6s cubic-bezier(.16,1,.3,1),
    transform 1.6s cubic-bezier(.16,1,.3,1),
    filter    0.9s cubic-bezier(.16,1,.3,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}
