:root {
  --bg: #050506;
  --panel: #0b0a0d;
  --text: #f7f3f8;
  --muted: #aaa3af;
  --purple: #8d22ff;
  --purple-bright: #b65cff;
  --purple-soft: rgba(141,34,255,.16);
  --line: rgba(255,255,255,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 999; opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: 86px; padding: 0 5vw;
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(to bottom, rgba(5,5,6,.96), rgba(5,5,6,.18), transparent);
}
.brand img { width: 74px; height: 74px; object-fit: cover; border-radius: 50%; }
.nav { display: flex; gap: 1.7rem; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--purple-bright); }

.menu-toggle { display: none; background: none; border: 0; padding: 10px; }
.menu-toggle span { display: block; width: 27px; height: 2px; margin: 6px 0; background: white; }

.hero {
  min-height: 100svh; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 130px 7vw 80px;
}
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; filter: saturate(.88) contrast(1.08); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.5) 42%, rgba(0,0,0,.12) 72%),
    linear-gradient(to top, rgba(5,5,6,.98) 0%, rgba(5,5,6,.15) 48%, rgba(5,5,6,.28) 100%),
    radial-gradient(circle at 74% 34%, rgba(141,34,255,.19), transparent 28%);
}
.hero-content { position: relative; z-index: 3; width: min(700px, 85vw); }
.eyebrow { color: var(--purple-bright); font-size: .7rem; letter-spacing: .3em; font-weight: 800; }
.hero h1, .section h2, .visual-copy h2 {
  font-family: "Bebas Neue", sans-serif; margin: 0; line-height: .82; letter-spacing: .015em;
}
.hero h1 { font-size: clamp(8rem, 19vw, 17rem); text-shadow: 0 0 45px rgba(141,34,255,.18); }
.hero-copy { color: #d4cfd8; max-width: 520px; font-size: clamp(1rem, 1.5vw, 1.22rem); line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.btn {
  display: inline-flex; justify-content: center; align-items: center; min-width: 165px;
  padding: 16px 22px; text-transform: uppercase; font-size: .72rem; letter-spacing: .12em; font-weight: 800;
  border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--purple); border-color: var(--purple); box-shadow: 0 0 28px rgba(141,34,255,.25); }
.btn-ghost { background: rgba(5,5,6,.5); backdrop-filter: blur(8px); }

.hero-badge { position: absolute; z-index: 3; right: 5vw; bottom: 5vw; width: clamp(110px, 13vw, 190px); filter: drop-shadow(0 0 25px rgba(141,34,255,.3)); }
.hero-badge img { border-radius: 50%; }
.scroll-cue { position: absolute; z-index: 3; right: 7vw; bottom: 28px; font-size: .6rem; letter-spacing: .24em; color: var(--muted); }
.scroll-cue span { color: var(--purple-bright); margin-left: 8px; }

.section { padding: 120px 7vw; border-top: 1px solid var(--line); }
.section-heading { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 55px; }
.section h2, .visual-copy h2 { font-size: clamp(5rem, 12vw, 11rem); }
.section-intro { color: var(--muted); max-width: 360px; line-height: 1.7; }

.platform-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.platform-grid a {
  min-height: 118px; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 55px 1fr auto; align-items: center; gap: 18px;
  padding: 0 24px 0 0; transition: background .2s ease, padding .2s ease;
}
.platform-grid a:nth-child(odd) { border-right: 1px solid var(--line); }
.platform-grid a:hover { background: var(--purple-soft); padding-left: 14px; }
.platform-number { color: var(--purple-bright); font-size: .68rem; letter-spacing: .16em; }
.platform-grid strong { font-family: "Bebas Neue"; font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 400; letter-spacing: .03em; }
.platform-grid a > span:last-child { font-size: 1.5rem; color: var(--purple-bright); }

