/* ============================================================
   VXNISH — stylesheet
   Palette: void black / vxnish purple / sodium orange / bone
   Type: Six Caps (display) · Archivo (body) · IBM Plex Mono (utility)
   ============================================================ */

:root {
  --void: #070508;
  --coal: #0e0a13;
  --smoke: #171021;
  --purple: #7b2ff7;
  --violet: #a56bff;
  --sodium: #e8930c;
  --bone: #ece7f2;
  --ash: #8b8496;
  --line: rgba(165, 107, 255, 0.18);

  --font-display: "Six Caps", "Arial Narrow", sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --pad: clamp(1.25rem, 4vw, 3.5rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--purple); color: var(--void); }

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

/* ---------- film grain overlay ---------- */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.9s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

/* ---------- typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.display-xl { font-size: clamp(5rem, 22vw, 17rem); }
.display-lg { font-size: clamp(3.5rem, 11vw, 8.5rem); }
.display-md { font-size: clamp(2.6rem, 7vw, 5rem); }
/* Accentwoord binnen een grote kop (niet cursief, wel in de huisstijlkleur) */
.display-lg em, .display-md em { font-style: normal; color: var(--purple); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--violet);
  display: block;
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: "// "; color: var(--sodium); }

p { max-width: 62ch; }
.muted { color: var(--ash); }

/* ---------- layout ---------- */
.wrap { padding-left: var(--pad); padding-right: var(--pad); max-width: 1400px; margin: 0 auto; }
section { position: relative; padding-top: clamp(4rem, 9vw, 8rem); padding-bottom: clamp(4rem, 9vw, 8rem); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem var(--pad);
  /* Geen balk/achtergrond meer achter de nav — bewuste keuze. Om de tekst
     leesbaar te houden boven lichte delen van de hero-foto staat er een
     zachte schaduw achter de letters (zie .nav-links a) i.p.v. een vlak. */
}
.nav > a:first-child { margin-left: -0.5rem; }
.nav-mark {
  height: 56px;
  width: auto;
  display: block;
  transform: translateY(3px);
  mix-blend-mode: screen;
  filter: saturate(1.2);
}
.nav-links {
  display: flex;
  gap: clamp(1rem, 3vw, 2.2rem);
  list-style: none;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-links a {
  text-decoration: none;
  color: var(--bone);
  padding: 0.3rem 0.1rem;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--violet); border-color: var(--purple); }
.nav-links a[aria-current="page"] { color: var(--violet); border-color: var(--purple); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 102svh;
  display: grid;
  align-items: end;
  padding-top: 6rem;
  padding-bottom: 0;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: saturate(1.05) contrast(1.06);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--void) 4%, rgba(7, 5, 8, 0.25) 44%, rgba(7, 5, 8, 0.55) 100%),
    radial-gradient(83% 59% at 50% 100%, rgba(123, 47, 247, 0.28), transparent 70%);
}
.hero-logo {
  width: min(620px, 82vw);
  margin: 4rem auto 0;
  mix-blend-mode: screen;
  filter: saturate(1.25) drop-shadow(0 0 42px rgba(123, 47, 247, 0.55));
}
.hero-inner { text-align: center; padding-bottom: 1rem; }
.hero-tag {
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 1.6vw, 0.85rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bone);
  margin-top: 1.4rem;
}
.hero-tag span { color: var(--sodium); }
.hero-scroll {
  display: inline-block;
  margin: 2.6rem auto 2.2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--ash);
  text-decoration: none;
}
.hero-scroll::after { content: "↓"; display: block; margin-top: 0.4rem; color: var(--purple); font-size: 1rem; }

