:root {
  color-scheme: dark;
  --bg: #0b0a0b;
  --paper: #ffffff;
  --muted: #a8a8a8;
  --line: rgba(255, 255, 255, 0.18);
  --acid: #d7ff19;
  --hot: #ff2bd6;
  --cyan: #00f5ff;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  position: relative;
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.14;
  background:
    radial-gradient(circle at 8% 8%, rgba(255,255,255,0.055) 0 1px, transparent 1.4px) 0 0 / 19px 23px,
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.04) 0 1px, transparent 1.5px) 0 0 / 31px 37px,
    repeating-linear-gradient(7deg, transparent 0 9px, rgba(255,255,255,0.018) 9px 10px),
    radial-gradient(circle at 20% 12%, rgba(255,255,255,0.05), transparent 22%),
    radial-gradient(circle at 82% 78%, rgba(215,255,25,0.05), transparent 24%);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(128px, 220px) 1fr;
  gap: 24px;
  align-items: center;
  padding: 16px clamp(14px, 3vw, 42px);
  border-bottom: 1px solid var(--line);
  background: rgba(11, 10, 11, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: block;
  max-width: 220px;
}

.brand img {
  display: block;
  width: 100%;
  max-height: 62px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(10px, 2vw, 34px);
  flex-wrap: wrap;
  font-size: clamp(0.72rem, 1.2vw, 0.95rem);
  font-weight: 900;
}

.nav > a,
.nav > .social-dropdown > summary {
  position: relative;
  padding: 8px 0;
  text-decoration: none;
}

.nav > a::after,
.nav > .social-dropdown > summary::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav > a:hover::after,
.nav > a.is-active::after,
.nav > .social-dropdown > summary:hover::after,
.nav > .social-dropdown[open] > summary::after {
  transform: scaleX(1);
}

.social-dropdown {
  position: relative;
}

.social-dropdown > summary {
  cursor: pointer;
  list-style: none;
}

.social-dropdown > summary::-webkit-details-marker {
  display: none;
}

.social-dropdown > summary::before {
  content: "";
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  margin: 0 0.58em 0.18em 0.08em;
  border-right: 2px solid var(--acid);
  border-bottom: 2px solid var(--acid);
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.social-dropdown[open] > summary::before {
  transform: rotate(225deg) translate(-0.12em, -0.12em);
}

.social-dropdown:not([open]) > .social-menu {
  display: none;
}

.social-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 174px;
  padding: 6px;
  border: 1px solid var(--line);
  background: rgba(11, 10, 11, 0.98);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

.social-menu a {
  padding: 10px 12px;
  color: var(--paper);
  text-decoration: none;
  white-space: nowrap;
}

.social-menu a:hover,
.social-menu a:focus-visible {
  color: var(--acid);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.page {
  min-height: calc(100vh - 96px);
  padding: clamp(26px, 4vw, 58px) clamp(10px, 2vw, 28px) clamp(32px, 5vw, 70px);
}

.page-heading {
  display: grid;
  gap: 8px;
  margin: 0 clamp(4px, 1vw, 18px) clamp(16px, 2.4vw, 34px);
}

.kicker {
  margin: 0;
  color: var(--acid);
  font-size: clamp(0.72rem, 1.1vw, 0.88rem);
  font-weight: 900;
  letter-spacing: 0.08em;
}

h1 {
  margin: 0;
  line-height: 0.84;
  font-size: clamp(2.7rem, 8.4vw, 7.6rem);
  font-weight: 950;
  text-shadow: 1px 0 rgba(255, 43, 214, 0.18), -1px 0 rgba(0, 245, 255, 0.12);
}

.release-mural {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(104px, 12.4vw, 178px), 1fr));
  gap: clamp(4px, 0.55vw, 8px);
  align-items: stretch;
}

.release-tile {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #111;
}

.release-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.release-tile:hover img {
  transform: scale(1.08);
}

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

.release-tile.has-missing-art img {
  display: none;
}

