:root {
  --bg: #04040b;
  --bg-soft: #08091a;
  --panel: rgba(13, 15, 34, 0.64);
  --panel-strong: rgba(11, 13, 31, 0.88);
  --line: rgba(121, 232, 255, 0.22);
  --line-strong: rgba(121, 232, 255, 0.48);
  --text: #f6fbff;
  --muted: #aeb8cf;
  --cyan: #45e6ff;
  --cyan-2: #74f7ff;
  --pink: #ff3df2;
  --violet: #7b4dff;
  --blue: #1a72ff;
  --gold: #ffcc70;
  --green: #49ffb8;
  --shadow-cyan: 0 0 34px rgba(69, 230, 255, 0.35);
  --shadow-pink: 0 0 40px rgba(255, 61, 242, 0.34);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1180px;
  --header: 82px;
  --scroll: 0;
  --mouse-x: 0.5;
  --mouse-y: 0.5;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(circle at calc(var(--mouse-x) * 100%) calc(var(--mouse-y) * 100%), rgba(69, 230, 255, 0.16), transparent 26rem),
    radial-gradient(circle at 84% 6%, rgba(255, 61, 242, 0.18), transparent 30rem),
    radial-gradient(circle at 10% 70%, rgba(31, 104, 255, 0.20), transparent 34rem),
    linear-gradient(135deg, #03030a 0%, #07071b 45%, #020207 100%);
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: #03030a;
  background: var(--cyan);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

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

.skip-link:focus {
  z-index: 9999;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.8rem 1rem;
  margin: 0;
  clip: auto;
  border-radius: 999px;
  background: var(--cyan);
  color: #020207;
  font-weight: 800;
}

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

.site-vignette,
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.site-vignette {
  z-index: -2;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.20) 50%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(69, 230, 255, 0.035), transparent 32%, transparent 68%, rgba(255, 61, 242, 0.04));
}

.scanlines {
  z-index: 80;
  opacity: 0.18;
  mix-blend-mode: screen;
  background:
    repeating-linear-gradient(to bottom, rgba(255,255,255,0.035) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(69,230,255,0.028) 0 1px, transparent 1px 90px);
}

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 150;
  background: rgba(255,255,255,0.04);
}

.scroll-meter span {
  display: block;
  height: 100%;
  width: calc(var(--scroll) * 100%);
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--gold));
  box-shadow: 0 0 22px rgba(69, 230, 255, 0.8);
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 28px), 1160px);
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(126, 234, 255, 0.20);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(9, 12, 30, 0.62), rgba(22, 9, 34, 0.38));
  box-shadow: 0 18px 60px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(18px) saturate(1.3);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  border-color: rgba(69, 230, 255, 0.42);
  background: rgba(5, 7, 20, 0.82);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-sigil {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(255,255,255,0.45), transparent 14%),
    conic-gradient(from 90deg, var(--cyan), var(--pink), var(--violet), var(--cyan));
  box-shadow: var(--shadow-cyan), inset 0 0 12px rgba(255,255,255,0.22);
}

.brand-sigil::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: rgba(4, 4, 11, 0.88);
}