.visual-section {
  min-height: 92vh; display: grid; grid-template-columns: .78fr 1.22fr;
  align-items: stretch; border-top: 1px solid var(--line); background: #080709;
}
.visual-copy { padding: 120px 7vw; display: flex; flex-direction: column; justify-content: center; }
.visual-copy p:not(.eyebrow) { color: var(--muted); max-width: 530px; line-height: 1.8; }
.visual-image { min-height: 700px; overflow: hidden; position: relative; }
.visual-image::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg, #080709 0%, transparent 28%); pointer-events:none; }
.visual-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.text-link { color: var(--purple-bright); text-transform: uppercase; font-size: .72rem; letter-spacing: .14em; font-weight: 800; margin-top: 18px; }

.about-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 8vw; align-items: center; }
.about-mark img { width: 100%; max-width: 560px; margin: 0 auto; filter: drop-shadow(0 0 42px rgba(141,34,255,.18)); }
.about-copy p:not(.eyebrow) { color: var(--muted); line-height: 1.85; max-width: 690px; }
.about-copy h2 { margin-bottom: 32px; }

.quote-strip { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 17px 0; background: var(--purple); }
.marquee { display: flex; width: max-content; animation: marquee 18s linear infinite; }
.marquee span { font-family: "Bebas Neue"; font-size: 2.2rem; letter-spacing: .08em; white-space: nowrap; padding-right: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.social-feature { border-top: 1px solid var(--line); }
.social-feature a {
  display: grid; grid-template-columns: 140px 1fr auto; gap: 20px; align-items: center;
  min-height: 130px; border-bottom: 1px solid var(--line); transition: background .2s ease, padding .2s ease;
}
.social-feature a:hover { background: var(--purple-soft); padding: 0 18px; }
.social-feature span:first-child { color: var(--muted); text-transform: uppercase; font-size: .7rem; letter-spacing: .18em; }
.social-feature strong { font-family: "Bebas Neue"; font-size: clamp(2.6rem, 6vw, 6rem); font-weight: 400; }
.social-feature span:last-child { color: var(--purple-bright); font-size: 1.5rem; }

.contact-section { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; }
.contact-copy p:not(.eyebrow) { color: var(--muted); max-width: 530px; line-height: 1.7; }
.contact-box > p { color: var(--purple-bright); font-size: .66rem; letter-spacing: .22em; font-weight: 800; }
.contact-email {
  display: block; font-family: "Bebas Neue"; font-size: clamp(2.3rem, 4.4vw, 4.8rem);
  border-bottom: 1px solid var(--line); padding-bottom: 18px; margin: 10px 0 30px; overflow-wrap: anywhere;
}

footer {
  padding: 28px 7vw; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 25px; align-items: center;
  color: var(--muted); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase;
}
.footer-brand img { width: 64px; height: 64px; object-fit: cover; border-radius: 50%; }
.footer-links { justify-self: end; display: flex; gap: 18px; }
.footer-links a:hover { color: var(--purple-bright); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .menu-toggle { display: block; z-index: 55; }
  .nav {
    position: fixed; inset: 0; background: rgba(5,5,6,.98);
    flex-direction: column; justify-content: center; align-items: center; gap: 30px;
    font-size: 1.35rem; transform: translateY(-100%); transition: transform .35s ease;
  }
  .nav.open { transform: translateY(0); }
  .hero { min-height: 94svh; padding: 120px 6vw 60px; }
  .hero-photo { object-position: 55% center; }
  .hero-overlay { background: linear-gradient(to top, rgba(5,5,6,.98) 0%, rgba(5,5,6,.56) 58%, rgba(5,5,6,.2) 100%); }
  .hero h1 { font-size: 28vw; }
  .hero-badge { width: 110px; right: 6vw; top: 105px; bottom: auto; opacity: .8; }
  .scroll-cue { display: none; }
  .section { padding: 90px 6vw; }
  .section h2, .visual-copy h2 { font-size: 19vw; }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-grid a:nth-child(odd) { border-right: 0; }
  .visual-section, .about-section, .contact-section { grid-template-columns: 1fr; }
  .visual-copy { padding: 90px 6vw 45px; }
  .visual-image { min-height: 58vw; }
  .visual-image::after { background: linear-gradient(to bottom, #080709 0%, transparent 25%); }
  .about-mark img { max-width: 430px; }
  footer { grid-template-columns: 1fr; justify-items: start; }
  .footer-links { justify-self: start; }
}

@media (max-width: 560px) {
  .site-header { height: 72px; padding: 0 6vw; }
  .brand img { width: 58px; height: 58px; }
  .hero { min-height: 88svh; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .section-heading { display: block; }
  .section-intro { margin-top: 24px; }
  .platform-grid a { grid-template-columns: 35px 1fr auto; min-height: 92px; padding-right: 10px; }
  .platform-grid strong { font-size: 2.1rem; }
  .visual-image { min-height: 72vw; }
  .social-feature a { grid-template-columns: 1fr auto; padding: 24px 0; }
  .social-feature a span:first-child { grid-column: 1 / -1; }
  .social-feature strong { font-size: 2.8rem; }
  .contact-email { font-size: 2.2rem; }
  .footer-links { flex-wrap: wrap; }
}

/* === XILLZ v3 Discography === */
.featured-release {
  display: grid;
  grid-template-columns: minmax(280px, 560px) 1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  margin-bottom: 105px;
}
.featured-art {
  padding: 10px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(141,34,255,.08), transparent);
}
.featured-art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.featured-copy h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: .88;
  margin: 10px 0 22px;
}
.featured-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.85;
  max-width: 620px;
}
.catalog-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 35px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}
.catalog-title h3 {
  font-family: "Bebas Neue";
  font-size: clamp(3rem, 6vw, 6rem);
  margin: 0;
}
.release-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 22px;
}
.release-card {
  min-width: 0;
}
.release-art-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a090c;
}
.release-art-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.release-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: 22px;
  background: linear-gradient(to top, rgba(5,5,6,.92), transparent 55%);
  opacity: 0;
  transition: opacity .3s ease;
}
.release-hover a {
  width: 100%;
  background: var(--purple);
  padding: 14px 16px;
  text-align: center;
  text-transform: uppercase;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  box-shadow: 0 0 24px rgba(141,34,255,.24);
}
.release-card:hover .release-art-wrap img {
  transform: scale(1.035);
  filter: brightness(.72);
}
.release-card:hover .release-hover {
  opacity: 1;
}
.release-card-meta {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding-top: 15px;
}
.release-card-meta > span {
  color: var(--purple-bright);
  font-size: .65rem;
  letter-spacing: .16em;
  padding-top: 4px;
}
.release-card-meta p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: .58rem;
  letter-spacing: .14em;
}
.release-card-meta h3 {
  margin: 0;
  font-family: "Bebas Neue";
  font-weight: 400;
  font-size: clamp(1.55rem, 2.5vw, 2.5rem);
  line-height: 1;
}
.all-platforms {
  margin-top: 90px;
  padding: 34px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 20%, rgba(141,34,255,.16), transparent 28%),
    #09080b;
}
.all-platforms > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .18em;
}
.stream-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.stream-pills a {
  border: 1px solid var(--line);
  padding: 12px 16px;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
  transition: background .2s ease, border-color .2s ease;
}
.stream-pills a:hover {
  background: var(--purple);
  border-color: var(--purple);
}