/* ---------- marquee ticker ---------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--coal);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.65rem 0;
}
.ticker-track {
  display: inline-block;
  animation: ticker 26s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.ticker-track b { color: var(--purple); font-weight: 600; }
.ticker-track i { color: var(--sodium); font-style: normal; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- drip divider (echo van het logo) ---------- */
.drip {
  display: block;
  width: 100%;
  height: 56px;
  margin-bottom: -1px;
  color: var(--void);
}
.drip.on-coal { color: var(--coal); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.6rem;
  border: 1px solid var(--purple);
  color: var(--bone);
  background: linear-gradient(120deg, rgba(123, 47, 247, 0.16), rgba(123, 47, 247, 0));
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s, color 0.15s;
}
.btn:hover, .btn:focus-visible {
  background: var(--purple);
  color: #fff;
  transform: skewX(-4deg);
  box-shadow: 0 0 26px rgba(123, 47, 247, 0.5), 4px 4px 0 rgba(232, 147, 12, 0.55);
}
.btn.ghost { border-color: rgba(236, 231, 242, 0.28); background: none; }
.btn.ghost:hover, .btn.ghost:focus-visible {
  border-color: var(--purple);
  background: rgba(123, 47, 247, 0.14);
  color: var(--violet);
  box-shadow: none;
}
.btn.orange { border-color: var(--sodium); }
.btn.orange:hover, .btn.orange:focus-visible {
  background: var(--sodium);
  color: var(--void);
  box-shadow: 0 0 26px rgba(232, 147, 12, 0.45), 4px 4px 0 rgba(123, 47, 247, 0.6);
}
:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; }

/* ---------- featured ---------- */
.featured { background: var(--coal); }
.featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.featured h2 { margin-bottom: 1.6rem; }
.featured h2 em { font-style: normal; color: var(--purple); }
.player-frame {
  border: 1px solid var(--line);
  background: var(--void);
  padding: 0.6rem;
  box-shadow: 12px 12px 0 rgba(123, 47, 247, 0.16);
}
.player-frame iframe { width: 100%; height: 166px; border: 0; display: block; }

/* ---------- track grid ---------- */
.tracks-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.track-search { margin-bottom: 2rem; }
.track-search input {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  width: 100%;
  max-width: 420px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--bone);
  background: linear-gradient(120deg, rgba(123, 47, 247, 0.16), rgba(123, 47, 247, 0)), var(--coal);
  border: 1px solid var(--purple);
  padding: 0.85rem 1.1rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.track-search input::-webkit-search-decoration,
.track-search input::-webkit-search-cancel-button,
.track-search input::-webkit-search-results-button,
.track-search input::-webkit-search-results-decoration { -webkit-appearance: none; }
.track-search input::placeholder { color: var(--bone); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.72rem; }
.track-search input:focus-visible { border-color: var(--purple); box-shadow: 0 0 26px rgba(123, 47, 247, 0.5); outline: none; }
.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.track-card {
  border: 1px solid var(--line);
  background: var(--coal);
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.track-card:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(123, 47, 247, 0.22);
}
.track-art { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--smoke); }
.track-art img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); }
.track-art .no-art {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 3.6rem;
  color: rgba(123, 47, 247, 0.5);
}
.track-num {
  position: absolute; top: 0.6rem; left: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  background: rgba(7, 5, 8, 0.8);
  color: var(--sodium);
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(232, 147, 12, 0.4);
}
.track-body { padding: 1.1rem 1.1rem 1.3rem; display: flex; flex-direction: column; gap: 0.9rem; flex: 1; }
.track-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 0.95;
  text-transform: uppercase;
}
.track-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: auto; }
.track-actions .btn { padding: 0.7rem 1rem; font-size: 0.68rem; }

/* loading / empty / error states */
.state {
  border: 1px dashed var(--line);
  padding: 3rem 1.5rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
}
.state .pulse {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--purple);
  margin-right: 0.7rem;
  animation: pulse 0.9s ease-in-out infinite alternate;
}
@keyframes pulse { from { opacity: 0.25; transform: scale(0.7); } to { opacity: 1; transform: scale(1.15); } }

/* ---------- bio teaser / bio page ---------- */
.bio-teaser { background: var(--coal); }
.bio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.bio-photo {
  border: 1px solid var(--line);
  box-shadow: -12px 12px 0 rgba(232, 147, 12, 0.2);
  overflow: hidden;
}
.bio-photo img { filter: saturate(1.08) contrast(1.05); transition: transform 0.5s; }
.bio-photo:hover img { transform: scale(1.03); }
.bio-copy p { margin-bottom: 1.1rem; }
.bio-copy .btn { margin-top: 0.8rem; }

.bio-hero { padding-top: 9rem; }
.bio-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(1.5rem, 4vw, 3rem); margin-top: 2.5rem; }
.milestones { list-style: none; margin-top: 2.5rem; border-top: 1px solid var(--line); }
.milestones li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.4rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
.milestones .year { font-family: var(--font-mono); color: var(--sodium); font-size: 0.85rem; letter-spacing: 0.15em; padding-top: 0.2rem; }

