:root {
  --black: #000000;
  --charcoal: #1a1a1a;
  --white: #ffffff;
  --lime: #b6ff00;
  --acid: #ffe100;
  --muted: #b9b9b9;
  --line: rgba(255, 255, 255, 0.18);
  --panel: rgba(26, 26, 26, 0.72);
  --panel-solid: #111111;
  --font-display: "Anton", "Bebas Neue", Impact, sans-serif;
  --font-ui: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 12%, rgba(182, 255, 0, 0.13), transparent 22rem),
    linear-gradient(180deg, #000 0%, #080808 48%, #000 100%);
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 500;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image: radial-gradient(rgba(255, 255, 255, 0.7) 0.55px, transparent 0.7px);
  background-size: 3px 3px;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 42px);
  background: rgba(0, 0, 0, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--black);
  background: var(--lime);
  border: 1px solid var(--lime);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 0 22px rgba(182, 255, 0, 0.35);
}

.brand-text {
  max-width: 148px;
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand-text strong {
  display: block;
  color: var(--lime);
  font-weight: 400;
  letter-spacing: 0.18em;
}

.main-nav,
.header-actions,
.social-strip {
  display: flex;
  align-items: center;
}

.main-nav {
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding-block: 12px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  gap: 16px;
}

.social-strip {
  gap: 8px;
}

.social-strip a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--lime);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.social-strip svg,
.platform-icon svg {
  display: block;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  shape-rendering: geometricPrecision;
}

.social-strip a:hover,
.social-strip a:focus-visible {
  color: var(--black);
  background: var(--lime);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--lime);
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button-primary {
  color: var(--black);
  background: var(--lime);
  box-shadow: 0 0 24px rgba(182, 255, 0, 0.22);
}

.button-secondary {
  color: var(--lime);
  background: rgba(0, 0, 0, 0.48);
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  white-space: nowrap;
}

.language-toggle {
  display: inline-grid;
  width: 42px;
  height: 40px;
  place-items: center;
  color: var(--lime);
  background: rgba(0, 0, 0, 0.52);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  color: var(--black);
  background: var(--lime);
  border-color: var(--lime);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-left: auto;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.section {
  padding: clamp(68px, 9vw, 112px) 0;
  border-top: 1px solid var(--line);
}

.section-band {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 68px) 0 70px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 68% 45%, rgba(182, 255, 0, 0.32), transparent 21rem),
    #000;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  font-size: clamp(70px, 12vw, 168px);
  line-height: 0.88;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.2);
}

h2 {
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.92;
}

h3 {
  font-size: 30px;
  line-height: 1;
}

.hero-lead {
  max-width: 560px;
  margin: 24px 0 16px;
  color: #eeeeee;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.genre-line {
  max-width: 720px;
  margin: 0 0 28px;
  color: var(--acid);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.7;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.58) 34%, rgba(0, 0, 0, 0.16) 68%, rgba(0, 0, 0, 0.36) 100%),
    radial-gradient(circle at 28% 52%, rgba(0, 0, 0, 0.32), transparent 28rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.42));
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center);
  opacity: 0;
  transform: scale(1.03);
  animation: heroFade 42s infinite;
  filter: brightness(3) saturate(1.16) contrast(1.06);
}

.hero-slide-1 {
  --hero-position: 46% 24%;
  animation-delay: 6s;
}

.hero-slide-2 {
  --hero-position: 60% 25%;
  animation-delay: 12s;
}

.hero-slide-3 {
  --hero-position: 54% 28%;
  animation-delay: 18s;
}

.hero-slide-4 {
  --hero-position: 50% 30%;
  animation-delay: 24s;
}

.hero-slide-5 {
  --hero-position: 52% 30%;
  animation-delay: 30s;
}

.hero-slide-6 {
  --hero-position: 70% 36%;
  animation-delay: 36s;
}

.hero-slide-7 {
  --hero-position: 50% 50%;
  animation-delay: 0s;
}

.hero-slide.is-flipped {
  animation-name: heroFadeFlip;
}

.pulse-ring {
  position: absolute;
  z-index: 3;
  top: 12%;
  right: 5%;
  width: min(58vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 18px, rgba(182, 255, 0, 0.23) 19px 21px),
    radial-gradient(circle, rgba(255, 225, 0, 0.32), transparent 42%);
  filter: blur(0.2px);
  opacity: 0.08;
  animation: breathe 6s ease-in-out infinite;
}