.brand-sigil span {
  position: relative;
  font-weight: 1000;
  letter-spacing: -0.05em;
  font-size: 1.2rem;
  text-shadow: 0 0 16px rgba(69, 230, 255, 0.8);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1.08rem;
  letter-spacing: 0.04em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.73rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  position: relative;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: rgba(246, 251, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(69, 230, 255, 0.20), 0 0 18px rgba(69, 230, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
  box-shadow: 0 0 12px rgba(69, 230, 255, 0.65);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.section {
  position: relative;
  min-height: 100vh;
  padding: clamp(7rem, 11vw, 11rem) 1.25rem;
  display: grid;
  align-items: center;
  transform-style: preserve-3d;
}

.section-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-section {
  overflow: hidden;
  padding-top: calc(var(--header) + 4.5rem);
}

.hero-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.holo-grid {
  position: absolute;
  left: 50%;
  bottom: -14vh;
  width: 120vw;
  height: 58vh;
  transform: translateX(-50%) perspective(720px) rotateX(62deg) translateY(calc(var(--scroll) * -80px));
  transform-origin: bottom;
  background:
    linear-gradient(rgba(69,230,255,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,61,242,0.16) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to top, black, rgba(0,0,0,0.82), transparent 78%);
  opacity: 0.8;
  animation: gridMove 12s linear infinite;
}

.orb {
  position: absolute;
  width: 38rem;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.26;
}

.orb-a {
  top: 12%;
  right: -14rem;
  background: radial-gradient(circle, rgba(255,61,242,0.85), transparent 62%);
  animation: floatOrb 11s ease-in-out infinite;
}

.orb-b {
  left: -16rem;
  bottom: 12%;
  background: radial-gradient(circle, rgba(69,230,255,0.9), transparent 60%);
  animation: floatOrb 14s ease-in-out infinite reverse;
}

.hero-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  perspective: 1200px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.05rem;
  color: var(--cyan-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(69, 230, 255, 0.5);
}

.eyebrow span {
  width: 34px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  box-shadow: 0 0 14px rgba(69, 230, 255, 0.7);
}

.hero-copy h1,
.section-heading h2,
.listen-card h2 {
  margin: 0;
  font-weight: 1000;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.hero-copy h1 {
  max-width: 860px;
  font-size: clamp(4rem, 10.2vw, 8.9rem);
  text-transform: uppercase;
}

.hero-copy .line {
  display: block;
  filter: drop-shadow(0 0 18px rgba(69, 230, 255, 0.08));
}

.neon-text {
  color: transparent;
  -webkit-text-stroke: 1px rgba(246, 251, 255, 0.68);
  background: linear-gradient(90deg, #fff, var(--cyan), var(--pink), #fff);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: neonText 7s ease-in-out infinite;
  text-shadow: 0 0 35px rgba(255, 61, 242, 0.34);
}

.hero-lead {
  max-width: 680px;
  margin: 1.7rem 0 0;
  color: rgba(246,251,255,0.78);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

.hero-actions,
.release-actions,
.platform-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin-top: 2.2rem;
}

.btn {
  position: relative;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.28rem;
  border-radius: 999px;
  overflow: hidden;
  font-weight: 950;
  letter-spacing: 0.02em;
  transform-style: preserve-3d;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  opacity: 0;
  background: radial-gradient(circle at var(--tilt-x, 50%) var(--tilt-y, 50%), rgba(255,255,255,0.55), transparent 28%);
  transition: opacity 0.25s ease;
}

.btn:hover::before {
  opacity: 0.55;
}

.btn span {
  position: relative;
}

.btn-symbol {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary {
  color: #020207;
  background: linear-gradient(135deg, var(--cyan), #9bfff7, var(--green));
  box-shadow: 0 0 32px rgba(69, 230, 255, 0.36), 0 20px 46px rgba(0,0,0,0.34);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.065);
  box-shadow: inset 0 0 0 1px rgba(69, 230, 255, 0.14), 0 18px 42px rgba(0,0,0,0.22);
}

.btn:hover,
.platform-card:hover,
.release-actions a:hover {
  transform: translateY(-3px) scale(1.012);
}

.signal-strip {
  margin-top: 2.4rem;
  width: min(100%, 670px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  color: rgba(246,251,255,0.68);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.signal-strip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 16px rgba(255, 61, 242, 0.8);
}

.hero-stage {
  min-height: 560px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.portal-scene {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  width: min(82vw, 510px);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry)) translateZ(0);
  transition: transform 0.15s ease-out;
}

.portal-shadow {
  position: absolute;
  inset: 23% 6% -5% 6%;
  transform: rotateX(78deg) translateZ(-86px);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(69,230,255,0.32), rgba(255,61,242,0.16) 38%, transparent 68%);
  filter: blur(18px);
}

.portal-ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  transform-style: preserve-3d;
  border: 2px solid rgba(69, 230, 255, 0.42);
  box-shadow:
    0 0 25px rgba(69, 230, 255, 0.45),
    inset 0 0 28px rgba(255, 61, 242, 0.22);
}

.ring-outer {
  inset: 2%;
  border-width: 3px;
  border-color: rgba(69, 230, 255, 0.36);
  animation: spin3d 16s linear infinite;
}

.ring-mid {
  inset: 14%;
  border-color: rgba(255, 61, 242, 0.45);
  transform: rotateX(62deg) rotateZ(18deg);
  animation: spin3dReverse 12s linear infinite;
}

.ring-inner {
  inset: 27%;
  border-color: rgba(255, 204, 112, 0.45);
  transform: rotateY(58deg) rotateZ(-18deg);
  animation: spin3d 9s linear infinite reverse;
}

.portal-core {
  position: absolute;
  inset: 31%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translateZ(86px);
  background:
    radial-gradient(circle at 34% 25%, rgba(255,255,255,0.7), transparent 16%),
    radial-gradient(circle, rgba(69,230,255,0.78), rgba(123,77,255,0.62) 40%, rgba(255,61,242,0.38) 66%, rgba(0,0,0,0.3));
  box-shadow: 0 0 55px rgba(69,230,255,0.64), 0 0 92px rgba(255,61,242,0.32), inset 0 0 34px rgba(255,255,255,0.2);
}

.core-pulse {
  position: absolute;
  inset: 5%;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.4);
  animation: corePulse 2.4s ease-in-out infinite;
}

.core-logo {
  position: relative;
  font-weight: 1000;
  letter-spacing: -0.06em;
  font-size: clamp(1.4rem, 3.8vw, 2.5rem);
  text-shadow: 0 0 16px rgba(255,255,255,0.78), 0 0 28px rgba(69,230,255,0.8);
}

.orbit {
  position: absolute;
  inset: 13%;
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: orbitSpin 13s linear infinite;
}

.orbit-two {
  inset: 20%;
  animation-duration: 8.5s;
  animation-direction: reverse;
  transform: rotateX(65deg);
}

.orbit span {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.orbit span:nth-child(1) { top: 0; left: 50%; }
.orbit span:nth-child(2) { right: 6%; top: 68%; background: var(--pink); box-shadow: 0 0 18px var(--pink); }
.orbit span:nth-child(3) { left: 10%; top: 72%; background: var(--gold); box-shadow: 0 0 18px var(--gold); }

.sound-tower {
  position: absolute;
  left: 50%;
  bottom: 5%;
  height: 100px;
  width: min(86%, 420px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  transform: translateX(-50%) translateZ(120px) rotateX(18deg);
}

.sound-tower i {
  width: 18px;
  height: var(--h);
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(to top, rgba(69,230,255,0.22), var(--cyan), #fff);
  box-shadow: 0 0 18px rgba(69,230,255,0.65);
  animation: towerBeat 1.2s ease-in-out infinite;
  animation-delay: calc(var(--h) * -0.01s);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(246,251,255,0.66);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 28px;
  height: 44px;
  border: 1px solid rgba(69,230,255,0.35);
  border-radius: 999px;
  box-shadow: inset 0 0 16px rgba(69,230,255,0.1), 0 0 16px rgba(69,230,255,0.18);
}

.scroll-cue i::before {
  content: "";
  display: block;
  width: 5px;
  height: 8px;
  margin: 8px auto;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
  animation: scrollDot 1.6s ease-in-out infinite;
}

.split-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 140px;
}

.section-heading h2,
.listen-card h2 {
  font-size: clamp(2.4rem, 5.8vw, 5.9rem);
  max-width: 980px;
}

.section-heading.center {
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-intro {
  max-width: 780px;
  margin: 1.3rem auto 0;
  color: rgba(246,251,255,0.72);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.section-intro.left {
  margin-left: 0;
}

.story-stack {
  display: grid;
  gap: 1rem;
}

.story-card,
.universe-card,
.listen-card,
.release-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(126, 234, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    radial-gradient(circle at 10% 0%, rgba(69,230,255,0.12), transparent 28%),
    rgba(8, 9, 26, 0.64);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(18px) saturate(1.24);
  transform-style: preserve-3d;
}

.story-card::before,
.universe-card::before,
.listen-card::before,
.release-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--tilt-x, 50%) var(--tilt-y, 50%), rgba(255,255,255,0.18), transparent 30%);
  transition: opacity 0.25s ease;
}

.story-card:hover::before,
.universe-card:hover::before,
.listen-card:hover::before,
.release-card:hover::before {
  opacity: 1;
}

.story-card {
  min-height: 230px;
  padding: clamp(1.3rem, 2.7vw, 2.1rem);
  border-radius: var(--radius-xl);
}

.story-card:nth-child(2) {
  transform: translateX(4%);
}

.story-card:nth-child(3) {
  transform: translateX(-3%);
}

.card-number {
  display: inline-flex;
  margin-bottom: 1.4rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(69,230,255,0.88);
  font-size: 2.2rem;
  font-weight: 1000;
  letter-spacing: -0.08em;
  text-shadow: 0 0 24px rgba(69,230,255,0.44);
}

.story-card h3,
.universe-card h3,
.release-card h3 {
  position: relative;
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.story-card p,
.universe-card p,
.release-card p,
.listen-card p {
  position: relative;
  margin: 0.85rem 0 0;
  color: rgba(246,251,255,0.70);
}

.universe-grid {
  margin-top: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  perspective: 1200px;
}

.universe-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem;
  border-radius: 30px;
}

.universe-card:nth-child(even) {
  margin-top: 3rem;
}

.card-glow {
  position: absolute;
  inset: -30% -20% auto auto;
  width: 210px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,61,242,0.30), transparent 66%);
  filter: blur(2px);
}

.universe-icon {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--cyan);
  font-size: 1.8rem;
  background: rgba(255,255,255,0.07);
  box-shadow: inset 0 0 0 1px rgba(69,230,255,0.18), 0 0 30px rgba(69,230,255,0.15);
}

.releases-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}