@media (max-width: 980px) {
  .release-gallery { grid-template-columns: repeat(2, 1fr); }
  .featured-release { grid-template-columns: 1fr; }
  .featured-art { max-width: 620px; }
}
@media (max-width: 620px) {
  .release-gallery { grid-template-columns: 1fr; gap: 38px; }
  .catalog-title { display: block; }
  .catalog-title h3 { margin-top: 8px; }
  .all-platforms { padding: 24px; }
}


/* === XILLZ v4: About + EPK === */
.lead-bio {
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  color: #ddd7e1 !important;
}
.identity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  margin: 34px 0;
  border: 1px solid var(--line);
}
.identity-grid article {
  background: var(--bg);
  padding: 28px;
}
.identity-grid article > span {
  color: var(--purple-bright);
  font-size: .66rem;
  letter-spacing: .18em;
}
.identity-grid h3 {
  font-family: "Bebas Neue";
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 400;
  margin: 10px 0;
}
.identity-grid p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.about-copy blockquote,
.epk-bio-copy blockquote {
  margin: 34px 0 24px;
  padding: 22px 0 22px 24px;
  border-left: 3px solid var(--purple);
  font-family: "Bebas Neue";
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: .95;
}
.bio-tags {
  color: var(--purple-bright) !important;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .68rem;
  font-weight: 800;
}
.epk-card-link {
  margin-top: 24px;
  border: 1px solid var(--line);
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 20px;
  transition: background .2s ease, transform .2s ease;
}
.epk-card-link:hover {
  background: var(--purple-soft);
  transform: translateY(-2px);
}
.epk-card-link span:first-child {
  grid-column: 1 / -1;
  color: var(--purple-bright);
  font-size: .62rem;
  letter-spacing: .18em;
}
.epk-card-link strong {
  font-family: "Bebas Neue";
  font-size: 2rem;
  font-weight: 400;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* EPK Page */
.epk-page {
  background: #050506;
}
.epk-nav {
  display: flex;
}
.epk-hero {
  min-height: 88svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 140px 7vw 80px;
}
.epk-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.epk-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(5,5,6,.98) 0%, rgba(5,5,6,.25) 50%, rgba(5,5,6,.35) 100%),
    linear-gradient(90deg, rgba(5,5,6,.88) 0%, rgba(5,5,6,.28) 55%, transparent 100%);
}
.epk-hero-content {
  position: relative;
  z-index: 3;
  max-width: 840px;
}
.epk-hero h1 {
  margin: 0;
  font-family: "Bebas Neue";
  font-size: clamp(8rem, 18vw, 17rem);
  line-height: .8;
}
.epk-hero-content > p:not(.eyebrow) {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #d7d1db;
}
.epk-bio-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8vw;
}
.epk-bio-copy p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.02rem;
}
.epk-bio-copy strong {
  color: var(--text);
}
.epk-facts {
  border: 1px solid var(--line);
  padding: 28px;
  align-self: start;
  background: linear-gradient(145deg, rgba(141,34,255,.08), transparent 45%);
}
.epk-facts dl {
  margin: 24px 0 0;
}
.epk-facts dl div {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.epk-facts dt {
  color: var(--muted);
  text-transform: uppercase;
  font-size: .62rem;
  letter-spacing: .14em;
  margin-bottom: 5px;
}
.epk-facts dd {
  margin: 0;
  line-height: 1.5;
}
.epk-release-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.epk-release-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
}
.epk-release-strip h3 {
  font-family: "Bebas Neue";
  font-size: clamp(1.7rem, 2.5vw, 2.7rem);
  line-height: 1;
  font-weight: 400;
  margin: 12px 0 0;
}
.epk-stream-pills {
  margin-top: 48px;
}
.press-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1.32fr .7fr;
  gap: 18px;
  align-items: stretch;
}
.press-photo-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  background: #09080b;
  padding: 10px;
}
.press-photo-grid img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.press-photo-grid .press-logo img {
  object-fit: contain;
  background: #050506;
}
.press-photo-grid figcaption {
  color: var(--muted);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 12px 4px 4px;
}
.epk-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: end;
}

