:root {
  color-scheme: dark;
  --bg: #070808;
  --surface: #101313;
  --surface-2: #171b1a;
  --text: #f2f7ef;
  --muted: #a9b5ac;
  --line: rgba(242, 247, 239, 0.14);
  --acid: #d8ff3e;
  --teal: #15d3c4;
  --amber: #ffb84d;
  --pink: #ff5f8f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --container: min(1120px, calc(100vw - 2rem));

  /* Semantic z-index scale */
  --z-header: 20;
  --z-player: 15;
  --z-cookie: 30;
  --z-overlay: 10;
  --z-modal: 40;
  --z-tooltip: 50;

  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(4.5rem + 40px + 0.75rem);
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, rgba(7, 8, 8, 0.2), var(--bg) 38rem), var(--bg);
}

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

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

.site-header {
  position: fixed;
  z-index: var(--z-header);
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(7, 8, 8, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand, .header-inner, .site-header nav, .hero-actions, .social-banner, .social-banner div, .link-list a, footer {
  display: flex;
  align-items: center;
}

.header-inner {
  width: var(--container);
  justify-content: space-between;
  gap: 1rem;
  margin-inline: auto;
}

.brand { gap: 0; font-weight: 800; letter-spacing: 0; }

.brand-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: #07100d;
  background: url("/favicon-180.png") center / cover no-repeat;
  border-radius: 8px;
  font-size: 0;
  box-shadow: 0 0 18px rgba(216, 255, 62, 0.25);
}

.site-header nav {
  gap: clamp(0.6rem, 2vw, 1.4rem);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header nav a {
  transition: color 180ms ease, text-shadow 180ms ease;
}

.site-header nav a:hover {
  color: var(--acid);
  text-shadow:
    0 0 6px rgba(216, 255, 62, 0.3),
    0 0 20px rgba(216, 255, 62, 0.12);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(4.5rem, 8vw, 7rem) clamp(1rem, 5vw, 4.5rem) 2rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(216, 255, 62, 0.2), transparent 26rem),
    linear-gradient(90deg, rgba(7, 8, 8, 0.92), rgba(7, 8, 8, 0.54) 46%, rgba(7, 8, 8, 0.86)),
    linear-gradient(180deg, rgba(7, 8, 8, 0.18), var(--bg) 94%);
}

.hero-content {
  width: var(--container);
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

.kicker {
  margin: 0 0 0.9rem;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 0;
  font-size: clamp(4.8rem, 16vw, 10rem);
  line-height: 0.85;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-wrap: balance;
}

h3 { font-size: 1.3rem; line-height: 1.1; }

p { color: var(--muted); line-height: 1.65; text-wrap: pretty; }

.hero-copy {
  max-width: min(100%, 68rem);
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  text-align: center;
}

.hero-title-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 2.5rem);
  margin-bottom: 1.4rem;
}

.hero-logo-frame {
  width: clamp(10rem, 24vw, 18rem);
  aspect-ratio: 1 / 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: clamp(0.28rem, 0.7vw, 0.5rem);
  background: rgba(216, 255, 62, 0.18);
  border: 2px solid var(--acid);
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(216, 255, 62, 0.28),
    0 0 42px rgba(216, 255, 62, 0.42),
    var(--shadow);
  transform: translateY(0.2rem);
}

.hero-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #07100d;
  background: var(--acid);
}