.spotify-status {
  margin-top: 1.25rem;
  display: inline-flex;
  max-width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(69,230,255,0.25);
  border-radius: 999px;
  color: rgba(246,251,255,0.74);
  background: rgba(255,255,255,0.055);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.035), 0 0 24px rgba(69,230,255,0.11);
  font-size: 0.85rem;
}

.deck-wrap {
  position: relative;
  min-width: 0;
}

.deck-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.deck-btn {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(69,230,255,0.24);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255,255,255,0.07);
  cursor: pointer;
  box-shadow: 0 0 20px rgba(69,230,255,0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.deck-btn:hover {
  transform: translateY(-2px);
  background: rgba(69,230,255,0.14);
}

.release-deck {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(265px, 36%);
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.4rem 0.2rem 1.4rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(69,230,255,0.6) rgba(255,255,255,0.06);
  perspective: 1200px;
}

.release-card {
  min-height: 440px;
  display: grid;
  grid-template-rows: 1fr auto;
  border-radius: 34px;
  scroll-snap-align: start;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.release-card:hover {
  border-color: rgba(69,230,255,0.42);
}

.release-art {
  position: relative;
  min-height: 260px;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  background: #111;
}

.release-art img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transform: scale(1.035);
  transition: transform 0.45s ease;
}

.release-card:hover .release-art img {
  transform: scale(1.085);
}

.release-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(4,4,11,0.95), transparent 50%),
    linear-gradient(135deg, rgba(69,230,255,0.14), rgba(255,61,242,0.12));
}