.spectrum {
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 19%;
  width: min(56vw, 660px);
  height: 280px;
  background: repeating-linear-gradient(90deg, rgba(182, 255, 0, 0.92) 0 4px, transparent 4px 14px);
  clip-path: polygon(0 92%, 3% 50%, 5% 88%, 7% 28%, 9% 84%, 12% 44%, 14% 91%, 17% 18%, 19% 78%, 22% 42%, 24% 94%, 27% 8%, 30% 74%, 33% 24%, 35% 88%, 39% 38%, 42% 95%, 45% 20%, 49% 82%, 52% 50%, 55% 96%, 59% 12%, 62% 76%, 66% 35%, 69% 91%, 72% 30%, 76% 80%, 80% 16%, 84% 88%, 88% 44%, 92% 92%, 96% 26%, 100% 86%, 100% 100%, 0 100%);
  opacity: 0.08;
  mix-blend-mode: screen;
}

.spectrum-b {
  right: 0;
  bottom: 11%;
  height: 170px;
  opacity: 0.06;
  transform: scaleX(-1);
}

.crowd-lines {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 37%;
  height: 36%;
  background:
    linear-gradient(to top, #000 0%, transparent 78%),
    repeating-linear-gradient(103deg, rgba(0, 0, 0, 0.95) 0 8px, transparent 8px 42px);
  opacity: 0.18;
}

.section-heading {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.text-link {
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.release-card,
.artist-card,
.platform-card,
.panel-form {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.88), rgba(6, 6, 6, 0.88));
  border-radius: 8px;
}

.release-card {
  overflow: hidden;
}

.release-main {
  --cover-size: 124px;
  display: grid;
  grid-template-columns: var(--cover-size) 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
}

.cover-art,
.artist-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(180deg, transparent 0 55%, rgba(0, 0, 0, 0.92) 100%),
    radial-gradient(circle at 52% 34%, rgba(255, 225, 0, 0.62), transparent 23%),
    repeating-linear-gradient(90deg, rgba(182, 255, 0, 0.85) 0 4px, transparent 4px 13px),
    #080808;
}

.cover-art {
  width: var(--cover-size);
  height: var(--cover-size);
  aspect-ratio: 1 / 1;
}

.cover-art::before {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-radial-gradient(circle at 50% 52%, transparent 0 18px, rgba(255, 255, 255, 0.12) 19px 20px);
}

.cover-art.has-image {
  background: #050505;
}

.cover-art.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cover-art.has-image::before {
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 62%, rgba(0, 0, 0, 0.2) 100%);
}

.cover-art.has-image::after {
  display: none;
}

.cover-art::after,
.artist-image::after {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  content: "PP";
  color: var(--black);
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--font-display);
}

.cover-art.variant-1 {
  background:
    linear-gradient(180deg, transparent 0 55%, rgba(0, 0, 0, 0.92) 100%),
    radial-gradient(circle at 48% 38%, rgba(182, 255, 0, 0.72), transparent 28%),
    repeating-linear-gradient(0deg, rgba(182, 255, 0, 0.84) 0 6px, transparent 6px 18px),
    #050505;
}

.cover-art.variant-2 {
  background:
    linear-gradient(180deg, rgba(255, 225, 0, 0.8), rgba(0, 0, 0, 0.88)),
    repeating-linear-gradient(120deg, rgba(0, 0, 0, 0.88) 0 7px, transparent 7px 24px),
    #0d0d0d;
}