.release-actions {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding: 8px;
  color: var(--paper);
  font-size: clamp(0.58rem, 0.95vw, 0.76rem);
  font-weight: 950;
  line-height: 1;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.76));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.release-actions a {
  color: var(--paper);
  text-decoration: none;
}

.release-actions a:hover {
  color: var(--acid);
}

.release-tile:hover .release-actions,
.release-tile:focus-within .release-actions {
  opacity: 1;
  transform: translateY(0);
}

.artists-page {
  padding-left: clamp(14px, 3vw, 42px);
  padding-right: clamp(14px, 3vw, 42px);
}

.artist-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  column-gap: clamp(12px, 2vw, 32px);
  row-gap: clamp(3px, 0.9vw, 14px);
  width: 100%;
}

.artist-wall a,
.artist-wall span {
  color: var(--artist-color);
  font-size: clamp(1.15rem, 3.25vw, 5.9rem);
  font-weight: 950;
  line-height: 0.82;
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 1px 0 rgba(255,255,255,0.08);
}

.artist-wall a:hover {
  color: var(--paper);
}

.landing-page {
  min-height: calc(100vh - 95px);
  display: grid;
  place-items: center;
  padding: clamp(30px, 6vw, 90px);
}

.landing-mark {
  display: grid;
  justify-items: center;
  gap: clamp(18px, 3vw, 34px);
  width: min(820px, 86vw);
}

.landing-mark img {
  display: block;
  width: 100%;
  max-height: 58vh;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.06));
}

.landing-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 48px);
  flex-wrap: wrap;
  font-size: clamp(0.76rem, 1.2vw, 1rem);
  font-weight: 950;
}

.landing-links > a,
.landing-links > .social-dropdown > summary {
  cursor: pointer;
  text-decoration: none;
}

.landing-links > a:hover,
.landing-links > .social-dropdown > summary:hover {
  color: var(--acid);
}

.landing-links .social-menu {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  font-size: 0.76rem;
  text-align: left;
}

.link-page {
  display: grid;
  align-content: center;
  gap: clamp(16px, 3vw, 36px);
  padding-left: clamp(18px, 4vw, 56px);
  padding-right: clamp(18px, 4vw, 56px);
}

.huge-link {
  width: fit-content;
  max-width: 100%;
  color: var(--paper);
  text-decoration: none;
  font-size: clamp(2.1rem, 9vw, 9rem);
  font-weight: 950;
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.huge-link:hover {
  color: var(--acid);
}

.pending-store {
  color: var(--hot);
}

.info-page {
  display: grid;
  align-content: start;
  gap: clamp(18px, 3vw, 42px);
  padding-left: clamp(14px, 3vw, 42px);
  padding-right: clamp(14px, 3vw, 42px);
}

.info-copy {
  max-width: 980px;
  display: grid;
  gap: 16px;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-weight: 800;
  line-height: 1.26;
  text-transform: none;
}

.info-copy h2,
.step h2 {
  margin: 0;
  color: var(--acid);
  font-size: clamp(1.1rem, 2.1vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.info-copy p {
  margin: 0;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
  max-width: 1220px;
}

.step {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: clamp(16px, 2vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
  text-transform: none;
}

.step span {
  color: var(--hot);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  font-weight: 800;
  line-height: 1.34;
}

.step a,
.document-link {
  width: fit-content;
  color: var(--paper);
  font-size: clamp(0.86rem, 1.15vw, 1.02rem);
  font-weight: 950;
  text-transform: uppercase;
  text-decoration: none;
}

.step a:hover,
.document-link:hover {
  color: var(--acid);
}

.pdf-frame,
.form-frame {
  width: 100%;
  min-height: min(900px, 72vh);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #111;
}

.form-frame {
  min-height: 1200px;
  background: #fff;
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .nav {
    justify-content: flex-start;
  }

  .nav .social-menu {
    left: 0;
    right: auto;
  }

  .release-mural {
    grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  }

  .artist-wall {
    column-gap: 14px;
  }

  .step-list {
    grid-template-columns: 1fr;
  }
}