.synthetic-art {
  display: grid;
  place-items: center;
}

.synthetic-art span {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  font-weight: 1000;
  font-size: 3rem;
  box-shadow: 0 0 42px rgba(255,255,255,0.18), inset 0 0 0 1px rgba(255,255,255,0.15);
}

.art-a { background: radial-gradient(circle at 30% 20%, #fff, transparent 8%), conic-gradient(from 90deg, #45e6ff, #ff3df2, #7b4dff, #45e6ff); }
.art-b { background: radial-gradient(circle at 70% 15%, #fff, transparent 8%), conic-gradient(from 180deg, #ffcc70, #ff3df2, #1a72ff, #49ffb8, #ffcc70); }
.art-c { background: radial-gradient(circle at 50% 20%, #fff, transparent 8%), conic-gradient(from 20deg, #12152f, #45e6ff, #04040b, #ff3df2, #12152f); }

.release-body {
  position: relative;
  padding: 1.15rem;
}

.release-type {
  margin: 0 0 0.55rem !important;
  color: var(--cyan) !important;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.release-actions {
  margin-top: 1rem;
}

.release-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.62rem 0.86rem;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 850;
  font-size: 0.82rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.listen-section {
  min-height: 92vh;
}

.contact-section {
  min-height: 78vh;
  display: grid;
  align-items: center;
}

.contact-shell {
  display: grid;
  place-items: center;
}

.contact-card {
  position: relative;
  width: min(100%, 920px);
  padding: clamp(1.5rem, 5vw, 4rem);
  border: 1px solid rgba(69,230,255,0.22);
  border-radius: 42px;
  text-align: center;
  background:
    radial-gradient(circle at 15% 0%, rgba(69,230,255,0.18), transparent 34%),
    radial-gradient(circle at 85% 100%, rgba(255,61,242,0.16), transparent 34%),
    rgba(255,255,255,0.055);
  box-shadow: 0 40px 120px rgba(0,0,0,0.46), inset 0 0 0 1px rgba(255,255,255,0.055);
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: -45%;
  background: conic-gradient(from 160deg, transparent, rgba(69,230,255,0.16), transparent, rgba(255,61,242,0.14), transparent);
  animation: portalSpin 14s linear infinite;
  opacity: 0.55;
  pointer-events: none;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card .eyebrow {
  justify-content: center;
}

.contact-card h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.3rem, 7vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.contact-card p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(246,251,255,0.72);
}

.contact-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(69,230,255,0.34);
  color: var(--text);
  background: linear-gradient(135deg, rgba(69,230,255,0.16), rgba(255,61,242,0.12));
  box-shadow: 0 20px 60px rgba(69,230,255,0.14);
  font-weight: 900;
}

.contact-mail i {
  color: var(--cyan);
  font-style: normal;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}


.listen-shell {
  display: grid;
  place-items: center;
}

.listen-card {
  width: min(100%, 980px);
  padding: clamp(1.5rem, 5vw, 4.2rem);
  border-radius: 42px;
  text-align: center;
}

.listen-card .eyebrow {
  justify-content: center;
}

.listen-card p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.08rem;
}

.listen-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.46;
}

.listen-visual span {
  position: absolute;
  width: 14rem;
  height: 14rem;
  border: 1px solid rgba(69,230,255,0.28);
  border-radius: 50%;
  animation: listenRing 7s linear infinite;
}

.listen-visual span:nth-child(1) { left: 8%; top: 12%; }
.listen-visual span:nth-child(2) { right: 8%; top: 18%; border-color: rgba(255,61,242,0.28); animation-duration: 9s; }
.listen-visual span:nth-child(3) { left: 18%; bottom: -12%; border-color: rgba(255,204,112,0.22); animation-duration: 12s; }
.listen-visual span:nth-child(4) { right: 18%; bottom: -8%; animation-duration: 8s; animation-direction: reverse; }

.platform-grid {
  justify-content: center;
  margin-top: 2rem;
}

.platform-card {
  position: relative;
  min-width: min(100%, 260px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.15rem 1rem;
  align-items: center;
  text-align: left;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(69,230,255,0.22);
  border-radius: 24px;
  background: rgba(255,255,255,0.07);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.platform-card:hover {
  border-color: rgba(69,230,255,0.52);
  background: rgba(69,230,255,0.10);
}

.platform-card strong {
  font-size: 1.08rem;
}

.platform-card small {
  grid-column: 1;
  color: rgba(246,251,255,0.62);
}

.platform-card span {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--cyan);
  font-size: 1.2rem;
}

.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(246,251,255,0.58);
  border-top: 1px solid rgba(255,255,255,0.10);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--cyan);
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(38px) rotateX(8deg) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) rotateX(0) scale(1);
}

[data-tilt] {
  --rx: 0deg;
  --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateZ(0);
}

[data-tilt].tilting {
  transition: transform 0.08s ease-out;
}

@keyframes gridMove {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 74px, 74px 0; }
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-3rem, 2rem, 0) scale(1.12); }
}

