:root {
  --black: #060307;
  --ink: #100617;
  --purple: #7b1dff;
  --pink: #ff2ca3;
  --orange: #ff5c00;
  --yellow: #ffd527;
  --white: #fff8ec;
  --muted: #c9b8d0;
  --line: rgba(255, 248, 236, 0.16);
  --panel: rgba(14, 7, 20, 0.74);
  --shadow-pink: 0 0 30px rgba(255, 44, 163, 0.44);
  --shadow-orange: 0 0 36px rgba(255, 92, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.electric-bg,
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.electric-bg {
  z-index: -3;
  width: 100vw;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 44, 163, 0.42), transparent 32%),
    radial-gradient(circle at 86% 22%, rgba(123, 29, 255, 0.34), transparent 30%),
    radial-gradient(circle at 42% 92%, rgba(255, 92, 0, 0.42), transparent 38%),
    linear-gradient(130deg, #060307 0%, #19051c 34%, #120717 62%, #080308 100%);
  background-size: 130% 130%;
  animation: voltage-drift 13s ease-in-out infinite alternate;
}

.electric-bg::before,
.electric-bg::after {
  content: "";
  position: absolute;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(255, 44, 163, 0.28);
  transform: rotate(18deg);
  filter: drop-shadow(0 0 22px rgba(255, 44, 163, 0.55));
  clip-path: polygon(48% 0, 58% 39%, 78% 39%, 48% 100%, 56% 50%, 34% 51%);
}

.electric-bg::before {
  top: 6rem;
  right: -12rem;
  opacity: 0.5;
}

.electric-bg::after {
  bottom: -14rem;
  left: -8rem;
  opacity: 0.34;
  border-color: rgba(255, 213, 39, 0.26);
}

.noise {
  z-index: -2;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 7px 7px;
  mix-blend-mode: screen;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-pink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 3, 7, 0.52);
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 44, 163, 0.18);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.94fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  width: min(1180px, calc(100% - 2rem));
  min-height: calc(100vh - 5rem);
  margin: 0 auto;
  padding: 3.5rem 0 4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 9% auto auto -5%;
  width: 54%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), var(--yellow), transparent);
  box-shadow: var(--shadow-pink);
  transform: rotate(-4deg);
}

.eyebrow,
.artist-kicker {
  margin: 0 0 0.8rem;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 100%;
  font-size: clamp(3rem, 5.15vw, 4.8rem);
  text-shadow:
    0 0 22px rgba(255, 44, 163, 0.44),
    0 0 48px rgba(255, 92, 0, 0.24);
}

h2 {
  font-size: clamp(2rem, 4.6vw, 4.7rem);
}

h3 {
  font-size: clamp(1.7rem, 3vw, 2.65rem);
}

.hero-description {
  max-width: 610px;
  margin: 1.35rem 0 0;
  color: #eadceb;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  isolation: isolate;
}

.hero-visual img {
  width: min(100%, 520px);
  border-radius: 18px;
  filter: drop-shadow(0 0 26px rgba(255, 44, 163, 0.6)) drop-shadow(0 0 42px rgba(255, 92, 0, 0.35));
}

.record-ring {
  position: absolute;
  z-index: -1;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 11%, rgba(255, 213, 39, 0.9) 11.5% 12.5%, transparent 13% 21%),
    repeating-radial-gradient(circle, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 12px),
    radial-gradient(circle, #040204 0 63%, rgba(255, 44, 163, 0.28) 64% 66%, transparent 67%);
  opacity: 0.82;
  animation: slow-spin 18s linear infinite;
}

.bolt {
  position: absolute;
  width: 10rem;
  height: 16rem;
  background: linear-gradient(160deg, var(--pink), var(--yellow));
  clip-path: polygon(46% 0, 76% 0, 56% 38%, 83% 38%, 26% 100%, 42% 53%, 18% 53%);
  filter: drop-shadow(0 0 18px rgba(255, 44, 163, 0.8));
  opacity: 0.85;
  z-index: -1;
}

.bolt-one {
  right: -1.6rem;
  top: 5%;
  transform: rotate(17deg);
}

.bolt-two {
  left: 4%;
  bottom: 1%;
  transform: rotate(-18deg) scale(0.72);
  opacity: 0.65;
}

.artists-section,
.team-section,
.release-strip {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.artists-section,
.team-section {
  padding: 4rem 0 3rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

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

.artist-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.artist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(6, 3, 7, 0.22) 52%, rgba(6, 3, 7, 0.96) 100%);
  z-index: 1;
}