/* ---------- booking ---------- */
.booking { text-align: center; scroll-margin-top: 6rem; }
.booking-mail {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 6vw, 4.6rem);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bone);
  line-height: 1;
  display: inline-block;
  margin: 1.4rem 0 2rem;
  border-bottom: 3px solid var(--purple);
  padding-bottom: 0.3rem;
  transition: color 0.15s, border-color 0.15s, text-shadow 0.15s;
  overflow-wrap: anywhere;
}
.booking-mail:hover, .booking-mail:focus-visible {
  color: var(--violet);
  border-color: var(--sodium);
  text-shadow: 0 0 30px rgba(123, 47, 247, 0.8);
}

/* ---------- tekst-accenten ----------
   Voor de vetgedrukte woorden uit het tekstdocument (catchy, heavy,
   driving, bouncy, energetic…). .hl = violet (standaard), .hl-warm =
   oranje, voor de "energy"-lijn die extra mag opvallen. */
.hl { color: var(--violet); font-weight: 600; }
.hl-warm { color: var(--sodium); font-weight: 600; }

/* ---------- support ---------- */
.support { background: var(--coal); text-align: center; }
.support .eyebrow { display: inline-block; }
.support-names {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.6rem;
  margin: 1.8rem auto 2.2rem;
  max-width: 900px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
}
.support-names li { position: relative; }
.support-names li + li::before {
  content: "·";
  color: var(--violet);
  position: absolute;
  left: -0.95rem;
}
.support-photo {
  max-width: 420px;
  margin: 0 auto 2.2rem;
  border: 1px solid var(--line);
  background: var(--void);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
}
.support-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- socials / footer ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.socials { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(236, 231, 242, 0.22);
  background: var(--coal);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.social-link svg { width: 22px; height: 22px; display: block; }
.social-link:hover, .social-link:focus-visible {
  transform: translateY(-3px);
  border-color: rgb(var(--social-rgb, 123, 47, 247));
  box-shadow: 0 0 22px rgba(var(--social-rgb, 123, 47, 247), 0.55);
}
footer {
  border-top: 1px solid var(--line);
  padding: 2.2rem var(--pad) 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  text-align: center;
}
.foot-mark { height: 64px; mix-blend-mode: screen; }
.foot-note { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ash); }

/* ---------- giant ghost word ---------- */
.ghost-word {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.14em;
  font-family: var(--font-display);
  font-size: clamp(8rem, 26vw, 22rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(123, 47, 247, 0.22);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
section > .wrap { position: relative; z-index: 1; }

/* ---------- gate result page ---------- */
.gate-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 7rem var(--pad) 4rem;
  text-align: center;
}
.gate-card {
  max-width: 640px;
  border: 1px solid var(--line);
  background: var(--coal);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: 0 0 60px rgba(123, 47, 247, 0.18);
}
.gate-card.success { border-color: rgba(123, 47, 247, 0.6); }
.gate-card.denied { border-color: rgba(232, 147, 12, 0.55); }
.gate-icon { font-size: 2.6rem; margin-bottom: 1rem; }
.gate-card h1 { margin-bottom: 1rem; }
.gate-card p { margin: 0 auto 1rem; }
.gate-steps {
  list-style: none;
  margin: 1.6rem auto;
  text-align: left;
  max-width: 380px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.gate-steps li { padding: 0.55rem 0; border-bottom: 1px dashed var(--line); }
.gate-steps li::before { content: "→ "; color: var(--sodium); }
.gate-actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; margin-top: 1.8rem; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .featured-grid, .bio-grid { grid-template-columns: 1fr; }
  .bio-photo { max-width: 480px; }
  .milestones li { grid-template-columns: 80px 1fr; gap: 1rem; }
  .nav-mark { height: 44px; }
}
@media (max-width: 520px) {
  .nav-links { font-size: 0.64rem; gap: 0.9rem; }
  .track-grid { grid-template-columns: 1fr; }
  .ticker { padding: 0.4rem 0; }
  .ticker-track { font-size: 0.46rem; letter-spacing: 0.14em; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::after, .ticker-track, .state .pulse { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}