@keyframes neonText {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes spin3d {
  from { transform: rotateX(62deg) rotateZ(0deg); }
  to { transform: rotateX(62deg) rotateZ(360deg); }
}

@keyframes spin3dReverse {
  from { transform: rotateY(58deg) rotateZ(360deg); }
  to { transform: rotateY(58deg) rotateZ(0deg); }
}

@keyframes corePulse {
  0%, 100% { transform: scale(0.92); opacity: 0.35; }
  50% { transform: scale(1.08); opacity: 0.9; }
}

@keyframes orbitSpin {
  from { transform: rotateX(68deg) rotateZ(0); }
  to { transform: rotateX(68deg) rotateZ(360deg); }
}

@keyframes towerBeat {
  0%, 100% { transform: scaleY(0.72); filter: hue-rotate(0deg); }
  50% { transform: scaleY(1.14); filter: hue-rotate(40deg); }
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(16px); opacity: 1; }
}

@keyframes listenRing {
  from { transform: rotateX(65deg) rotateZ(0deg) scale(0.9); }
  to { transform: rotateX(65deg) rotateZ(360deg) scale(1.08); }
}

@media (max-width: 980px) {
  :root { --header: 72px; }

  .site-header {
    height: auto;
    min-height: var(--header);
    align-items: center;
    border-radius: 34px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header) + 26px) 14px auto 14px;
    display: grid;
    padding: 1rem;
    border: 1px solid rgba(69,230,255,0.22);
    border-radius: 28px;
    background: rgba(5, 7, 20, 0.94);
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 1rem;
  }

  .hero-layout,
  .split-shell,
  .releases-shell {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 460px;
    order: -1;
  }

  .sticky-heading {
    position: relative;
    top: auto;
  }

  .universe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .universe-card:nth-child(even) {
    margin-top: 0;
  }

  .release-deck {
    grid-auto-columns: minmax(260px, 68%);
  }
}

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at 50% 6%, rgba(69, 230, 255, 0.16), transparent 20rem),
      radial-gradient(circle at 50% 72%, rgba(255, 61, 242, 0.14), transparent 24rem),
      #04040b;
  }

  .site-header {
    top: 10px;
    width: min(calc(100% - 18px), 1160px);
    padding: 0.55rem;
  }

  .brand-sigil {
    width: 42px;
    height: 42px;
  }

  .brand-text small {
    display: none;
  }

  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 18vw, 4.7rem);
  }

  .hero-stage {
    min-height: 360px;
  }

  .portal-scene {
    width: min(92vw, 380px);
  }

  .signal-strip {
    gap: 0.5rem;
  }

  .universe-grid {
    grid-template-columns: 1fr;
  }

  .universe-card {
    min-height: 260px;
  }

  .release-deck {
    grid-auto-columns: minmax(250px, 88%);
  }

  .release-card {
    min-height: 410px;
  }

  .deck-controls {
    justify-content: flex-start;
  }

  .listen-card,
  .contact-card {
    border-radius: 30px;
  }

  .contact-mail {
    width: 100%;
    font-size: 0.96rem;
  }

  .site-footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  #universe {
    display: none;
  }
}


/* =========================================================
   JaMiMo Ultra Animated Edition
   Extra 3D, canvas, animated neon layers och bildbaserad portal-känsla.
   ========================================================= */

:root {
  --ultra-cyan: #3ef2ff;
  --ultra-pink: #ff25ef;
  --ultra-blue: #2b6cff;
  --ultra-violet: #8b3dff;
  --ultra-hot: #ff2f83;
  --beat: 0.5;
}

