:root {
  --bg: #05060a;
  --panel: #0d111a;
  --panel-2: #111827;
  --ink: #f4f7fb;
  --muted: #a8b3c5;
  --line: rgba(111, 205, 255, 0.2);
  --blue: #009cff;
  --blue-2: #31d7ff;
  --violet: #7c5cff;
  --acid: #d8ff4f;
  --pink: #ff4f9a;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 12%, rgba(0, 156, 255, 0.2), transparent 30%),
    radial-gradient(circle at 82% 8%, rgba(255, 79, 154, 0.13), transparent 28%),
    radial-gradient(circle at 48% 90%, rgba(216, 255, 79, 0.08), transparent 28%),
    var(--bg);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.035), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.025)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 28%);
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.045;
  pointer-events: none;
  mix-blend-mode: screen;
  background-image:
    repeating-radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.55) 0 1px, transparent 1px 5px);
}

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

a {
  color: inherit;
}

.dark-page {
  min-height: 100vh;
}

.landing {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
  overflow: hidden;
}

.landing::before {
  content: "WVSN";
  position: absolute;
  inset: auto 0 4vh;
  color: rgba(255, 255, 255, 0.028);
  font-size: clamp(86px, 24vw, 360px);
  font-weight: 900;
  line-height: 0.78;
  text-align: center;
}

.landing-glow {
  position: absolute;
  width: min(760px, 78vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(49, 215, 255, 0.34), rgba(124, 92, 255, 0.13) 42%, transparent 72%);
  filter: blur(16px);
  animation: glow-breathe 4.8s ease-in-out infinite;
}

.landing-shell {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(980px, 100%);
  padding: clamp(18px, 4vw, 48px);
  text-align: center;
  transform: translateY(-28px);
  animation: landing-in 900ms ease both;
}

.main-logo {
  width: min(320px, 60vw);
  margin: 0 auto 8px;
  animation: logo-float 5.8s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(49, 215, 255, 0.92)) drop-shadow(0 28px 70px rgba(0, 0, 0, 0.68));
}

.landing h1 {
  margin: 0;
  color: var(--blue-2);
  font-size: clamp(48px, 9vw, 116px);
  line-height: 0.78;
  letter-spacing: 0;
  text-shadow: 0 0 20px rgba(49, 215, 255, 0.75), 0 0 70px rgba(49, 215, 255, 0.35);
}

.landing-copy {
  max-width: 660px;
  margin: 16px auto 0;
  color: #d8e7f7;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.5;
  text-wrap: balance;
}

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

.landing-nav,
.contact-actions,
.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.landing-nav a,
.button-primary,
.button-secondary,
.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(13, 17, 26, 0.72);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.landing-nav a::before,
.button-primary::before,
.button-secondary::before,
.social-row a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.landing-nav a:hover,
.button-primary:hover,
.button-secondary:hover,
.social-row a:hover {
  transform: translateY(-3px);
  border-color: var(--blue-2);
  background: rgba(0, 156, 255, 0.18);
}

.landing-nav a:hover::before,
.button-primary:hover::before,
.button-secondary:hover::before,
.social-row a:hover::before {
  transform: translateX(120%);
}

.button-primary {
  color: #021018;
  border-color: var(--blue-2);
  background: var(--blue-2);
}

.landing-note {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: 24px;
  z-index: 2;
  margin: 0;
  color: rgba(244, 247, 251, 0.52);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(5, 6, 10, 0.68);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.section-kicker {
  max-width: 980px;
  margin-bottom: 34px;
}

.section-kicker h2 {
  margin: 0;
  font-size: clamp(36px, 6vw, 82px);
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

.release-section,
.upcoming-section,
.demo-form-section {
  position: relative;
  padding: clamp(68px, 9vw, 120px) clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.release-section {
  background:
    linear-gradient(135deg, rgba(49, 215, 255, 0.12), transparent 34%),
    rgba(5, 6, 10, 0.7);
}

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

.release-card {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(13, 17, 26, 0.86);
  box-shadow: var(--shadow);
}

.release-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-card > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.release-card p {
  margin: 0 0 12px;
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.release-card h3 {
  margin: 0;
  color: var(--blue-2);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.94;
  text-transform: uppercase;
}

.release-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.release-card nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.release-card nav a {
  padding: 9px 10px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.upcoming-list {
  border: 1px solid var(--line);
}

.upcoming-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 150px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(49, 215, 255, 0.1), transparent 38%),
    rgba(13, 17, 26, 0.72);
}

.upcoming-item:last-child {
  border-bottom: 0;
}

.upcoming-item > span {
  color: rgba(49, 215, 255, 0.72);
  font-size: 44px;
  font-weight: 900;
}

.upcoming-item p {
  margin: 0 0 8px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.upcoming-item h3 {
  margin: 0;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 0.96;
  text-transform: uppercase;
}

.upcoming-item small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 26px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: rgba(5, 6, 10, 0.88);
}

.site-footer img {
  width: 48px;
  filter: drop-shadow(0 0 10px rgba(49, 215, 255, 0.8));
}

.site-footer strong {
  display: block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 4px 0 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer a {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: var(--blue-2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 46px;
  filter: drop-shadow(0 0 10px rgba(0, 156, 255, 0.9));
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
}

.nav-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.page-hero {
  position: relative;
  padding: clamp(72px, 11vw, 142px) clamp(18px, 5vw, 64px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(49, 215, 255, 0.12), transparent 28%),
    linear-gradient(220deg, rgba(255, 79, 154, 0.11), transparent 24%);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: clamp(18px, 8vw, 110px);
  bottom: -80px;
  width: min(360px, 46vw);
  aspect-ratio: 1;
  background: url("assets/wvsn-logo.png") center / contain no-repeat;
  opacity: 0.18;
  filter: drop-shadow(0 0 24px rgba(0, 156, 255, 0.8));
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0;
  font-size: clamp(48px, 8vw, 116px);
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: balance;
}

.page-hero p:last-child {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.artist-directory {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(36px, 6vw, 70px) clamp(18px, 5vw, 64px) clamp(76px, 10vw, 130px);
}

.artist-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 500px;
  padding: 18px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.92), rgba(13, 17, 26, 0.78));
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.artist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 20%, rgba(5, 6, 10, 0.26) 48%, rgba(5, 6, 10, 0.94));
  pointer-events: none;
}

.artist-card::after {
  content: "OPEN PROFILE";
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 8px 10px;
  color: #041018;
  background: var(--acid);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.artist-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-2);
}

.artist-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.artist-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  filter: saturate(0.92) contrast(1.08);
  transition: transform 260ms ease, filter 260ms ease;
}

