@font-face {
  font-family: 'Cellblock Noir';
  src: url('assets/fonts/cellblock-noir.otf') format('truetype');
  font-display: swap;
}

:root {
  --bg: #0b0b0c;
  --panel: #111214;
  --text: #ececef;
  --muted: #a3a6ad;
  --line: #23252b;
  --accent: #d9dce3;
  --max: 980px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(1400px 900px at 85% -10%, #1e2430 0%, #0b0d12 40%, #050608 78%),
    linear-gradient(180deg, #0c0d12 0%, #07080b 100%);
  color: var(--text);
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media (hover: hover) and (pointer: fine) {
  body.vx-cursor-on,
  body.vx-cursor-on a,
  body.vx-cursor-on button,
  body.vx-cursor-on input,
  body.vx-cursor-on select,
  body.vx-cursor-on textarea,
  body.vx-cursor-on [role="button"] {
    cursor: none !important;
  }

  .vx-cursor {
    position: fixed;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    z-index: 99999;
    pointer-events: none;
    font-family: 'Cellblock Noir', Inter, sans-serif;
    font-size: 16px;
    letter-spacing: .08em;
    color: rgba(231,235,245,.94);
    text-shadow: 0 0 12px rgba(231,235,245,.22);
    mix-blend-mode: screen;
    opacity: 0;
    padding: .06rem .18rem;
    border-radius: 4px;
    border: 1px solid transparent;
    background: transparent;
    transition: opacity .12s ease, transform .06s linear, background .12s ease, border-color .12s ease;
  }

  .vx-cursor.is-active {
    color: #ff2a2a;
    text-shadow: 0 0 8px rgba(255, 58, 58, .35);
    mix-blend-mode: normal;
    opacity: 1;
    background: rgba(24, 6, 6, .82);
    border: 1px solid rgba(255, 42, 42, .82);
    box-shadow: 0 0 0 1px rgba(0,0,0,.26), 0 0 14px rgba(255,42,42,.30);
    transform: translate(-50%, -50%) scale(1.04);
  }
}

body::before {
  content: "";
  position: fixed;
  inset: -9%;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.66' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23a)' opacity='.28'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='460' height='460' viewBox='0 0 460 460'%3E%3Cfilter id='b'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.14' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='460' height='460' filter='url(%23b)' opacity='.15'/%3E%3C/svg%3E"),
    radial-gradient(1300px 980px at 12% 8%, rgba(92, 128, 176, .10), transparent 66%),
    radial-gradient(980px 860px at 88% 82%, rgba(168, 124, 80, .08), transparent 68%),
    radial-gradient(760px 620px at 38% 70%, rgba(110, 145, 128, .06), transparent 72%),
    repeating-linear-gradient(90deg, rgba(168, 181, 214, .026) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(0deg, rgba(176, 146, 108, .022) 0 1px, transparent 1px 6px);
  background-size: 300px 300px, 500px 500px, cover, cover, cover, auto, auto;
  opacity: .46;
  mix-blend-mode: normal;
  z-index: 0;
  transform-origin: center;
  animation: grainSeethe 78s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 38%, rgba(0,0,0,.42) 100%),
    linear-gradient(180deg, rgba(24,18,12,.10) 0%, rgba(6,6,8,.28) 100%);
  z-index: 0;
  animation: vignetteBreath 18s ease-in-out infinite;
}

header, main, footer { position: relative; z-index: 1; }
main { flex: 1; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: grid;
  place-items: center;
  background: rgba(6, 8, 12, .76);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease;
}

.page-loader-mark {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(220,224,232,.32);
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(10, 12, 18, .72);
  box-shadow: 0 0 20px rgba(255,255,255,.08);
  animation: loaderBlink .9s steps(2, end) infinite;
}

.page-loader-mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .92;
}

body.is-page-loading .page-loader {
  opacity: 1;
  visibility: visible;
}

body.is-page-loading {
  overflow: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(var(--max), 92vw); margin: 0 auto; }

header {
  position: sticky; top: 0; z-index: 5;
  background: rgba(11,11,12,.88); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 64px;
}
.brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.brand {
  letter-spacing: .16em;
  font-size: 1.08rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.brand-socials {
  margin-left: .1rem;
  display: inline-flex;
  gap: .3rem;
}

.brand-socials a {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(163,166,173,.35);
  border-radius: 6px;
  color: rgba(220,224,232,.85);
  text-decoration: none;
}

.brand-socials a svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-socials a:hover {
  border-color: rgba(220,224,232,.7);
  color: #fff;
}

.brand-socials a[aria-label="Facebook"] svg,
.brand-socials a[aria-label="YouTube"] svg,
.brand-socials a[aria-label="TikTok"] svg {
  fill: currentColor;
  stroke: none;
}

.brand-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .95;
}
nav ul { list-style: none; display: flex; gap: 1rem; padding: 0; margin: 0; }
nav a {
  color: var(--muted);
  font-size: .95rem;
  display: inline-block;
  transition: transform .16s ease, color .16s ease, text-shadow .2s ease, filter .2s ease;
}
nav a.active, nav a:hover { color: var(--text); text-decoration: none; }
nav a:hover {
  transform: scale(1.06);
  text-shadow: 0 0 10px rgba(130, 170, 255, .35);
  filter: saturate(1.15);
}


.hero { padding: 10vh 0 6vh; border-bottom: 1px solid var(--line); }
.hero h1 { margin: 0 0 .65rem; font-size: clamp(2rem, 7vw, 4.8rem); letter-spacing: .06em; }
.hero p { max-width: 62ch; color: var(--muted); }

.grid { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #121318 0%, #0f1013 100%);
  border-radius: 8px 11px 9px 10px;
  clip-path: polygon(0 5px, 5px 0, calc(100% - 6px) 0, 100% 6px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 6px 100%, 0 calc(100% - 6px));
  padding: 1rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02), 0 10px 26px rgba(0,0,0,.22);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, rgba(255,255,255,.035), transparent 32%);
  mix-blend-mode: soft-light;
}