.release-meta {
  min-width: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  color: var(--black);
  background: var(--acid);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.release-meta h3 {
  margin-top: 12px;
}

.artist-name,
.release-date,
.release-credits {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.release-genre {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.card-actions .button {
  min-height: 38px;
  padding-inline: 12px;
  font-size: 11px;
}

.release-details {
  display: none;
  padding: 0 16px 16px;
}

.release-card.is-open .release-details {
  display: grid;
  gap: 14px;
}

.embed-block {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #050505;
}

.youtube-embed {
  aspect-ratio: 16 / 9;
}

.spotify-embed {
  min-height: 152px;
}

.embed-block iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.spotify-embed iframe {
  min-height: 152px;
}

.external-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.external-links a,
.platform-card {
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.external-links a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.split-grid,
.form-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 72px);
}

.copy-stack p,
.form-copy p {
  margin: 0 0 18px;
  color: #dddddd;
  font-size: 17px;
  line-height: 1.7;
}

.notice {
  display: inline-block;
  padding: 12px 14px;
  color: var(--acid) !important;
  border: 1px solid rgba(255, 225, 0, 0.35);
  background: rgba(255, 225, 0, 0.06);
}

.panel-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.panel-form label {
  display: grid;
  gap: 8px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-form .wide {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.form-status[data-status-type="success"] {
  color: var(--lime);
}

.form-status[data-status-type="error"] {
  color: #ff5b5b;
}

.upload-progress {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(182, 255, 0, 0.32);
  border-radius: 4px;
  background: rgba(182, 255, 0, 0.07);
}

.upload-progress[hidden] {
  display: none;
}

.upload-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.upload-progress progress {
  width: 100%;
  height: 12px;
  overflow: hidden;
  accent-color: var(--lime);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
}

.upload-progress progress::-webkit-progress-bar {
  background: rgba(0, 0, 0, 0.6);
}

.upload-progress progress::-webkit-progress-value {
  background: var(--lime);
}

.upload-progress progress::-moz-progress-bar {
  background: var(--lime);
}

input,
select,
textarea {
  width: 100%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  outline: none;
}

input {
  min-height: 48px;
  padding: 0 14px;
}

select {
  min-height: 48px;
  padding: 0 14px;
  appearance: none;
}

input[type="file"] {
  min-height: 48px;
  padding: 12px 14px;
  cursor: pointer;
}

input[type="file"]::file-selector-button {
  min-height: 28px;
  margin-right: 12px;
  color: var(--black);
  background: var(--lime);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

textarea {
  resize: vertical;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(182, 255, 0, 0.12);
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.artist-card {
  overflow: hidden;
}

.artist-image {
  aspect-ratio: 1 / 1;
  min-height: 210px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), #000),
    radial-gradient(circle at 55% 25%, rgba(255, 255, 255, 0.34), transparent 19%),
    linear-gradient(120deg, #0e0e0e, #252525 45%, #040404);
}

.artist-image.has-image {
  background: #050505;
}

.artist-image.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--artist-position, center);
}

.artist-image.has-image::after {
  display: none;
}

.artist-card:nth-child(even) .artist-image {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), #000),
    radial-gradient(circle at 38% 28%, rgba(182, 255, 0, 0.28), transparent 20%),
    linear-gradient(140deg, #050505, #303030 52%, #111);
}

.artist-content {
  padding: 14px;
}

.artist-content h3 {
  color: var(--lime);
  font-size: 26px;
}

.artist-content p {
  min-height: 40px;
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.platform-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 16px;
}

.platform-card .platform-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--black);
  background: var(--lime);
  border-radius: 50%;
}

.platform-card .platform-icon svg {
  width: 27px;
  height: 27px;
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-grid p,
.footer-grid small {
  color: var(--muted);
}

.footer-grid nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 8px 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-grid small {
  grid-column: 1 / -1;
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.04);
    opacity: 0.95;
  }
}

@keyframes heroFade {
  0% {
    opacity: 1;
    transform: scale(1.03);
  }
  12% {
    opacity: 1;
  }
  14.285% {
    opacity: 0;
    transform: scale(1.09);
  }
  100% {
    opacity: 0;
    transform: scale(1.09);
  }
}

@keyframes heroFadeFlip {
  0% {
    opacity: 1;
    transform: scaleX(-1) scale(1.03);
  }
  12% {
    opacity: 1;
  }
  14.285% {
    opacity: 0;
    transform: scaleX(-1) scale(1.09);
  }
  100% {
    opacity: 0;
    transform: scaleX(-1) scale(1.09);
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
    justify-content: flex-start;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-actions {
    display: flex;
  }

  .main-nav {
    flex-wrap: wrap;
    padding-top: 10px;
  }

  .header-actions {
    padding-bottom: 6px;
  }

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

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

  .split-grid,
  .form-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-text {
    max-width: 126px;
    font-size: 18px;
  }

  .hero {
    min-height: 760px;
  }

  .pulse-ring {
    top: 18%;
    right: -38%;
    width: 116vw;
  }

  .hero-visual::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.54) 62%, rgba(0, 0, 0, 0.28) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.56));
  }

  .hero-slide {
    object-position: var(--hero-mobile-position, var(--hero-position, 48% center));
  }

  .hero-slide-1 {
    --hero-mobile-position: 30% center;
  }

  .hero-slide-2 {
    --hero-mobile-position: 74% center;
  }

  .hero-slide-7 {
    --hero-mobile-position: center top;
    object-fit: contain;
  }

  .spectrum {
    right: -20%;
    width: 96vw;
  }

  .crowd-lines {
    left: 0;
  }

  .release-grid,
  .artist-grid,
  .platform-grid,
  .panel-form {
    grid-template-columns: 1fr;
  }

  .release-main {
    --cover-size: min(calc(100vw - 60px), 220px);
    grid-template-columns: 1fr;
  }

  .cover-art {
    width: var(--cover-size);
    height: var(--cover-size);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid nav {
    grid-template-columns: 1fr;
  }
}