body::before {
  content: "";
  position: fixed;
  inset: -22vmax;
  z-index: -7;
  pointer-events: none;
  background:
    radial-gradient(circle at calc(var(--mouse-x) * 100%) calc(var(--mouse-y) * 100%), rgba(62,242,255,0.22), transparent 22vmax),
    conic-gradient(from calc(var(--scroll) * 360deg) at 50% 40%, rgba(62,242,255,0.14), rgba(255,37,239,0.12), rgba(43,108,255,0.10), rgba(62,242,255,0.14));
  filter: blur(28px) saturate(1.4);
  opacity: 0.78;
  animation: ultraSkySpin 26s linear infinite;
}

.ultra-bg-poster {
  position: fixed;
  inset: -4vmax;
  z-index: -6;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4,4,11,0.08), rgba(4,4,11,0.72) 72%, rgba(4,4,11,0.94)),
    radial-gradient(circle at 50% 42%, rgba(0,0,0,0), rgba(0,0,0,0.52) 64%, rgba(0,0,0,0.92)),
    url("../img/jamimo-portal-reference.webp") center / cover no-repeat;
  opacity: 0.20;
  mix-blend-mode: screen;
  transform: translate3d(calc((var(--mouse-x) - 0.5) * -18px), calc((var(--mouse-y) - 0.5) * -14px), 0) scale(calc(1.06 + var(--scroll) * 0.08));
  filter: saturate(1.45) contrast(1.12) brightness(0.88);
  animation: posterBreath 9s ease-in-out infinite;
}

.ultra-energy-field {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
  perspective: 900px;
}

.ultra-energy-field::before,
.ultra-energy-field::after {
  content: "";
  position: absolute;
  inset: -30%;
  opacity: 0.25;
  mix-blend-mode: screen;
  background:
    repeating-conic-gradient(from 0deg at 50% 48%, rgba(62,242,255,0.0) 0 10deg, rgba(62,242,255,0.16) 11deg 12deg, rgba(255,37,239,0.0) 13deg 22deg, rgba(255,37,239,0.12) 23deg 24deg),
    radial-gradient(circle at 50% 48%, transparent 0 26%, rgba(62,242,255,0.10) 27% 28%, transparent 29% 100%);
  transform: rotate(calc(var(--scroll) * 85deg)) scale(1.2);
  filter: blur(1px);
  animation: rayPulse 6s ease-in-out infinite;
}

.ultra-energy-field::after {
  opacity: 0.16;
  transform: rotate(calc(var(--scroll) * -120deg)) scale(1.35);
  animation-duration: 8s;
  animation-direction: reverse;
}

.ultra-aurora,
.ultra-ring,
.ultra-laser {
  position: absolute;
  display: block;
  pointer-events: none;
  mix-blend-mode: screen;
}

.ultra-aurora {
  width: 64vmax;
  height: 28vmax;
  border-radius: 999px;
  filter: blur(38px);
  opacity: 0.34;
  transform: rotate(-22deg);
}

.aurora-a {
  left: -16vmax;
  top: 9vh;
  background: radial-gradient(ellipse, rgba(62,242,255,0.72), rgba(43,108,255,0.20) 44%, transparent 72%);
  animation: auroraSlide 13s ease-in-out infinite;
}

.aurora-b {
  right: -18vmax;
  top: 28vh;
  background: radial-gradient(ellipse, rgba(255,37,239,0.76), rgba(139,61,255,0.22) 48%, transparent 72%);
  animation: auroraSlide 16s ease-in-out infinite reverse;
}

.aurora-c {
  left: 22vw;
  bottom: -12vmax;
  background: radial-gradient(ellipse, rgba(255,47,131,0.52), rgba(62,242,255,0.16) 48%, transparent 72%);
  animation: auroraSlide 18s ease-in-out infinite;
}