section { padding: 2.25rem 0; }
main > section:first-child { padding-top: calc(2.22rem + 40px); }
.hero + section { padding-top: .9rem; }
.hero-release-line { margin-bottom: 0; }
h2 { font-size: 1.15rem; letter-spacing: .06em; text-transform: uppercase; margin: 0 0 .85rem; }
.small { color: var(--muted); font-size: .93rem; }

.button {
  display: inline-block; margin-top: .5rem;
  border: 1px solid var(--line); border-radius: 10px;
  padding: .55rem .9rem; color: var(--text);
}
.button:hover { background: #171a20; text-decoration: none; }

.release-cover-link {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.release-cover-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .42);
}

.release-cover-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter .22s ease;
}

.release-cover-link:hover img {
  filter: grayscale(1);
}

.embed-placeholder {
  border: 1px dashed #3a3d45;
  border-radius: 12px;
  padding: 1rem;
  color: var(--muted);
  margin-top: .65rem;
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 2rem 0 2.8rem;
  font-size: .9rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
  position: relative;
}

.footer-hint {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(163,166,173,.55);
  letter-spacing: .08em;
  font-size: .78rem;
  user-select: none;
  pointer-events: none;
}

.footer-hint kbd {
  font: inherit;
  font-size: .72rem;
  padding: .06rem .34rem;
  margin: 0 .08rem;
  border-radius: 5px;
  border: 1px solid rgba(163,166,173,.45);
  background: rgba(163,166,173,.12);
  color: rgba(190,193,199,.72);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,.08);
}

.home-release-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .75rem;
}

.social-widget-wrap {
  margin-top: .65rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #0f1013;
}

.social-widget-wrap iframe {
  display: block;
  width: 100%;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.about-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: 480px;
}

.about-shot {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(0,0,0,.26);
  transition: transform .2s ease, box-shadow .2s ease;
  min-height: 0;
}

.about-shot-left { transform: rotate(-1.2deg); }
.about-shot-right { transform: rotate(1.1deg); }
.about-shot-tall { min-height: 480px; }

.about-shot:hover {
  transform: translateY(-4px) rotate(0deg);
  box-shadow: 0 16px 30px rgba(0,0,0,.34);
}

.about-shot img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 44px);
  background: rgba(5, 7, 12, .9);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .24s ease;
}

.gallery-lightbox.is-open { opacity: 1; }

.gallery-lightbox[hidden] { display: none; }

.gallery-lightbox img {
  max-width: min(96vw, 1700px);
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(180, 190, 215, .28);
  box-shadow: 0 26px 70px rgba(0,0,0,.55);
  transform: scale(.965);
  opacity: .92;
  transition: transform .24s ease, opacity .24s ease;
}

.gallery-lightbox.is-open img {
  transform: scale(1);
  opacity: 1;
}

.gallery-lightbox-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(12, 14, 20, .84);
  color: #e6e9f1;
  border: 1px solid rgba(160,168,186,.5);
  border-radius: 8px;
  padding: .32rem .54rem;
  font-size: .82rem;
}

@media (max-width: 700px) {
  .footer-row { flex-direction: column; align-items: flex-start; }
  .footer-hint { display: none; }
  .about-gallery { grid-template-columns: 1fr; }
  .about-stack, .about-shot-tall { min-height: 0; }
  .about-shot { transform: none !important; }
  .brand-socials { gap: .18rem; }
  .brand-socials a { width: 20px; height: 20px; }
  .brand-socials a svg { width: 12px; height: 12px; }
  .gallery-lightbox { padding: 12px; }
}

.unveil-lock {
  margin-top: .75rem;
  border: 1px solid rgba(120,130,155,.35);
  border-radius: 14px;
  padding: 1.35rem 1.2rem;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(30,34,45,.55), rgba(11,13,18,.85)),
    radial-gradient(140% 120% at 10% 0%, rgba(180,170,220,.12), transparent 45%);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 32px rgba(255,255,255,.04), 0 12px 28px rgba(0,0,0,.28);
}

