:root {
  color-scheme: dark;
  --glow-one-x: 18%;
  --glow-one-y: 12%;
  --glow-two-x: 82%;
  --glow-two-y: 18%;
  --glow-three-x: 48%;
  --glow-three-y: 78%;
  --bg-x: 0vw;
  --bg-y: 0vh;
  --bg-rot: 0deg;
  --hero-y: 0vh;
  --scan-y: 0px;
  --grid-x: 0px;
  --ring-one-x: 0vw;
  --ring-one-y: 0vh;
  --ring-one-rot: 0deg;
  --ring-two-x: 0vw;
  --ring-two-y: 0vh;
  --ring-two-rot: 0deg;
  --ring-three-x: 0vw;
  --ring-three-y: 0vh;
  --ring-three-rot: 0deg;
  --bg: #060712;
  --ink: #f8f6ff;
  --muted: #b7bdd4;
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(12, 16, 34, 0.78);
  --hot: #ff4fa0;
  --cyan: #49dcff;
  --yellow: #d8ff66;
  --violet: #8d6cff;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #050611;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: -20vmax;
  z-index: -3;
  background:
    radial-gradient(circle at var(--glow-one-x) var(--glow-one-y), rgba(73, 220, 255, 0.24), transparent 30vmax),
    radial-gradient(circle at var(--glow-two-x) var(--glow-two-y), rgba(255, 79, 160, 0.34), transparent 28vmax),
    radial-gradient(circle at var(--glow-three-x) var(--glow-three-y), rgba(216, 255, 102, 0.15), transparent 22vmax),
    linear-gradient(145deg, #050511 0%, #0b1021 48%, #150815 100%);
  filter: saturate(1.25);
  transform: translate3d(var(--bg-x), var(--bg-y), 0) rotate(var(--bg-rot));
  transition: transform 120ms linear, background 120ms linear;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-position:
    0 var(--scan-y),
    var(--grid-x) 0;
  background-size: 100% 4px, 5rem 100%;
  mix-blend-mode: screen;
  pointer-events: none;
}

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

.scroll-ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.scroll-ambient span {
  position: absolute;
  width: 46vmax;
  height: 46vmax;
  border: 1px solid rgba(216, 255, 102, 0.15);
  border-radius: 50%;
  filter: blur(1px);
  transform:
    translate3d(var(--ring-one-x), var(--ring-one-y), 0)
    rotate(var(--ring-one-rot));
}

.scroll-ambient span:nth-child(1) {
  left: -18vmax;
  top: 10vh;
}

.scroll-ambient span:nth-child(2) {
  right: -20vmax;
  top: 28vh;
  border-color: rgba(73, 220, 255, 0.16);
  transform:
    translate3d(var(--ring-two-x), var(--ring-two-y), 0)
    rotate(var(--ring-two-rot));
}

.scroll-ambient span:nth-child(3) {
  left: 34vw;
  bottom: -22vmax;
  border-color: rgba(255, 79, 160, 0.18);
  transform:
    translate3d(var(--ring-three-x), var(--ring-three-y), 0)
    rotate(var(--ring-three-rot));
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(4, 6, 16, 0.68);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  color: var(--ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  width: 1.35rem;
  height: 1.35rem;
  display: inline-block;
  flex: 0 0 auto;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 0.25rem;
  border: 1.5px solid rgba(216, 255, 102, 0.82);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(216, 255, 102, 0.4);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 0.12rem;
  right: 0.12rem;
  top: 0.62rem;
  height: 0.12rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  box-shadow: 0 0 14px rgba(216, 255, 102, 0.65);
  transform: rotate(-22deg);
}

.brand-mark span {
  position: absolute;
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px rgba(216, 255, 102, 0.9);
}

.brand-mark span:nth-child(1) {
  right: 0.02rem;
  top: 0.05rem;
}

.brand-mark span:nth-child(2) {
  left: 0.02rem;
  bottom: 0.12rem;
  width: 0.18rem;
  height: 0.18rem;
}

.brand-mark span:nth-child(3) {
  right: 0.28rem;
  bottom: 0.02rem;
  width: 0.16rem;
  height: 0.16rem;
}

.nav-links {
  gap: clamp(0.75rem, 2vw, 1.45rem);
  color: var(--yellow);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  padding: 8rem clamp(1rem, 5vw, 5rem) 4rem;
  display: grid;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 7, 18, 0.2), rgba(6, 7, 18, 0.88)),
    url("assets/jey-grey-artist.jpg") center / cover;
  opacity: 0.42;
  filter: saturate(1.35) contrast(1.08);
  transform: scale(1.04) translateY(var(--hero-y));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 31rem);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--yellow);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-copy .eyebrow {
  color: #ff4fa0;
  text-shadow: 0 0 18px rgba(255, 79, 160, 0.42);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  margin: 0;
  font-size: clamp(4.3rem, 13vw, 10rem);
  text-transform: uppercase;
  text-shadow: 0 0 36px rgba(255, 79, 160, 0.35);
}