.ultra-ring {
  left: 50%;
  top: 44%;
  width: min(78vw, 900px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(62,242,255,0.20);
  box-shadow: 0 0 60px rgba(62,242,255,0.18), inset 0 0 54px rgba(255,37,239,0.12);
  transform: translate(-50%, -50%) rotateX(68deg) rotateZ(calc(var(--scroll) * 180deg));
  opacity: 0.32;
  animation: ultraRingDrift 11s linear infinite;
}

.ultra-ring-b {
  width: min(92vw, 1100px);
  border-color: rgba(255,37,239,0.22);
  animation-duration: 15s;
  animation-direction: reverse;
}

.ultra-ring-c {
  width: min(58vw, 680px);
  border-style: dashed;
  border-color: rgba(255,255,255,0.18);
  animation-duration: 8s;
}

.ultra-laser {
  width: 140vw;
  height: 2px;
  left: -20vw;
  top: 22vh;
  background: linear-gradient(90deg, transparent, rgba(62,242,255,0.0), rgba(62,242,255,0.85), rgba(255,255,255,0.9), rgba(255,37,239,0.75), transparent);
  filter: blur(0.4px) drop-shadow(0 0 12px rgba(62,242,255,0.7));
  transform: rotate(18deg);
  opacity: 0.34;
  animation: laserSweep 7s ease-in-out infinite;
}

.ultra-laser-b {
  top: 62vh;
  transform: rotate(-14deg);
  background: linear-gradient(90deg, transparent, rgba(255,37,239,0.0), rgba(255,37,239,0.78), rgba(255,255,255,0.9), rgba(62,242,255,0.70), transparent);
  animation-duration: 9s;
  animation-delay: -3s;
}

.ultra-laser-c {
  top: 78vh;
  transform: rotate(4deg);
  animation-duration: 11s;
  animation-delay: -6s;
  opacity: 0.22;
}

.site-header {
  isolation: isolate;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  z-index: -1;
  background: linear-gradient(90deg, rgba(62,242,255,0.0), rgba(62,242,255,0.32), rgba(255,37,239,0.34), rgba(62,242,255,0.0));
  opacity: 0.42;
  filter: blur(11px);
  animation: headerCharge 5.5s ease-in-out infinite;
}

.hero-poster-glow {
  position: absolute;
  inset: -8%;
  background:
    radial-gradient(circle at 50% 38%, rgba(62,242,255,0.16), transparent 24%),
    radial-gradient(circle at 62% 42%, rgba(255,37,239,0.16), transparent 28%);
  filter: blur(10px);
  transform: translateY(calc(var(--scroll) * -80px));
  animation: heroGlowPulse 5.6s ease-in-out infinite;
}

.hyper-tunnel {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(112vw, 1220px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(70deg) rotateZ(calc(var(--scroll) * -220deg));
  background:
    repeating-radial-gradient(circle, transparent 0 7.2%, rgba(62,242,255,0.08) 7.5% 7.7%, transparent 8% 14%),
    repeating-conic-gradient(from 0deg, transparent 0 16deg, rgba(255,37,239,0.11) 17deg 18deg, transparent 19deg 30deg);
  opacity: 0.52;
  mask-image: radial-gradient(circle, transparent 0 19%, black 27% 58%, transparent 72%);
  animation: tunnelSpin 16s linear infinite;
}

.hero-layout {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  text-shadow: 0 0 42px rgba(62,242,255,0.16), 0 0 88px rgba(255,37,239,0.10);
}

.hero-copy .line:nth-child(1) {
  transform: translateZ(22px);
}

.hero-copy .line:nth-child(2) {
  transform: translateZ(44px);
}

.hero-copy .line:nth-child(3) {
  transform: translateZ(18px);
}

.neon-text {
  filter: drop-shadow(0 0 18px rgba(62,242,255,0.42)) drop-shadow(0 0 44px rgba(255,37,239,0.32));
}

.ultra-signal-strip {
  background:
    linear-gradient(90deg, rgba(62,242,255,0.12), rgba(255,37,239,0.12)),
    rgba(255,255,255,0.05);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07), 0 0 28px rgba(62,242,255,0.10);
}

.ultra-portal {
  animation: portalFloat 6s ease-in-out infinite;
}

.portal-backdrop-image {
  position: absolute;
  inset: -16%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(4,4,11,0.0) 0 38%, rgba(4,4,11,0.52) 63%, rgba(4,4,11,0.0) 78%),
    url("../img/jamimo-portal-reference.webp") center / cover no-repeat;
  opacity: 0.34;
  transform: translateZ(-96px) scale(1.1);
  filter: saturate(1.35) brightness(0.85) blur(0.5px);
  mix-blend-mode: screen;
  animation: innerPosterPulse 8s ease-in-out infinite;
}

.portal-beam-map {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 0deg, rgba(62,242,255,0) 0 10deg, rgba(62,242,255,0.22) 10.4deg 10.8deg, rgba(255,37,239,0) 12deg 22deg, rgba(255,37,239,0.16) 22.3deg 22.9deg),
    radial-gradient(circle, transparent 0 35%, rgba(255,255,255,0.10) 36%, transparent 37% 100%);
  opacity: 0.44;
  transform: translateZ(-30px) rotateZ(calc(var(--scroll) * 360deg));
  animation: beamSpin 9s linear infinite;
  mask-image: radial-gradient(circle, transparent 0 23%, black 33% 72%, transparent 80%);
}

.portal-ring {
  box-shadow:
    0 0 34px rgba(62,242,255,0.45),
    0 0 92px rgba(255,37,239,0.25),
    inset 0 0 36px rgba(255,255,255,0.10);
}

.ring-outer {
  filter: drop-shadow(0 0 22px rgba(62,242,255,0.72));
}