.artist-card::after {
  content: "";
  position: absolute;
  left: -15%;
  right: -15%;
  bottom: 22%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), var(--pink), transparent);
  box-shadow: var(--shadow-pink);
  transform: rotate(-5deg);
  z-index: 2;
}

.artist-image {
  height: 100%;
}

.artist-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.artist-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  padding: clamp(1.1rem, 3vw, 2rem);
}

.artist-copy > p:last-of-type {
  max-width: 470px;
  margin: 0.85rem 0 0;
  color: #eadceb;
  font-size: 1.03rem;
  font-weight: 800;
}

.artist-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.artist-socials a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.82rem;
  border: 1px solid rgba(255, 213, 39, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 44, 163, 0.22), rgba(255, 92, 0, 0.16)),
    rgba(6, 3, 7, 0.56);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.artist-socials a:hover,
.artist-socials a:focus-visible {
  border-color: rgba(255, 213, 39, 0.9);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

.team-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 213, 39, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(255, 44, 163, 0.16), transparent 42%),
    linear-gradient(290deg, rgba(255, 92, 0, 0.18), transparent 54%),
    rgba(6, 3, 7, 0.72);
  box-shadow: var(--shadow-orange);
}

.team-photo {
  position: relative;
  min-height: 420px;
  background: #080508;
}

.team-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 55%, rgba(255, 44, 163, 0.18)),
    radial-gradient(circle at 80% 20%, rgba(255, 213, 39, 0.18), transparent 32%);
  mix-blend-mode: screen;
}

.team-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: contrast(1.08);
}

.team-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.team-copy::before {
  content: "";
  position: absolute;
  top: 14%;
  right: 8%;
  width: 8rem;
  height: 12rem;
  background: linear-gradient(160deg, rgba(255, 44, 163, 0.6), rgba(255, 213, 39, 0.6));
  clip-path: polygon(46% 0, 76% 0, 56% 38%, 83% 38%, 26% 100%, 42% 53%, 18% 53%);
  filter: drop-shadow(0 0 18px rgba(255, 44, 163, 0.55));
  opacity: 0.2;
  pointer-events: none;
}

.team-copy p:last-of-type {
  max-width: 670px;
  margin: 1rem 0 0;
  color: #eadceb;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  font-weight: 800;
}

.team-copy a {
  width: fit-content;
  margin-top: 1.3rem;
  color: var(--yellow);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-shadow: 0 0 18px rgba(255, 213, 39, 0.3);
}

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

.release-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 4rem;
  padding: clamp(1.25rem, 4vw, 2.2rem);
  border: 1px solid rgba(255, 213, 39, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(255, 44, 163, 0.18), transparent 44%),
    linear-gradient(290deg, rgba(255, 92, 0, 0.24), transparent 52%),
    rgba(6, 3, 7, 0.72);
  box-shadow: var(--shadow-orange);
}

.release-vinyl {
  width: clamp(96px, 16vw, 170px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--yellow) 0 8%, var(--black) 8.5% 13%, var(--pink) 13.5% 20%, transparent 20.5%),
    repeating-radial-gradient(circle, #050205 0 7px, #181018 8px 11px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 38px rgba(255, 44, 163, 0.42);
  animation: slow-spin 7s linear infinite;
}

.release-vinyl span {
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--black);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--yellow);
  text-transform: none;
  letter-spacing: 0.04em;
  text-shadow: 0 0 18px rgba(255, 213, 39, 0.3);
}

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

@keyframes voltage-drift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1.5rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual img {
    width: min(100%, 520px);
  }

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

  .team-card {
    grid-template-columns: 1fr;
  }

  .artist-card,
  .artist-image img {
    min-height: 460px;
  }

  .team-photo,
  .team-photo img {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  main {
    overflow-x: clip;
  }

  .brand-mark span {
    font-size: 0.88rem;
  }

  .site-nav a {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }

  .hero {
    width: min(calc(100vw - 1rem), 1180px);
    gap: 1.5rem;
    overflow: clip;
  }

  h1 {
    font-size: clamp(2.4rem, 9.6vw, 3.25rem);
    line-height: 1.02;
  }

  .record-ring {
    width: 68%;
  }

  .artists-section,
  .team-section,
  .release-strip,
  .site-footer {
    width: min(calc(100vw - 1rem), 1180px);
    max-width: calc(100vw - 1rem);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading,
  .release-strip {
    display: block;
  }

  .artist-card,
  .artist-image img {
    min-height: 390px;
  }

  .artist-card::after,
  .team-copy::before {
    display: none;
  }

  .release-vinyl {
    margin-top: 1.25rem;
  }

  .bolt {
    display: none;
  }
}

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