:root {
  --bg: #04020a;
  --bg-soft: #0b0618;
  --panel: rgba(16, 10, 32, 0.68);
  --panel-strong: rgba(20, 11, 42, 0.9);
  --line: rgba(220, 190, 255, 0.17);
  --text: #f8f3ff;
  --muted: #b8a8d5;
  --purple: #8d45ff;
  --purple-2: #c69dff;
  --white-glow: #fff;
  --red: #ff3535;
  --radius: 28px;
  --shadow: 0 0 50px rgba(141, 69, 255, 0.22), 0 0 140px rgba(141, 69, 255, 0.13);
  --max: 1180px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(150, 70, 255, 0.27), transparent 34%),
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.14), transparent 25%),
    radial-gradient(circle at 55% 90%, rgba(95, 31, 255, 0.2), transparent 42%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  body { overflow-x: clip; }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

#storm {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
  opacity: 0.88;
  pointer-events: none;
}


.lightning-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .28;
  background-image:
    url("data:image/svg+xml,%3Csvg width='900' height='700' viewBox='0 0 900 700' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.20' stroke-width='2'%3E%3Cpolyline points='80,0 160,105 122,185 240,290 202,370 330,510'/%3E%3Cpolyline points='650,0 574,95 615,145 508,245 566,335 450,470'/%3E%3Cpolyline points='820,90 720,170 754,226 646,322 682,402 590,520'/%3E%3C/g%3E%3Cg fill='none' stroke='%23c69dff' stroke-opacity='.26' stroke-width='1.4'%3E%3Cpolygon points='82,0 160,105 122,185 46,112'/%3E%3Cpolygon points='240,290 202,370 330,510 292,352'/%3E%3Cpolygon points='650,0 574,95 615,145 706,72'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(174deg, transparent 0 10%, rgba(255,255,255,.12) 10.2%, transparent 10.7% 43%, rgba(161,92,255,.15) 43.2%, transparent 43.8%),
    linear-gradient(158deg, transparent 0 25%, rgba(255,255,255,.08) 25.2%, transparent 25.8% 66%, rgba(198,157,255,.14) 66.2%, transparent 67%);
  background-size: 900px 700px, 100% 100%, 100% 100%;
  mix-blend-mode: screen;
  animation: lightningField 16s ease-in-out infinite;
}