.stream-grid {
  margin-top: .35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
}

.stream-chip {
  border: 1px solid rgba(140,150,170,.45);
  border-radius: 11px;
  padding: .58rem .65rem;
  background: rgba(18,22,30,.62);
  color: #e9edf5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-size: .9rem;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.stream-chip:hover {
  border-color: rgba(185,195,220,.7);
  background: rgba(28,34,46,.82);
  transform: translateY(-1px);
  text-decoration: none;
}

.stream-ic {
  font-size: .95rem;
  opacity: .92;
}

.stream-embed-wrap {
  margin-top: .8rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(120,130,155,.35);
  background: #11151d;
}

@media (max-width: 760px) {
  .stream-grid { grid-template-columns: 1fr; }
}


body.vx-phase h1,
body.vx-phase h2,
body.vx-phase h3,
body.vx-phase p,
body.vx-phase a,
body.vx-phase li,
body.vx-phase span,
body.vx-phase strong,
body.vx-phase small {
  animation: vxTextFry .08s steps(2,end) 14;
}

@keyframes vxTextFry {
  0% { text-shadow: none; transform: translateX(0); }
  25% { text-shadow: -1px 0 rgba(255,70,70,.6), 1px 0 rgba(90,180,255,.55); transform: translateX(1px); }
  50% { text-shadow: 1px 0 rgba(255,70,70,.55), -1px 0 rgba(90,180,255,.6); transform: translateX(-1px); }
  75% { text-shadow: -1px 0 rgba(255,70,70,.45), 1px 0 rgba(90,180,255,.45); transform: translateX(1px); }
  100% { text-shadow: none; transform: translateX(0); }
}

body.vx-phase main,
body.vx-phase header,
body.vx-phase footer {
  animation: vxPhaseShift .085s steps(2,end) 16;
}

@keyframes vxPhaseShift {
  0% { filter: none; transform: translateX(0) skewX(0deg); }
  25% { filter: hue-rotate(16deg) contrast(1.24) saturate(1.2); transform: translateX(3px) skewX(1.2deg); }
  50% { filter: hue-rotate(-12deg) contrast(1.16) saturate(1.14); transform: translateX(-3px) skewX(-1deg); }
  75% { filter: hue-rotate(9deg) contrast(1.2); transform: translateX(2px) skewX(.8deg); }
  100% { filter: none; transform: translateX(0) skewX(0deg); }
}

.hidden-note { display: none; margin-top: .7rem; color: #c8ccd4; }
.hidden-note.show { display: block; }

.contact-form input, .contact-form textarea {
  width: 100%; background: #0e1014; color: var(--text);
  border: 1px solid var(--line); border-radius: 10px;
  padding: .65rem .75rem; margin-bottom: .7rem;
}

.pulse { animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.6} }
@keyframes loaderBlink {
  0%, 45% { opacity: .96; }
  50%, 100% { opacity: .26; }
}
@keyframes grainSeethe {
  0% { transform: translate3d(-3.2%, -1.6%, 0) scale(1.09) rotate(-0.08deg); filter: contrast(1.02) brightness(1.01) saturate(1.01); }
  25% { transform: translate3d(-1.6%, -0.8%, 0) scale(1.095) rotate(-0.03deg); filter: contrast(1.04) brightness(1) saturate(1.02); }
  50% { transform: translate3d(0%, 0%, 0) scale(1.1) rotate(0.02deg); filter: contrast(1.03) brightness(1.01) saturate(1.02); }
  75% { transform: translate3d(1.6%, 0.7%, 0) scale(1.105) rotate(0.05deg); filter: contrast(1.05) brightness(.99) saturate(1.04); }
  100% { transform: translate3d(3.2%, 1.5%, 0) scale(1.11) rotate(0.08deg); filter: contrast(1.07) brightness(.98) saturate(1.05); }
}
@keyframes vignetteBreath {
  0%,100% { opacity: 1; }
  50% { opacity: .86; }
}

.press-hero {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--line);
}

.press-hero-grid {
  align-items: center;
}

.cover-wrap {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #0f1013;
}

.cover-wrap img,
.press-photo-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .74rem;
  color: var(--muted);
  margin: 0 0 .5rem;
}

.press-title {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 .7rem;
}

.button-row {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin-top: .9rem;
}

.press-list {
  margin-top: .25rem;
}

.press-photo-wrap {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #0f1013;
}

body:not(.loaded) main section,
body:not(.loaded) .card,
body:not(.loaded) .hero h1,
body:not(.loaded) .hero p,
body:not(.loaded) header,
body:not(.loaded) footer {
  opacity: 0;
  transform: translateY(10px);
}

body.loaded main section,
body.loaded .card,
body.loaded .hero h1,
body.loaded .hero p,
body.loaded header,
body.loaded footer {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease;
}

@media (max-width: 700px) {
  nav ul { gap: .65rem; flex-wrap: wrap; justify-content: flex-end; }
}