@media (max-width: 950px) {
  .identity-grid,
  .epk-bio-grid,
  .epk-contact {
    grid-template-columns: 1fr;
  }
  .epk-release-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .press-photo-grid {
    grid-template-columns: 1fr;
  }
  .press-photo-grid img {
    height: auto;
    aspect-ratio: 16/10;
  }
  .press-photo-grid .press-logo img {
    aspect-ratio: 1;
  }
  .epk-nav {
    display: none;
  }
}
@media (max-width: 560px) {
  .identity-grid,
  .epk-release-strip {
    grid-template-columns: 1fr;
  }
  .epk-hero {
    min-height: 76svh;
    padding: 120px 6vw 55px;
  }
  .epk-hero h1 {
    font-size: 30vw;
  }
}


/* === XILLZ v5: Watch + Release Experience === */
.watch-section { background: #070608; }
.watch-feature {
  min-height: min(66vw, 760px);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}
.watch-feature > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.watch-feature:hover > img { transform: scale(1.025); }
.watch-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,6,.94), rgba(5,5,6,.05) 65%);
}
.watch-play {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  width: 92px; height: 92px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(5,5,6,.32);
  backdrop-filter: blur(9px);
  font-size: 1.5rem;
}
.watch-meta {
  position: absolute; z-index: 2; left: 34px; bottom: 30px;
  display: flex; flex-direction: column;
}
.watch-meta small { color: var(--purple-bright); letter-spacing: .18em; }
.watch-meta strong { font-family: "Bebas Neue"; font-size: clamp(3rem,7vw,7rem); line-height: .9; }
.watch-meta em { color: #ccc5d0; font-size: .72rem; font-style: normal; letter-spacing: .12em; text-transform: uppercase; margin-top: 12px; }
.watch-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); margin-top: 24px; }
.watch-grid a {
  padding: 28px 22px; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 38px 1fr auto; gap: 12px; align-items: center;
}
.watch-grid a + a { border-left: 1px solid var(--line); }
.watch-grid span { color: var(--purple-bright); font-size: .65rem; }
.watch-grid strong { font-family: "Bebas Neue"; font-size: 1.8rem; font-weight: 400; }
.watch-grid em { font-size: .62rem; color: var(--muted); font-style: normal; text-transform: uppercase; }
.release-library-cta {
  margin-top: 70px; padding: 34px; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 35px;
  background: radial-gradient(circle at 12% 20%, rgba(141,34,255,.16), transparent 28%), #09080b;
}
.release-library-cta h3 { font-family: "Bebas Neue"; font-size: clamp(2.7rem,5vw,5rem); margin: 0; }
.release-library-cta p:not(.eyebrow) { color: var(--muted); }