.social-banner {
  width: var(--container);
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
  padding: 1rem;
  background: rgba(10, 12, 12, 0.7);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.social-banner-title, .release-card h3 { display: block; }

.social-banner-title {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.social-banner div {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.social-banner a {
  min-height: 2.4rem;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.75rem;
  color: var(--text);
  background: rgba(242, 247, 239, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.social-banner a:hover {
  color: #07100d;
  background: var(--acid);
  border-color: var(--acid);
}

.section {
  width: var(--container);
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(3rem, 5vw, 5rem) clamp(1rem, 5vw, 4.5rem);
}

.section-intro {
  max-width: 60rem;
  margin-bottom: 1.5rem;
}

.section-intro p { max-width: 46rem; }

.compact { margin-bottom: 1rem; }

.music-section {
  background: linear-gradient(135deg, rgba(21, 211, 196, 0.08), transparent 32rem), var(--bg);
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.release-card, .legal-grid article {
  min-height: 14rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.release-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.release-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.release-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 8, 0.15) 0%, rgba(7, 8, 8, 0.82) 70%, var(--bg) 100%);
  z-index: 1;
}

.release-card-content {
  position: relative;
  z-index: 2;
}

.release-card-content span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.release-card:nth-child(2) .release-card-content span { color: var(--teal); }
.release-card:nth-child(3) .release-card-content span { color: var(--pink); }

.release-card .release-card-content p {
  margin-bottom: 0;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: stretch;
}

/* Lazy-render sezioni sotto la piega per migliorare LCP */
#music, #about, #labels, #contact, #privacy {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

.about-copy {
  columns: 2 20rem;
  column-gap: 2rem;
}

.labels-section {
  background: var(--surface-2);
  border-block: 1px solid var(--line);
}

.label-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.label-cloud span {
  padding: 0.65rem 0.85rem;
  color: var(--text);
  background: rgba(242, 247, 239, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, rgba(216, 255, 62, 0.16), rgba(21, 211, 196, 0.05)), var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.swipe-arrows {
  position: relative;
  height: 3.5rem;
  overflow: hidden;
}

@media (min-width: 861px) {
  .swipe-arrows {
    margin-top: auto;
    margin-bottom: -1.5rem;
  }
}

.swipe-group {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-110%, -50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: swipe-group 2.4s ease-in-out infinite;
}

.swipe-group:nth-child(2) {
  animation-delay: 1.2s;
}

/* Chevron: clip-path triangle (no borders) — replaces the two-border rotate(45deg) technique
   that was flagged as a [side-tab] false-positive by the impeccable detector. */
.chevron {
  display: block;
  width: 0.45rem;
  height: 0.75rem;
  background: var(--acid);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(216, 255, 62, 0.3));
  animation: chevron-pop 2.4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.12s);
}

@keyframes swipe-group {
  0% {
    opacity: 0;
    transform: translate(-110%, -50%);
  }
  15% {
    opacity: 1;
    transform: translate(0%, -50%);
  }
  55% {
    opacity: 1;
    transform: translate(calc(100% + 2rem), -50%);
  }
  80% {
    opacity: 0;
    transform: translate(calc(100% + 2rem), -50%);
  }
  100% {
    opacity: 0;
    transform: translate(calc(100% + 2rem), -50%);
  }
}

@keyframes chevron-pop {
  0%, 20% {
    opacity: 0;
    transform: scale(0.6);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
  70% {
    opacity: 1;
    transform: scale(1);
  }
  85% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 0;
    transform: scale(0.6);
  }
}

.link-list { flex-direction: column; gap: 0.75rem; }

.link-list a {
  width: 100%;
  justify-content: space-between;
  min-height: 4rem;
  padding: 1rem 1.15rem;
  background: rgba(242, 247, 239, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.link-list a:hover { border-color: var(--acid); }

.legal-section { background: #0b0c0c; }

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.legal-grid article { min-height: auto; }

.legal-grid article:nth-child(3) {
  grid-column: 1 / -1;
}

.cookie-banner {
  position: fixed;
  z-index: var(--z-cookie);
  right: 1rem;
  bottom: 1rem;
  width: min(35rem, calc(100vw - 2rem));
  display: grid;
  gap: 0.85rem;
  padding: 1.15rem;
  background: rgba(16, 19, 19, 0.96);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.cookie-banner[hidden] { display: none; }

@keyframes cookie-enter {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner:not([hidden]) {
  animation: cookie-enter 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner:not([hidden]) {
    animation: none;
  }
}

.cookie-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cookie-privacy-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(242, 247, 239, 0.25);
  transition: color 180ms ease, text-decoration-color 180ms ease;
  margin-right: auto;
}

.cookie-privacy-link:hover {
  color: var(--acid);
  text-decoration-color: var(--acid);
}

.cookie-decline {
  min-height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--muted);
  background: rgba(242, 247, 239, 0.06);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cookie-decline:hover {
  color: var(--text);
  border-color: rgba(242, 247, 239, 0.25);
  background: rgba(242, 247, 239, 0.1);
}

.cookie-accept {
  min-height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  color: #07100d;
  background: var(--acid);
  transition: box-shadow 180ms ease;
}

.cookie-accept:hover {
  box-shadow: 0 0 20px rgba(216, 255, 62, 0.3);
}

footer {
  width: var(--container);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-inline: auto;
  padding: 1.5rem 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer p { margin: 0; }
footer > a:last-child { justify-self: end; }

.footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  opacity: 0.86;
  transition: opacity 160ms ease, transform 160ms ease;
}

.footer-mark:hover {
  opacity: 1;
  transform: translateY(-0.08rem);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--muted);
  border-radius: 1px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sp-drawer {
  position: fixed;
  z-index: var(--z-player);
  top: 4.5rem;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 8, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.sp-toggle {
  width: 100%;
  display: block;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 180ms ease;
}

.sp-drawer:hover .sp-toggle {
  background: rgba(242, 247, 239, 0.04);
}

.sp-toggle-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--container);
  margin-inline: auto;
  padding: 0.45rem 0;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sp-toggle-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sp-track {
  text-align: center;
  justify-self: center;
}

.sp-arrows {
  justify-self: end;
}

/* push main content below the fixed header + player toggle bar */
main {
  margin-top: calc(4.5rem + 40px);
}

@media (max-width: 860px) {
  main {
    margin-top: calc(4.5rem + 36px);
  }
}

.sp-led {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-led-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(216, 255, 62, 0) 20%,
    rgba(216, 255, 62, 0.25) 35%,
    rgba(216, 255, 62, 0.45) 45%,
    rgba(216, 255, 62, 0.25) 55%,
    rgba(216, 255, 62, 0) 70%,
    transparent 100%
  );
  opacity: 0.7;
  animation: sp-glow-sweep 2.8s linear infinite;
  will-change: transform;
  transition: opacity 300ms ease;
}

.sp-led-dot {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow:
    0 0 4px 1px rgba(216, 255, 62, 0.35),
    0 0 12px 3px rgba(216, 255, 62, 0.1);
  animation: sp-dot-breathe 2s ease-in-out infinite;
  transition: box-shadow 300ms ease;
  will-change: transform;
}

.sp-drawer:hover .sp-led-glow {
  opacity: 1;
  animation-duration: 2s;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(216, 255, 62, 0) 15%,
    rgba(216, 255, 62, 0.4) 30%,
    rgba(216, 255, 62, 0.6) 45%,
    rgba(216, 255, 62, 0.4) 60%,
    rgba(216, 255, 62, 0) 75%,
    transparent 100%
  );
}

.sp-drawer:hover .sp-led-dot {
  box-shadow:
    0 0 6px 2px rgba(216, 255, 62, 0.5),
    0 0 18px 6px rgba(216, 255, 62, 0.2);
  animation-duration: 1.4s;
}

@keyframes sp-glow-sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes sp-dot-breathe {
  0%, 100% {
    transform: scale(0.85);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

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

  .sp-led-dot {
    opacity: 0.85;
    transform: none;
  }

  .sp-arrows-glow {
    opacity: 0.4;
  }

  html {
    scroll-behavior: auto;
  }
}

.sp-arrows {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 0.6;
  color: var(--muted);
  font-size: 0.6rem;
  transition: transform 300ms ease;
  justify-self: end;
}

.sp-drawer:hover .sp-arrows {
  transform: rotate(180deg);
}

.sp-arrows-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(216, 255, 62, 0.3);
  box-shadow: 0 0 4px 1px rgba(216, 255, 62, 0.1);
  animation: sp-arrow-pulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sp-arrow-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.9;
  }
}

.sp-drawer:hover .sp-arrows-glow {
  border-color: rgba(216, 255, 62, 0.6);
  animation-duration: 1.2s;
}

.sp-label {
  color: var(--text);
  white-space: nowrap;
}

.sp-track {
  color: var(--acid);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.85;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  justify-self: center;
}

/* SoundCloud drawer reveal: animate grid-template-rows 0fr → 1fr instead of max-height.
   max-height transitions cause layout thrash; the grid trick is the modern, performant alternative
   and pairs cleanly with the transform/opacity reveal and ease-out-expo easing. */
.sp-content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-8px);
  transition: grid-template-rows 400ms cubic-bezier(0.19, 1, 0.22, 1),
              opacity 400ms cubic-bezier(0.19, 1, 0.22, 1),
              transform 400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.sp-content-inner {
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.sp-drawer:hover .sp-content,
.sp-drawer.sp-open .sp-content {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.sp-inner {
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
}

.sp-inner-container {
  width: var(--container);
  margin-inline: auto;
}

.sp-iframe {
  display: block;
  border-radius: 8px;
}

/* Facaded SoundCloud player: poster + play button. The real iframe is only
   injected on click, which keeps third-party cookies / inspector issues off
   the page until the visitor actually wants to play. */
.sp-poster {
  position: relative;
  display: block;
  width: 100%;
  height: 169px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0c0c center / cover no-repeat;
  overflow: hidden;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.sp-poster:hover,
.sp-poster:focus-visible {
  border-color: var(--acid);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(216, 255, 62, 0.15);
}

.sp-poster:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 2px;
}

.sp-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 240ms ease, transform 480ms ease;
}

.sp-poster:hover img,
.sp-poster:focus-visible img {
  opacity: 0.85;
  transform: scale(1.03);
}

.sp-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #07100d;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), 0 0 24px rgba(216, 255, 62, 0.4);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.sp-poster:hover .sp-play,
.sp-poster:focus-visible .sp-play {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 36px rgba(216, 255, 62, 0.6);
}

.sp-poster-cta {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.7rem;
  color: var(--text);
  background: rgba(7, 8, 8, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: color 200ms ease, border-color 200ms ease;
}

.sp-poster:hover .sp-poster-cta,
.sp-poster:focus-visible .sp-poster-cta {
  border-color: var(--acid);
  color: var(--acid);
}

@media (prefers-reduced-motion: reduce) {
  .sp-poster,
  .sp-poster img,
  .sp-play,
  .sp-poster-cta {
    transition: none;
  }
  .sp-poster:hover img,
  .sp-poster:focus-visible img {
    transform: none;
  }
  .sp-poster:hover .sp-play,
  .sp-poster:focus-visible .sp-play {
    transform: translate(-50%, -50%);
  }
}

.sc-links {
  margin-top: 6px;
  font-size: 0.65rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.sc-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease;
}

.sc-links a:hover {
  color: var(--acid);
}

/* Touch/click fallback: toggle class via JS */
.sp-drawer.sp-open .sp-arrows {
  transform: rotate(180deg);
}

.sp-drawer.sp-open .sp-led-glow {
  opacity: 1;
  animation-duration: 2s;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(216, 255, 62, 0) 15%,
    rgba(216, 255, 62, 0.4) 30%,
    rgba(216, 255, 62, 0.6) 45%,
    rgba(216, 255, 62, 0.4) 60%,
    rgba(216, 255, 62, 0) 75%,
    transparent 100%
  );
}

.sp-drawer.sp-open .sp-led-dot {
  box-shadow:
    0 0 6px 2px rgba(216, 255, 62, 0.5),
    0 0 18px 6px rgba(216, 255, 62, 0.2);
  animation-duration: 1.4s;
}

.sp-drawer.sp-open .sp-arrows-glow {
  border-color: rgba(216, 255, 62, 0.6);
  animation-duration: 1.2s;
}

.release-card {
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.release-card:hover {
  border-color: var(--acid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(216, 255, 62, 0.1), var(--shadow);
}

.release-card:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 2px;
}

@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; flex-direction: column; justify-content: center; }
  .site-header nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 5rem 1.5rem 1.5rem;
    background: rgba(7, 8, 8, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
  }
  .menu-open .site-header nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .site-header nav a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(242, 247, 239, 0.08);
    font-size: 0.9rem;
  }
  .site-header nav .lang-link { padding: 0.75rem 0; }
  .hero {
    min-height: 88svh;
    padding-top: 5rem;
    padding-bottom: 2rem;
  }
  .release-grid, .legal-grid, .about-section, .contact-section { grid-template-columns: 1fr; }
  .release-grid { gap: 0.75rem; }
  .release-card { min-height: 10rem; }
}

@media (max-width: 560px) {
  .site-header nav { padding: 5rem 1rem 1rem; }
  .hero { min-height: 88svh; padding-top: 6rem; }
  h1 { font-size: clamp(4.2rem, 26vw, 7rem); letter-spacing: -0.02em; }
  .hero-title-lockup { align-items: center; flex-direction: column; }
  .hero-logo-frame { width: min(15rem, 70vw); }
  .social-banner { align-items: flex-start; flex-direction: column; }
  .social-banner div { justify-content: flex-start; }

  footer { align-items: flex-start; grid-template-columns: 1fr; }
  footer > a:last-child, .footer-mark { justify-self: start; }
}