.artist-card:hover img {
  filter: saturate(1.15) contrast(1.08);
  transform: scale(1.06);
}

.artist-card div {
  position: relative;
  z-index: 2;
}

.artist-card span {
  display: block;
  font-size: clamp(23px, 3vw, 34px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.artist-card p {
  color: var(--muted);
  line-height: 1.45;
}

.info-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(36px, 6vw, 70px) clamp(18px, 5vw, 64px) clamp(76px, 10vw, 130px);
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: clamp(20px, 4vw, 38px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(49, 215, 255, 0.12), transparent 36%),
    rgba(13, 17, 26, 0.86);
  box-shadow: var(--shadow);
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(5, 6, 10, 0.74);
  font: inherit;
  outline: none;
}

.demo-form input:focus,
.demo-form textarea:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(49, 215, 255, 0.12);
}

.demo-form textarea {
  min-height: 150px;
  resize: vertical;
}

.full-field,
.demo-form button {
  grid-column: 1 / -1;
}

.demo-form button {
  border: 0;
  cursor: pointer;
}

.info-grid article,
.contact-grid article {
  min-height: 310px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(49, 215, 255, 0.16), transparent 38%),
    linear-gradient(220deg, rgba(124, 92, 255, 0.12), transparent 34%),
    rgba(13, 17, 26, 0.82);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.info-grid article:hover,
.contact-grid article:hover {
  transform: translateY(-5px);
  border-color: var(--blue-2);
}

.info-grid span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.info-grid h2,
.contact-grid h2 {
  margin: 34px 0 14px;
  color: var(--blue-2);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.96;
  text-transform: uppercase;
}

.info-grid p,
.contact-grid p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.artist-page {
  min-height: calc(100vh - 76px);
}

.artist-profile {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: clamp(52px, 8vw, 110px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(120deg, rgba(49, 215, 255, 0.11), transparent 34%),
    linear-gradient(240deg, rgba(255, 79, 154, 0.09), transparent 30%);
}

.artist-profile > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  filter: saturate(1.05) contrast(1.05);
}

.artist-profile h1 {
  margin: 0;
  color: var(--blue-2);
  font-size: clamp(64px, 12vw, 170px);
  line-height: 0.82;
  text-transform: uppercase;
}

.artist-bio {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.45;
}

.artist-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0 clamp(18px, 5vw, 64px) clamp(28px, 5vw, 54px);
}

.artist-extra article {
  min-height: 260px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(49, 215, 255, 0.13), transparent 42%),
    rgba(13, 17, 26, 0.82);
  box-shadow: var(--shadow);
}

.artist-extra h2 {
  margin: 0;
  color: var(--blue-2);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.96;
  text-transform: uppercase;
}

.artist-extra p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.artist-extra blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.artist-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 clamp(18px, 5vw, 64px) clamp(32px, 5vw, 64px);
}

.artist-gallery img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(0.94) contrast(1.08);
}

.spotify-section {
  padding: 0 clamp(18px, 5vw, 64px) clamp(72px, 9vw, 120px);
}

.spotify-section iframe {
  width: 100%;
  min-height: 152px;
  border: 1px solid var(--line);
}

@keyframes landing-in {
  from {
    opacity: 0;
    transform: translateY(0) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(-28px) scale(1);
  }
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow-breathe {
  0%,
  100% {
    opacity: 0.76;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.07);
  }
}

@media (max-width: 1080px) {
  .artist-directory {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .artist-directory,
  .info-grid,
  .contact-grid,
  .artist-profile,
  .artist-extra,
  .artist-gallery,
  .release-grid,
  .demo-form {
    grid-template-columns: 1fr;
  }

  .release-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .release-card img {
    aspect-ratio: 1;
  }

  .upcoming-item {
    grid-template-columns: 1fr;
  }

  .landing-shell {
    padding-inline: 0;
  }

  .landing-nav a,
  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .landing-note {
    display: none;
  }

  .artist-card {
    min-height: 420px;
  }
}