h2 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(2.3rem, 5vw, 4.5rem);
}

h3 {
  margin: 0 0 1rem;
  font-size: 1.6rem;
}

.hero-lede {
  max-width: 44rem;
  color: #e5e8ff;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.hero-actions,
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.platforms {
  display: grid;
  grid-template-columns: repeat(auto-fill, 3.2rem);
  gap: 0.55rem;
}

.button,
.platform-link,
.filter {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
.filter.is-active,
.platform-link.featured {
  background: linear-gradient(135deg, var(--hot), var(--violet));
  color: white;
  border-color: transparent;
}

.button.ghost,
.platform-link,
.filter {
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
}

.artist-stage,
.new-release-art {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.artist-stage {
  margin: 0;
  aspect-ratio: 4 / 5;
}

.artist-stage img,
.new-release-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artist-stage figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 1rem;
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.equalizer {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  height: 5.3rem;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 0.3rem;
  align-items: end;
}

.equalizer span {
  display: block;
  height: 100%;
  min-height: 22%;
  background: linear-gradient(180deg, #f4ff9a 0%, var(--yellow) 55%, #8fa91c 100%);
  border-radius: 3px 3px 0 0;
  box-shadow: 0 0 18px rgba(216, 255, 102, 0.75);
  transform: scaleY(var(--meter-low, 0.32));
  transform-origin: bottom;
  animation: meter-bounce var(--meter-speed, 0.72s) cubic-bezier(0.2, 0.9, 0.25, 1.15) infinite;
}

.equalizer span:nth-child(1) { --meter-low: 0.3; --meter-high: 0.82; --meter-speed: 0.58s; animation-delay: -0.12s; }
.equalizer span:nth-child(2) { --meter-low: 0.48; --meter-high: 1; --meter-speed: 0.67s; animation-delay: -0.28s; }
.equalizer span:nth-child(3) { --meter-low: 0.22; --meter-high: 0.64; --meter-speed: 0.5s; animation-delay: -0.06s; }
.equalizer span:nth-child(4) { --meter-low: 0.58; --meter-high: 0.96; --meter-speed: 0.76s; animation-delay: -0.36s; }
.equalizer span:nth-child(5) { --meter-low: 0.34; --meter-high: 0.74; --meter-speed: 0.54s; animation-delay: -0.18s; }
.equalizer span:nth-child(6) { --meter-low: 0.68; --meter-high: 1; --meter-speed: 0.62s; animation-delay: -0.44s; }
.equalizer span:nth-child(7) { --meter-low: 0.28; --meter-high: 0.88; --meter-speed: 0.7s; animation-delay: -0.16s; }
.equalizer span:nth-child(8) { --meter-low: 0.5; --meter-high: 0.9; --meter-speed: 0.48s; animation-delay: -0.3s; }
.equalizer span:nth-child(9) { --meter-low: 0.24; --meter-high: 0.7; --meter-speed: 0.64s; animation-delay: -0.08s; }
.equalizer span:nth-child(10) { --meter-low: 0.6; --meter-high: 1; --meter-speed: 0.56s; animation-delay: -0.24s; }

@keyframes meter-bounce {
  0%, 100% {
    transform: scaleY(var(--meter-low));
    opacity: 0.78;
  }

  42% {
    transform: scaleY(var(--meter-high));
    opacity: 1;
  }

  64% {
    transform: scaleY(calc(var(--meter-low) + 0.18));
    opacity: 0.9;
  }
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 5rem);
}

.new-release-section {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
  padding-top: 5rem;
}

.new-release-art {
  aspect-ratio: 1;
}

.new-release-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 46rem;
}

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

.new-release-player {
  max-width: 38rem;
  margin-top: 1rem;
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow),
.bio-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.music-layout {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1.2rem;
  align-items: start;
}

.release-panel {
  position: sticky;
  top: 5.5rem;
  display: grid;
  gap: 0.65rem;
}

.filter {
  width: 100%;
  color: var(--yellow);
  font: inherit;
}

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

.track-card,
.bio-card,
.press-link {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}

.track-card {
  padding: 1rem;
  min-height: 20rem;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.track-card.is-new {
  border-color: rgba(216, 255, 102, 0.5);
  box-shadow: 0 0 0 1px rgba(216, 255, 102, 0.16), 0 22px 70px rgba(255, 79, 160, 0.12);
}

.track-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--yellow);
  font-size: 0.9rem;
  font-weight: 800;
}

.track-card h3 {
  margin: 0;
}

.track-card p {
  margin: 0;
  color: var(--muted);
}

.spotify-player {
  width: 100%;
  height: 80px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
}

.platform-link {
  width: 3.2rem;
  min-height: 3.2rem;
  padding: 0;
  color: var(--cyan);
  font-size: 0;
}

.platform-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.platform-link svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.platform-link svg circle {
  fill: none;
}

.platform-link.featured {
  color: var(--cyan);
}

.platform-link:hover,
.press-link:hover {
  border-color: rgba(216, 255, 102, 0.55);
  box-shadow: 0 0 0 1px rgba(216, 255, 102, 0.28);
}

.bio-section {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(17rem, 0.7fr);
  gap: 2rem;
  align-items: start;
}

.bio-card {
  padding: 1.4rem;
}

.bio-card h3 {
  color: var(--yellow);
}

.bio-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.bio-card li {
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
  color: #e7e9ff;
}

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

.press-link {
  padding: 1rem;
  min-height: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.press-link span {
  color: var(--yellow);
  font-weight: 800;
}

.press-link strong {
  font-size: 1.2rem;
}

.contact-form {
  max-width: 820px;
  padding: 1.2rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}

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

.contact-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.contact-form span {
  color: var(--yellow);
  font-weight: 800;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  font: inherit;
  padding: 0.85rem 0.95rem;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 10rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(73, 220, 255, 0.75);
  box-shadow: 0 0 0 3px rgba(73, 220, 255, 0.16);
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.form-status.is-success {
  color: var(--yellow);
}

.form-status.is-error {
  color: #ff8abf;
}

@media (max-width: 860px) {
  .topbar {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
    font-size: 0.85rem;
  }

  .hero-grid,
  .new-release-section,
  .music-layout,
  .bio-section,
  .form-grid,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
  }

  .artist-stage {
    max-height: 38rem;
  }

  .release-panel {
    position: static;
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (max-width: 560px) {
  .topbar {
    display: grid;
  }

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

  h1 {
    font-size: 4rem;
  }

  .hero-actions,
  .release-panel {
    display: grid;
    grid-template-columns: 1fr;
  }

  .platforms {
    grid-template-columns: repeat(auto-fill, 2.95rem);
    gap: 0.45rem;
  }

  .platform-link {
    width: 2.95rem;
    min-height: 2.95rem;
  }

  .platform-link svg {
    width: 1.3rem;
    height: 1.3rem;
  }
}