/* Releases page */
.release-hero {
  min-height: 78svh; padding: 130px 7vw 65px; position: relative; overflow: hidden;
  display: flex; align-items: end;
}
.release-hero::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at 72% 38%, rgba(141,34,255,.2), transparent 27%);
}
.release-hero-copy { position: relative; z-index: 3; width: 56%; }
.release-hero h1 { font-family:"Bebas Neue"; font-size: clamp(8rem,19vw,18rem); line-height:.8; margin:0; }
.release-hero-copy > p:not(.eyebrow) { color:var(--muted); font-size:1.1rem; }
.cover-wall {
  position:absolute; right:-3vw; top:105px; width:48vw; display:grid; grid-template-columns:1fr 1fr;
  gap:12px; transform:rotate(5deg); opacity:.72;
}
.cover-wall img { width:100%; aspect-ratio:1; object-fit:cover; border:1px solid var(--line); }
.library-heading { margin-bottom:50px; }
.library-heading h2, .release-stream-footer h2 {
  font-family:"Bebas Neue"; font-size:clamp(5rem,11vw,10rem); line-height:.85; margin:0;
}
.library-heading > p:last-child { color:var(--muted); }
.library-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:48px 22px; }
.library-art {
  display:block; width:100%; border:1px solid var(--line); padding:0; background:#09080b; cursor:pointer;
  position:relative; overflow:hidden; color:white;
}
.library-art img { width:100%; aspect-ratio:1; object-fit:cover; transition:transform .45s ease, filter .45s ease; }
.library-art span {
  position:absolute; inset:auto 18px 18px 18px; padding:13px; background:var(--purple);
  font-size:.66rem; font-weight:800; letter-spacing:.12em; opacity:0; transform:translateY(8px); transition:.3s ease;
}
.library-art:hover img { transform:scale(1.035); filter:brightness(.68); }
.library-art:hover span { opacity:1; transform:translateY(0); }
.library-meta { padding-top:14px; }
.library-meta small { color:var(--purple-bright); letter-spacing:.16em; }
.library-meta h2 { font-family:"Bebas Neue"; font-size:clamp(2rem,3.2vw,3.5rem); font-weight:400; line-height:.95; margin:7px 0 14px; }
.library-actions { display:flex; flex-wrap:wrap; gap:8px 15px; }
.library-actions a { color:var(--muted); font-size:.64rem; text-transform:uppercase; letter-spacing:.08em; }
.library-actions a:hover { color:var(--purple-bright); }
.release-modal {
  position:fixed; inset:0; z-index:200; background:rgba(3,3,4,.94); backdrop-filter:blur(18px);
  display:none; place-items:center; padding:5vw;
}
.release-modal.open { display:grid; }
.release-modal-inner {
  width:min(1100px,100%); display:grid; grid-template-columns:minmax(280px,520px) 1fr; gap:6vw; align-items:center;
}
.release-modal-inner img { width:100%; aspect-ratio:1; object-fit:cover; border:1px solid var(--line); }
.release-modal-inner h2 { font-family:"Bebas Neue"; font-size:clamp(4rem,8vw,8rem); line-height:.86; margin:10px 0 18px; }
.release-modal-inner p:not(.eyebrow) { color:var(--muted); }
.release-modal-close {
  position:absolute; top:24px; right:30px; border:0; background:none; color:white; font-size:3rem; cursor:pointer;
}
.modal-platforms { display:flex; flex-direction:column; border-top:1px solid var(--line); margin-top:25px; }
.modal-platforms a { padding:15px 0; border-bottom:1px solid var(--line); text-transform:uppercase; font-size:.7rem; letter-spacing:.12em; }
.modal-platforms a:hover { color:var(--purple-bright); }
.release-stream-footer { background:#080709; }

@media (max-width: 900px) {
  .watch-grid { grid-template-columns:1fr; }
  .watch-grid a + a { border-left:0; }
  .release-library-cta { flex-direction:column; align-items:flex-start; }
  .release-hero { min-height:72svh; }
  .release-hero-copy { width:100%; }
  .cover-wall { width:70vw; right:-20vw; opacity:.25; }
  .library-grid { grid-template-columns:repeat(2,1fr); }
  .release-modal-inner { grid-template-columns:1fr; overflow:auto; max-height:86vh; }
  .release-modal-inner img { max-width:440px; }
  .release-nav { display:none; }
}
@media (max-width: 580px) {
  .watch-feature { min-height:72vh; }
  .watch-meta { left:20px; bottom:20px; }
  .watch-play { width:72px; height:72px; }
  .library-grid { grid-template-columns:1fr; }
  .release-hero h1 { font-size:29vw; }
  .cover-wall { width:95vw; right:-45vw; }
}


/* === XILLZ v6: Launch-ready polish === */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
}
a, button {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--purple-bright);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  background: #fff;
  color: #050506;
  padding: 10px 14px;
  font-weight: 800;
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  padding-top: max(16px, env(safe-area-inset-top));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.release-art-wrap img,
.library-art img,
.epk-release-strip img {
  background: #0a090c;
}
.launch-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 40%, rgba(141,34,255,.18), transparent 30%),
    linear-gradient(120deg, #080709, #050506);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 45px;
}
.launch-strip h2 {
  font-family: "Bebas Neue";
  font-size: clamp(4.8rem, 10vw, 10rem);
  line-height: .82;
  margin: 8px 0 0;
}
.launch-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 8px;
}
.reveal {
  will-change: transform, opacity;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (max-width: 760px) {
  .section {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .site-header {
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .launch-strip {
    align-items: flex-start;
    flex-direction: column;
  }
  .launch-strip h2 {
    font-size: clamp(4.3rem, 20vw, 7rem);
  }
  .hero-actions,
  .contact-actions,
  .launch-strip-actions {
    width: 100%;
  }
  .hero-actions .btn,
  .contact-actions .btn,
  .launch-strip-actions .btn {
    flex: 1 1 190px;
  }
  .stream-pills a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}
@media (max-width: 460px) {
  .release-card-meta {
    grid-template-columns: 30px 1fr;
  }
  .watch-grid a {
    grid-template-columns: 28px 1fr auto;
    padding-left: 14px;
    padding-right: 14px;
  }
}


/* === XILLZ v7 direct singles player === */
.singles-player-section{background:linear-gradient(180deg,#050506 0%,#0b0710 55%,#050506 100%);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.singles-player-section .section-head{display:flex;justify-content:space-between;gap:40px;align-items:end;margin-bottom:34px}
.singles-player-section .section-head h2{font-family:"Bebas Neue";font-size:clamp(4rem,8vw,8rem);line-height:.86;margin:5px 0 0}
.singles-intro{max-width:500px;color:#aaa3ae;line-height:1.7}
.singles-player-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px}
.single-player-card{background:#0c0a0e;border:1px solid rgba(255,255,255,.1);padding:12px;box-shadow:0 20px 55px rgba(0,0,0,.25);transition:transform .25s ease,border-color .25s ease}
.single-player-card:hover{transform:translateY(-4px);border-color:rgba(177,88,255,.5)}
.single-player-card.is-playing{border-color:#9b4dff;box-shadow:0 0 0 1px rgba(155,77,255,.25),0 22px 70px rgba(91,20,150,.25)}
.single-cover-button{position:relative;display:block;width:100%;padding:0;border:0;background:#050506;cursor:pointer;overflow:hidden;aspect-ratio:1}
.single-cover-button img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s ease,filter .35s ease}
.single-cover-button:hover img,.single-player-card.is-playing .single-cover-button img{transform:scale(1.025);filter:brightness(.82)}
.single-play-icon{position:absolute;inset:50% auto auto 50%;transform:translate(-50%,-50%);display:grid;place-items:center;width:58px;height:58px;border-radius:50%;background:rgba(8,5,10,.78);border:1px solid rgba(255,255,255,.55);font-size:1.25rem;padding-left:3px;opacity:0;transition:opacity .25s ease,transform .25s ease}
.single-cover-button:hover .single-play-icon,.single-player-card.is-playing .single-play-icon{opacity:1}
.single-player-card.is-playing .single-play-icon{font-size:0}
.single-player-card.is-playing .single-play-icon::after{content:"Ⅱ";font-size:1.2rem}
.single-player-meta{display:grid;grid-template-columns:34px 1fr;gap:10px;padding:15px 2px 12px}
.single-number{font-family:"Bebas Neue";font-size:1.55rem;color:#6f6674}
.single-type{font-size:.68rem;letter-spacing:.16em;color:#9b4dff;font-weight:800;margin:0 0 4px}
.single-player-meta h3{font-size:1rem;line-height:1.2;margin:0}
.single-controls{display:flex;align-items:center;gap:10px;padding:0 2px 4px}
.track-toggle{width:38px;height:38px;flex:0 0 38px;border-radius:50%;border:1px solid rgba(255,255,255,.2);background:#17121b;color:white;cursor:pointer}
.single-player-card.is-playing .track-toggle{background:#8d22ff;border-color:#8d22ff}
.track-progress-wrap{flex:1;min-width:0}
.track-progress{width:100%;accent-color:#9b4dff;cursor:pointer}
.track-times{display:flex;justify-content:space-between;font-size:.65rem;color:#756e79;margin-top:2px}
@media(max-width:1100px){.singles-player-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:760px){.singles-player-section .section-head{align-items:flex-start;flex-direction:column}.singles-player-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.single-player-card{padding:9px}.single-player-meta h3{font-size:.9rem}}
@media(max-width:430px){.singles-player-grid{grid-template-columns:1fr}}