.ring-mid {
  filter: drop-shadow(0 0 20px rgba(255,37,239,0.72));
}

.portal-core {
  box-shadow:
    0 0 75px rgba(62,242,255,0.74),
    0 0 130px rgba(255,37,239,0.42),
    inset 0 0 42px rgba(255,255,255,0.25);
}

.sound-tower i {
  animation: ultraTowerBeat 0.98s ease-in-out infinite;
  animation-delay: calc(var(--h) * -0.016s);
}

.story-card,
.universe-card,
.listen-card,
.release-card,
.contact-card {
  box-shadow:
    0 34px 95px rgba(0,0,0,0.46),
    0 0 56px rgba(62,242,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

.story-card::after,
.universe-card::after,
.release-card::after,
.listen-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.18) 45%, transparent 58%);
  transform: translateX(-60%) rotate(8deg);
  transition: opacity 0.35s ease, transform 0.75s ease;
}

.story-card:hover::after,
.universe-card:hover::after,
.release-card:hover::after,
.listen-card:hover::after,
.contact-card:hover::after {
  opacity: 1;
  transform: translateX(62%) rotate(8deg);
}

.release-card {
  transform-origin: center;
}

.release-art::before {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: 1;
  opacity: 0.22;
  background: repeating-conic-gradient(from 0deg, transparent 0 14deg, rgba(62,242,255,0.35) 15deg 16deg, transparent 17deg 28deg, rgba(255,37,239,0.28) 29deg 30deg);
  mix-blend-mode: screen;
  animation: coverEnergy 10s linear infinite;
}

.release-body {
  z-index: 2;
}

.listen-visual {
  filter: drop-shadow(0 0 26px rgba(62,242,255,0.42));
}

.contact-mail {
  position: relative;
  overflow: hidden;
}

.contact-mail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-120%);
  animation: contactSweep 3.4s ease-in-out infinite;
}

.section {
  --local-progress: 0;
}

.section-shell {
  transform: translateY(calc((0.5 - var(--local-progress)) * 12px));
}

@keyframes ultraSkySpin {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1); }
}

@keyframes posterBreath {
  0%, 100% { opacity: 0.17; filter: saturate(1.35) contrast(1.06) brightness(0.74); }
  50% { opacity: 0.25; filter: saturate(1.68) contrast(1.18) brightness(0.98); }
}

@keyframes rayPulse {
  0%, 100% { opacity: 0.16; filter: blur(1px); }
  50% { opacity: 0.32; filter: blur(0.2px); }
}

@keyframes auroraSlide {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-22deg) scale(1); }
  50% { transform: translate3d(6vw, -3vh, 0) rotate(-16deg) scale(1.18); }
}

@keyframes ultraRingDrift {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}

@keyframes laserSweep {
  0%, 100% { opacity: 0.10; translate: -12vw 0; }
  45%, 58% { opacity: 0.46; translate: 10vw 0; }
}

@keyframes headerCharge {
  0%, 100% { opacity: 0.20; transform: scaleX(0.92); }
  50% { opacity: 0.72; transform: scaleX(1.02); }
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.62; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes tunnelSpin {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}

@keyframes portalFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@keyframes innerPosterPulse {
  0%, 100% { opacity: 0.25; transform: translateZ(-96px) scale(1.06) rotateZ(0deg); }
  50% { opacity: 0.42; transform: translateZ(-96px) scale(1.14) rotateZ(1.2deg); }
}

@keyframes beamSpin {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}

@keyframes ultraTowerBeat {
  0%, 100% { transform: scaleY(0.52) translateZ(0); filter: hue-rotate(0deg) brightness(0.92); }
  36% { transform: scaleY(1.26) translateZ(10px); filter: hue-rotate(34deg) brightness(1.35); }
  62% { transform: scaleY(0.78) translateZ(0); }
}

@keyframes coverEnergy {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}

@keyframes contactSweep {
  0%, 62%, 100% { transform: translateX(-120%); }
  82% { transform: translateX(120%); }
}

@media (max-width: 980px) {
  .ultra-bg-poster { opacity: 0.14; }
  .hyper-tunnel { width: 140vw; }
  .ultra-ring { width: 120vw; }
}

@media (max-width: 640px) {
  .ultra-energy-field::before,
  .ultra-energy-field::after { opacity: 0.12; }
  .ultra-laser { opacity: 0.16; }
  .portal-backdrop-image { opacity: 0.22; }
  .section-shell { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ultra-bg-poster,
  .ultra-energy-field,
  .hero-poster-glow,
  .hyper-tunnel,
  .portal-backdrop-image,
  .portal-beam-map {
    animation: none !important;
  }
  .ultra-bg-poster { opacity: 0.16; transform: none; }
  .ultra-energy-field { opacity: 0.25; }
  .section-shell { transform: none; }
}