.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.aurora {
  position: fixed;
  z-index: -3;
  width: 42vw;
  height: 42vw;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.28;
  pointer-events: none;
  animation: drift 13s ease-in-out infinite alternate;
}
.aurora-a { left: -12vw; top: 20vh; background: #7d35ff; }
.aurora-b { right: -12vw; top: 5vh; background: #ffffff; animation-delay: -5s; opacity: 0.18; }

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 360px;
  height: 360px;
  margin-left: -180px;
  margin-top: -180px;
  pointer-events: none;
  z-index: 2;
  border-radius: 50%;
  opacity: 0.26;
  background: radial-gradient(circle, rgba(195, 155, 255, 0.24), rgba(125, 53, 255, 0.08) 38%, transparent 68%);
  mix-blend-mode: screen;
  transform: translate3d(-100vw, -100vh, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 14px max(18px, calc((100vw - var(--max)) / 2 + 23px));
  backdrop-filter: blur(20px);
  isolation: isolate;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0 0 28px 28px;
  background:
    linear-gradient(90deg, rgba(141, 69, 255, 0.16), transparent 18%, rgba(255, 255, 255, 0.1) 48%, transparent 72%, rgba(141, 69, 255, 0.18)),
    linear-gradient(180deg, rgba(14, 8, 30, 0.84), rgba(10, 5, 22, 0.52));
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.42), inset 0 -1px 0 rgba(198, 157, 255, 0.12);
  z-index: -1;
}

.brand, .nav, .header-cta { position: relative; z-index: 1; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: radial-gradient(circle, #fff, #aa78ff 35%, #3a118d 78%);
  color: #080011;
  box-shadow: 0 0 24px rgba(198, 157, 255, 0.65);
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav a { transition: color .2s ease, text-shadow .2s ease; }
.nav a:hover { color: #fff; text-shadow: 0 0 16px rgba(198,157,255,.9); }

.header-cta {
  padding: 10px 16px;
  border: 1px solid rgba(198, 157, 255, 0.45);
  border-radius: 999px;
  color: #fff;
  background: rgba(129, 63, 255, 0.16);
  box-shadow: inset 0 0 20px rgba(255,255,255,.06), 0 0 22px rgba(141,69,255,.22);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}

main {
  position: relative;
  z-index: 3;
  overflow: hidden;
}

@supports (overflow: clip) {
  main { overflow: clip; }
}
.hero {
  width: min(var(--max), calc(100vw - 34px));
  min-height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.86fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding: clamp(58px, 8vh, 96px) 0 clamp(52px, 7vh, 88px);
}

.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--purple-2);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, #fff, transparent);
  box-shadow: 0 0 16px #fff;
}

h1, h2, h3, p { margin-top: 0; }
.glitch {
  position: relative;
  margin: 0;
  font-size: clamp(4rem, 13vw, 10.4rem);
  line-height: 0.82;
  letter-spacing: -0.085em;
  font-weight: 1000;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(108deg, #ffffff 0%, #fff 31%, #e9dbff 42%, #ffffff 48%, #b983ff 54%, #ffffff 62%, #f8f3ff 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: logoGlass 5.6s cubic-bezier(.42,0,.18,1) infinite;
  text-shadow:
    0 0 14px rgba(255,255,255,.92),
    0 0 30px rgba(198,157,255,.76),
    0 0 80px rgba(141,69,255,.55);
}
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: .26;
  pointer-events: none;
}
.glitch::before { transform: translate(1.5px, -1.5px); color: #c69dff; clip-path: inset(0 0 58% 0); animation: glitchA 8.5s ease-in-out infinite alternate-reverse; }
.glitch::after { transform: translate(-1.5px, 1.5px); color: #fff; clip-path: inset(54% 0 0 0); animation: glitchB 9.2s ease-in-out infinite alternate-reverse; }

.hero-lead {
  max-width: 660px;
  margin: 18px 12px 0;
  color: #e8dcff;
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.45;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow:
    0 0 14px rgba(255,255,255,.62),
    0 0 34px rgba(198, 157, 255, .78),
    0 0 72px rgba(141, 69, 255, .52);
}
.hero-lead .by-word {
  text-transform: none;
  letter-spacing: .03em;
  opacity: .92;
}


.hero-actions, .socials, .mail-row { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-actions { margin-top: 34px; }
.button, .copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  outline: none;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.button:hover, .copy-button:hover { transform: translateY(-2px); }
.button-primary {
  position: relative;
  overflow: hidden;
  border: 0;
  background: linear-gradient(135deg, #d9c0ff 0%, #a15cff 42%, #6d2cff 72%, #40119f 100%);
  color: #090014;
  box-shadow: 0 0 26px rgba(141,69,255,.54), 0 0 70px rgba(141,69,255,.22);
  isolation: isolate;
}

.button-primary:hover { box-shadow: 0 0 36px rgba(198,157,255,.55), 0 0 96px rgba(141,69,255,.36); }
.button-ghost, .copy-button {
  background: rgba(255,255,255,.045);
  color: #fff;
  border-color: rgba(198,157,255,.3);
}
.button-ghost:hover, .copy-button:hover { background: rgba(141,69,255,.16); border-color: rgba(255,255,255,.42); box-shadow: 0 0 38px rgba(141,69,255,.22); }

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.signal-row span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  color: #d8c5ff;
  font-size: .72rem;
  letter-spacing: .14em;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  perspective: 1000px;
  transform-style: preserve-3d;
}
.portal-ring {
  display: none;
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(78vw, 540px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, transparent 0 15%, rgba(255,255,255,.88) 18%, rgba(141,69,255,.8) 22%, transparent 27% 43%, rgba(198,157,255,.88) 49%, transparent 55% 72%, rgba(255,255,255,.65) 77%, rgba(141,69,255,.76) 81%, transparent 86%),
    radial-gradient(circle, transparent 53%, rgba(198,157,255,.22) 54%, transparent 58%);
  filter: blur(.1px) drop-shadow(0 0 28px rgba(198,157,255,.8));
  opacity: .86;
  animation: spin 15s linear infinite;
}
.portal-ring::before, .portal-ring::after {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 0 42px rgba(198,157,255,.16), 0 0 28px rgba(198,157,255,.22);
}
.portal-ring::after { inset: 84px; border-style: dashed; opacity: .6; animation: spinPlain 8s linear infinite reverse; }

.main-cover {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(72vw, 440px);
  margin: 0;
  transform: translate(-50%, -50%) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  background: #10071f;
  box-shadow: var(--shadow), 0 35px 90px rgba(0,0,0,.62);
  animation: floatCover 5.5s ease-in-out infinite;
  z-index: 2;
}
.release-image::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.28) 48%, transparent 58%);
  transform: translateX(-70%) rotate(6deg);
  animation: shine 5.6s ease-in-out infinite;
  pointer-events: none;
}
.main-cover img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: opacity .28s ease, transform .42s cubic-bezier(.2,.9,.18,1), filter .28s ease; }
.main-cover figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(5,2,12,.64);
  backdrop-filter: blur(18px);
}
.main-cover strong { letter-spacing: .12em; font-size: .86rem; }
.main-cover span { color: var(--muted); font-size: .78rem; }

.cover-orbit {
  position: absolute;
  width: 118px;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(12, 5, 26, .55);
  box-shadow: 0 0 34px rgba(198,157,255,.42), 0 25px 65px rgba(0,0,0,.55);
  animation: hoverOrbit 6s ease-in-out infinite;
  cursor: pointer;
  transition: transform .42s cubic-bezier(.2,.9,.18,1), opacity .28s ease, filter .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.cover-orbit img { aspect-ratio: 1; object-fit: cover; width: 100%; transition: opacity .28s ease, transform .42s cubic-bezier(.2,.9,.18,1), filter .28s ease; }
.cover-orbit-one { top: 52px; right: 20px; transform: rotate(9deg); z-index: 1; }
.cover-orbit-two { left: 8px; bottom: 62px; transform: rotate(-10deg); animation-delay: -2.2s; z-index: 4; }
.cover-orbit:hover,
.cover-orbit:focus-visible {
  border-color: rgba(255,255,255,.38);
  box-shadow: 0 0 24px rgba(198,157,255,.30), 0 25px 65px rgba(0,0,0,.55);
  filter: saturate(1.03) contrast(1.02);
}
.cover-orbit:focus-visible { outline: 2px solid rgba(255,255,255,.9); outline-offset: 6px; }
.hero-visual.is-swapping .main-cover img,
.cover-orbit.is-swapping img {
  opacity: .16;
  transform: scale(1.06);
  filter: blur(8px) brightness(1.45);
}
.hero-visual.is-swapping .main-cover {
  box-shadow: 0 0 65px rgba(255,255,255,.34), 0 0 130px rgba(141,69,255,.34), 0 35px 90px rgba(0,0,0,.62);
}
.cover-orbit.is-swapping { opacity: .72; }

.stream-panel, .releases, .contact {
  width: min(var(--max), calc(100vw - 34px));
  margin: 0 auto;
  padding: clamp(46px, 6.2vw, 78px) 0;
}
.stream-panel {
  padding-top: clamp(62px, 8vw, 104px);
  display: grid;
  grid-template-columns: minmax(0, .68fr) minmax(320px, .72fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.section-heading { max-width: 760px; margin-bottom: 22px; }
.stream-panel h2, .section-heading h2, .identity h2, .contact h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5.2vw, 4.8rem);
  line-height: .96;
  letter-spacing: -0.06em;
  text-shadow: 0 0 28px rgba(198,157,255,.3);
}
.section-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}
.spotify-card, .contact-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: 0 26px 90px rgba(0,0,0,.35), inset 0 0 80px rgba(141,69,255,.06);
  backdrop-filter: blur(18px);
}
.spotify-card {
  padding: 12px;
  border-radius: 30px;
  position: relative;
}
.spotify-card::before, .contact-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.24), rgba(141,69,255,.38), transparent 50%, rgba(255,255,255,.16));
  filter: blur(18px);
  opacity: .32;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.release-card {
  display: block;
  color: inherit;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 6, 28, .66);
  box-shadow: 0 26px 90px rgba(0,0,0,.33);
  backdrop-filter: blur(18px);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.release-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,.35);
  box-shadow: 0 0 40px rgba(198,157,255,.26), 0 32px 100px rgba(0,0,0,.44);
}
.release-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background: radial-gradient(circle at 50% 20%, var(--card-glow, #8d45ff), transparent 45%);
  pointer-events: none;
}
.red-card { --card-glow: #ff3535; }
.violet-card { --card-glow: #d04dff; }
.release-image { position: relative; overflow: hidden; }
.release-image img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .4s ease, filter .4s ease; }
.release-card:hover .release-image img { transform: scale(1.045); filter: saturate(1.15) contrast(1.06); }
.release-content { position: relative; padding: 22px; display: flex; min-height: 150px; flex-direction: column; justify-content: flex-start; }
.release-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: #dfc8ff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.release-content h3 {
  margin: 0 0 18px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: .94;
  letter-spacing: -0.055em;
}
.release-content a, .release-cta {
  display: inline-flex;
  margin-top: auto;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  text-shadow: 0 0 18px rgba(198,157,255,.72);
}
.release-cta::after {
  content: "↗";
  margin-left: 8px;
  transform: translateY(-1px);
}
.release-card:focus-visible {
  outline: 2px solid rgba(255,255,255,.92);
  outline-offset: 5px;
}

.identity {
  display: flex;
  justify-content: center;
}
.identity-grid {
  width: min(760px, 100%);
  display: grid;
  gap: 16px;
}

.identity-box {
  border-radius: 24px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.identity-box::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(198,157,255,.18);
  filter: blur(30px);
}
.identity-box span {
  color: var(--purple-2);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.identity-box h3 {
  margin: 10px 0 8px;
  font-size: 1.35rem;
}
.identity-box p { color: var(--muted); line-height: 1.68; margin: 0; }

.contact { padding-bottom: 64px; }
.contact-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: clamp(26px, 5vw, 52px);
  min-height: 320px;
}
.contact-card::after {
  content: "ICE B34M";
  position: absolute;
  right: -0.12em;
  bottom: -0.18em;
  color: rgba(255,255,255,.035);
  font-size: clamp(4rem, 14vw, 12rem);
  line-height: .8;
  font-weight: 1000;
  letter-spacing: -0.1em;
  pointer-events: none;
}
.mail-row { margin-top: 28px; align-items: center; }
.mail-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: #fff;
  font-weight: 900;
  box-shadow: inset 0 0 30px rgba(255,255,255,.04);
}
.copy-button { color: #fff; font: inherit; }
.socials { margin-top: 24px; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(198,157,255,.28);
  background: rgba(141,69,255,.1);
  color: #e8dcff;
  font-weight: 850;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.socials a:hover { transform: translateY(-2px); background: rgba(141,69,255,.19); box-shadow: 0 0 28px rgba(141,69,255,.25); color: #fff; }

.site-footer {
  width: min(var(--max), calc(100vw - 34px));
  margin: 0 auto;
  padding: 0 0 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: .9rem;
}
.footer-center {
  justify-self: center;
  color: #fff;
  font-weight: 900;
  letter-spacing: .16em;
  text-shadow: 0 0 22px rgba(198,157,255,.65);
}
.site-footer a {
  justify-self: end;
  color: #fff;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(198,157,255,.28);
  border-radius: 999px;
  background: rgba(141,69,255,.08);
  text-shadow: 0 0 18px rgba(198,157,255,.45);
}
.site-footer a:hover { color: #fff; text-shadow: 0 0 24px rgba(255,255,255,.75); box-shadow: 0 0 26px rgba(141,69,255,.26); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.section-in { animation: sectionIn .9s ease both; }

@keyframes lightningField {
  0%, 72%, 100% { opacity: .1; transform: translateY(-1.8vh); }
  78% { opacity: .33; transform: translateY(0); }
  84% { opacity: .14; transform: translateY(1.2vh); }
  90% { opacity: .28; transform: translateY(2.2vh); }
}
@keyframes sectionIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(8vw,-4vh,0) scale(1.16); } }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes spinPlain { to { transform: rotate(360deg); } }
@keyframes floatCover { 0%, 100% { margin-top: 0; } 50% { margin-top: -14px; } }
@keyframes hoverOrbit { 0%,100% { margin-top: 0; } 50% { margin-top: -20px; } }
@keyframes shine { 0%, 58% { transform: translateX(-70%) rotate(6deg); } 80%, 100% { transform: translateX(75%) rotate(6deg); } }
@keyframes logoGlass {
  0%, 18% { background-position: 130% 50%; filter: brightness(1); }
  42% { background-position: 42% 50%; filter: brightness(1.34); }
  58% { background-position: -18% 50%; filter: brightness(1.12); }
  100% { background-position: -78% 50%; filter: brightness(1); }
}
@keyframes glitchA {
  0%, 64%, 100% { clip-path: inset(0 0 58% 0); opacity: .2; }
  72% { clip-path: inset(6% 0 62% 0); opacity: .32; }
  82% { clip-path: inset(0 0 50% 0); opacity: .18; }
}
@keyframes glitchB {
  0%, 68%, 100% { clip-path: inset(54% 0 0 0); opacity: .18; }
  76% { clip-path: inset(58% 0 8% 0); opacity: .3; }
  88% { clip-path: inset(50% 0 12% 0); opacity: .16; }
}


@media (hover: none), (pointer: coarse) {
  .cursor-glow { display: none; }
  .button:hover,
  .copy-button:hover,
  .socials a:hover,
  .cover-orbit:hover {
    transform: none;
    filter: none;
  }
  .release-card:hover .release-image img {
    transform: none;
    filter: none;
  }
  .cover-orbit:hover {
    border-color: rgba(255,255,255,.2);
  }
}

@media (max-width: 940px) {
  .site-header { padding-inline: 15px; }
  .nav { display: none; }
  .hero, .stream-panel { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 54px; padding-bottom: 52px; }
  .hero-visual { min-height: 445px; order: -1; }
  .main-cover { width: min(84vw, 410px); }
  .cover-orbit-one { right: 0; }
  .cover-orbit-two { left: 0; }
  .release-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .header-cta { display: none; }
  .site-header::before { inset: 0; border-radius: 0 0 22px 22px; }
  .brand { font-size: .82rem; }
  .hero { width: min(var(--max), calc(100vw - 24px)); padding-top: 42px; padding-bottom: 46px; }
  .hero-visual { min-height: 380px; }
  .cover-orbit { width: 88px; border-radius: 17px; }
  .portal-ring { display: none !important; }
  .main-cover { border-radius: 25px; width: min(86vw, 360px); }
  .main-cover figcaption { left: 10px; right: 10px; bottom: 10px; padding: 10px; }
  .glitch { font-size: clamp(3.3rem, 24vw, 6.2rem); }
  .hero-lead { font-size: 1rem; margin-left: 0; margin-right: 0; }
  .button, .copy-button, .mail-link { width: 100%; }
  .stream-panel, .releases, .contact, .site-footer { width: min(var(--max), calc(100vw - 24px)); }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer a, .footer-center { justify-self: center; }
  .contact-card::after { display: none; }
  .cursor-glow { display: none; }
  .aurora { width: 72vw; height: 72vw; filter: blur(58px); }
  .stream-panel, .releases, .contact { padding-block: 42px; }
  .releases { padding-top: 52px; padding-bottom: 42px; }
  .release-grid {
    position: relative;
    display: block;
    height: min(74vw, 330px);
    margin-top: 8px;
  }
  .release-card {
    position: absolute;
    top: 16px;
    left: 50%;
    width: min(58vw, 230px);
    border-radius: 24px;
    transform-origin: 50% 110%;
  }
  .release-card:nth-child(1) { transform: translateX(-77%) rotate(-11deg); z-index: 1; }
  .release-card:nth-child(2) { transform: translateX(-50%) rotate(0deg); z-index: 3; top: 0; }
  .release-card:nth-child(3) { transform: translateX(-23%) rotate(11deg); z-index: 2; }
  .release-card:hover:nth-child(1) { transform: translateX(-77%) rotate(-11deg); }
  .release-card:hover:nth-child(2) { transform: translateX(-50%) rotate(0deg); }
  .release-card:hover:nth-child(3) { transform: translateX(-23%) rotate(11deg); }
  .release-card:hover .release-image img { transform: none; filter: none; }
  .release-content {
    position: absolute;
    left: 9px;
    right: 9px;
    bottom: 9px;
    min-height: 0;
    padding: 10px 11px;
    border-radius: 16px;
    background: rgba(5,2,12,.64);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(16px);
  }
  .release-label,
  .release-cta { display: none; }
  .release-content h3 {
    margin: 0;
    font-size: .82rem;
    line-height: 1;
    letter-spacing: .08em;
  }

}

@media (max-width: 420px) {
  .hero-visual { min-height: 350px; }
  .main-cover { width: min(88vw, 332px); }
  .cover-orbit { width: 76px; }
  .cover-orbit-one { top: 36px; right: 2px; }
  .cover-orbit-two { left: 2px; bottom: 52px; }
  .main-cover figcaption { font-size: .8rem; }
  .release-grid { height: min(82vw, 310px); }
  .release-card { width: min(64vw, 215px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  #storm, .cursor-glow { display: none; }
}
