:root {
  --bg: #05070b;
  --surface: #0b0f17;
  --surface-2: #101622;
  --text: #f6f7fb;
  --muted: #a6afc3;
  --line: rgba(255,255,255,.1);
  --gold: #ffb000;
  --blue: #49b6ff;
  --max: 1240px;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, #06090f 0%, #05070b 100%);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}


body::before,
body::after {
  content: "";
  position: fixed;
  top: -18vh;
  width: min(42vw, 620px);
  height: 165vh;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  transform-origin: 50% 8%;
  filter: blur(22px);
  opacity: .44;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 62%, transparent 100%);
}
body::before {
  left: -7vw;
  transform: rotate(-15deg);
  background:
    radial-gradient(circle at 50% 7%, rgba(235,248,255,.96) 0 1.4%, rgba(73,182,255,.70) 2.8%, rgba(73,182,255,0) 8%),
    radial-gradient(ellipse 36% 92% at 50% 8%, rgba(73,182,255,.42) 0%, rgba(73,182,255,.22) 24%, rgba(73,182,255,.10) 48%, rgba(73,182,255,.025) 68%, transparent 82%);
}
body::after {
  right: -7vw;
  transform: rotate(15deg);
  background:
    radial-gradient(circle at 50% 7%, rgba(255,248,224,.96) 0 1.4%, rgba(255,176,0,.68) 2.8%, rgba(255,176,0,0) 8%),
    radial-gradient(ellipse 36% 92% at 50% 8%, rgba(255,176,0,.40) 0%, rgba(255,176,0,.21) 24%, rgba(255,176,0,.095) 48%, rgba(255,176,0,.025) 68%, transparent 82%);
}

body.menu-open { overflow: hidden; }

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

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  z-index: 100;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 34px;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(5,7,11,.85), transparent);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.25);
  display: grid; place-items: center; font-size: 11px; letter-spacing: .14em;
}
.brand-text { font-weight: 700; letter-spacing: .04em; }

.menu-toggle {
  width: 48px; height: 48px; background: rgba(255,255,255,.05);
  border: 1px solid var(--line); border-radius: 50%; cursor: pointer;
  display: grid; place-content: center; gap: 6px; position: relative; z-index: 60;
}
.menu-toggle span { width: 19px; height: 1px; background: white; transition: .3s; }
.menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.overlay-nav {
  position: fixed; inset: 0; z-index: 40; background: rgba(4,6,10,.97);
  display: grid; place-items: center; opacity: 0; visibility: hidden; transition: .35s;
}
.overlay-nav.open { opacity: 1; visibility: visible; }
.overlay-inner { display: flex; flex-direction: column; gap: 16px; text-align: center; }
.overlay-inner a {
  font-family: var(--font-heading); font-size: clamp(2.3rem, 7vw, 5.4rem);
  font-weight: 700; color: #dfe4ef; transition: .25s;
}
.overlay-inner a:hover { color: var(--gold); transform: translateX(8px); }

.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  padding: 130px max(24px, calc((100vw - var(--max))/2));
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8,12,19,.72) 0%, rgba(5,7,11,.18) 58%, rgba(8,11,16,.66) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0; height: 180px;
  background: linear-gradient(to bottom, transparent, rgba(5,7,11,.88));
}
.hero-spotlight { display: none; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0) 26%);
  pointer-events: none;
}

.hero-content { max-width: 980px; position: relative; z-index: 2; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .22em; font-size: .76rem;
  color: var(--gold); font-weight: 700; margin: 0 0 22px;
}
h1,h2,h3 { font-family: var(--font-heading); margin-top: 0; }
h1 {
  font-size: clamp(3.2rem, 8.2vw, 7.8rem); line-height: .94;
  max-width: 1100px; margin-bottom: 32px; letter-spacing: -.055em;
}
.hero-copy {
  color: var(--muted); font-size: clamp(1rem, 2vw, 1.35rem);
  max-width: 660px; line-height: 1.7; margin-bottom: 36px;
}
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  padding: 15px 22px; border-radius: 999px; font-weight: 700;
  border: 1px solid var(--line); transition: .25s;
}
.btn-primary { background: var(--text); color: #06070a; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(255,255,255,.14); }
.btn-secondary { background: rgba(255,255,255,.045); }
.btn-secondary:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.scroll-hint {
  position: absolute; bottom: 30px; right: 34px; z-index: 3;
  color: var(--muted); text-transform: uppercase; letter-spacing: .18em; font-size: .68rem;
  writing-mode: vertical-rl;
}

section:not(.hero) { padding: 120px max(24px, calc((100vw - var(--max))/2)); }
.section-head { max-width: 850px; margin-bottom: 56px; }
.section-head h2, .about h2, .contact h2 {
  font-size: clamp(2.5rem, 5.5vw, 5.6rem); line-height: 1; letter-spacing: -.05em;
  margin-bottom: 16px;
}
.project-tagline { color: var(--muted); font-size: 1.15rem; }

.project-feature {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 54px; align-items: center;
}
.project-visual {
  min-height: 540px; border: 1px solid var(--line); position: relative; overflow: hidden;
  background: #10131b;
}
.project-gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 68% 30%, rgba(235,168,38,.48), transparent 28%),
    radial-gradient(circle at 30% 62%, rgba(56,137,255,.58), transparent 34%),
    linear-gradient(155deg, #070b12, #111724 58%, #08090d);
  transform: scale(1.05);
}
.project-logo-image {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(82%, 760px);
  height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 18px 45px rgba(0,0,0,.55));
  z-index: 2;
}
.project-label {
  position: absolute; top: 24px; left: 24px; text-transform: uppercase;
  letter-spacing: .2em; font-size: .7rem; color: rgba(255,255,255,.72);
}
.project-copy h3 { font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.05; }
.project-copy p, .about-copy p {
  color: var(--muted); font-size: 1.05rem; line-height: 1.8;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill-row span, .tool-line span {
  border: 1px solid var(--line); padding: 10px 14px; border-radius: 999px;
  color: #d8ddea; font-size: .85rem;
}

.releases { background: linear-gradient(180deg, var(--bg), #080b11 45%, var(--bg)); }
.release-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px;
}
.release-card {
  grid-column: span 4; border: 1px solid var(--line); background: rgba(255,255,255,.025);
  overflow: hidden; transition: .3s;
}
.release-card:nth-child(4), .release-card:nth-child(5) { grid-column: span 6; }
.release-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,.25); }
.cover {
  aspect-ratio: 1 / 1; display: flex; align-items: flex-end; padding: 24px;
  font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -.04em;
}
.cover-pressure { background-image: linear-gradient(rgba(3,5,10,.18), rgba(3,5,10,.18)), url('assets/pressure-test-cover.png'); background-size: cover; background-position: center; background-repeat: no-repeat; }
.cover-pirate { background: radial-gradient(circle at 65% 24%, #f4b95f, transparent 24%), linear-gradient(145deg,#09131c,#173248 50%,#05080c); }
.cover-tango { background: radial-gradient(circle at 30% 65%, #a02647, transparent 28%), linear-gradient(150deg,#170911,#35102f 45%,#06070a); }
.cover-sky { background: radial-gradient(circle at 65% 25%, #ffcc74, transparent 28%), linear-gradient(150deg,#183d5d,#d07551 55%,#18202b); }
.cover-wild { background: radial-gradient(circle at 20% 20%, #e8c27c, transparent 23%), linear-gradient(145deg,#253c47,#58432d 55%,#111417); }
.card-body { padding: 24px; }
.card-body .meta { color: var(--gold); text-transform: uppercase; letter-spacing: .15em; font-size: .68rem; }
.card-body h3 { font-size: 1.7rem; margin-bottom: 10px; }
.card-body p:last-child { color: var(--muted); line-height: 1.6; }

.workflow-grid {
  display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line);
}
.workflow-step { padding: 34px 24px 34px 0; border-bottom: 1px solid var(--line); }
.workflow-step + .workflow-step { padding-left: 24px; border-left: 1px solid var(--line); }
.workflow-step span { color: var(--gold); font-size: .8rem; }
.workflow-step h3 { margin: 20px 0 12px; font-size: 1.45rem; }
.workflow-step p { color: var(--muted); line-height: 1.65; }
.tool-line { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }

.about { background: #080b11; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.about-copy { padding-top: 52px; }

.artist-bio {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) 1.28fr;
  gap: clamp(36px, 7vw, 92px);
  margin-top: clamp(58px, 9vw, 118px);
  padding-top: clamp(42px, 6vw, 72px);
  border-top: 1px solid var(--line);
}
.artist-bio-title h3 {
  max-width: 520px;
  font-size: clamp(2.25rem, 4.8vw, 4.9rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.artist-bio-copy p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.82;
}
.artist-bio-copy p + p { margin-top: 22px; }

.contact-card {
  border: 1px solid var(--line); padding: clamp(32px, 7vw, 84px);
  background:
    radial-gradient(circle at 82% 20%, rgba(71,103,255,.22), transparent 35%),
    linear-gradient(145deg,#0c1018,#090b10);
}
.contact-card p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; margin-bottom: 30px; }

footer {
  max-width: var(--max); margin: auto; padding: 30px 24px 50px;
  display: flex; justify-content: space-between; gap: 20px;
  color: #7f8798; font-size: .8rem; border-top: 1px solid var(--line);
}

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

@media (max-width: 980px) {
  .project-feature, .about-grid, .artist-bio { grid-template-columns: 1fr; }
  .artist-bio { gap: 32px; }
  .release-card, .release-card:nth-child(4), .release-card:nth-child(5) { grid-column: span 6; }
  .workflow-grid { grid-template-columns: 1fr 1fr; }
  .workflow-step:nth-child(3) { border-left: none; padding-left: 0; }
}
@media (max-width: 640px) {
  .site-header { padding: 18px 18px; }
  .brand-text { display: none; }
  section:not(.hero) { padding-top: 88px; padding-bottom: 88px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .hero-actions .btn, .contact-actions .btn { width: 100%; text-align: center; }
  .release-card, .release-card:nth-child(4), .release-card:nth-child(5) { grid-column: span 12; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-step, .workflow-step + .workflow-step { border-left: 0; padding-left: 0; }
  .project-visual { min-height: 390px; }
  footer { flex-direction: column; }
}


/* V1.2 – Featured-Project-Feinschliff */
.project-section-head {
  margin-bottom: 28px;
}

.project-section-head .eyebrow {
  margin-bottom: 0;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

@media (max-width: 640px) {
  .project-actions .btn {
    width: 100%;
    text-align: center;
  }
}


.cover { position: relative; overflow: hidden; }
.cover span {
  position: relative;
  z-index: 2;
  text-shadow: 0 8px 24px rgba(0,0,0,.75), 0 2px 8px rgba(0,0,0,.85);
}
.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,6,10,.58), rgba(4,6,10,.05) 55%, rgba(4,6,10,.08));
}



/* V1.4 – Coming Soon card for Wild Heart */
.release-coming-soon {
  border-color: rgba(229,184,92,.28);
}
.coming-soon-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(6,9,15,.75);
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.cover-wild {
  background:
    linear-gradient(rgba(5,8,13,.22), rgba(5,8,13,.22)),
    radial-gradient(circle at 20% 20%, #e8c27c, transparent 23%),
    linear-gradient(145deg,#253c47,#58432d 55%,#111417);
}


/* V2.0 – Audio player and final release artwork */
.listen-section {
  background: linear-gradient(180deg, rgba(6,9,15,.2) 0%, rgba(8,11,17,.72) 35%, rgba(5,7,11,.2) 100%);
}

.audio-player {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) 1.28fr;
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  padding: clamp(22px, 4vw, 48px);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
  box-shadow: 0 30px 90px rgba(0,0,0,.24);
}

.audio-player + .audio-player {
  margin-top: 28px;
}

.audio-artwork {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 70px rgba(0,0,0,.42);
}

.audio-artwork img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.preview-label {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(5,7,11,.78);
  border: 1px solid rgba(255,255,255,.17);
  color: var(--gold);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.audio-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.audio-content h3 {
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  letter-spacing: -.055em;
  line-height: .95;
  margin-bottom: 22px;
}

.audio-description {
  color: var(--muted);
  max-width: 660px;
  line-height: 1.75;
}

.audio-content audio { display: none; }

.player-controls {
  display: grid;
  grid-template-columns: 64px minmax(160px, 1fr) minmax(120px, .32fr);
  gap: 18px;
  align-items: center;
  margin: 32px 0 26px;
}

.play-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: var(--text);
  color: #05070b;
  display: grid;
  place-items: center;
  transition: transform .25s, box-shadow .25s;
}

.play-button:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 34px rgba(255,255,255,.15);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid currentColor;
  margin-left: 4px;
}

.play-button.is-playing .play-icon {
  width: 14px;
  height: 18px;
  border: 0;
  margin-left: 0;
  background: linear-gradient(90deg, currentColor 0 34%, transparent 34% 66%, currentColor 66% 100%);
}

.time-row {
  display: flex;
  justify-content: space-between;
  color: #8f98aa;
  font-size: .72rem;
  margin-bottom: 9px;
  font-variant-numeric: tabular-nums;
}

.progress-range,
.volume-control input {
  width: 100%;
  accent-color: var(--gold);
  cursor: pointer;
}

.volume-control {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  align-items: center;
}

.volume-button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor: pointer;
}

.audio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.spotify-preview-card {
  display: grid;
  grid-template-columns: minmax(220px, .56fr) 1.44fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-top: 28px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(61,140,190,.07), rgba(229,184,92,.06));
  box-shadow: 0 30px 90px rgba(0,0,0,.2);
}

.spotify-preview-artwork {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 58px rgba(0,0,0,.38);
}

.spotify-preview-artwork img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.spotify-preview-content h3 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  line-height: .98;
  letter-spacing: -.05em;
}

.spotify-embed-shell {
  min-height: 118px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px 18px;
  margin: 26px 0 18px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(5,7,11,.48);
}

.spotify-embed-shell.is-loaded {
  padding: 0;
  border: 0;
  background: transparent;
}

.spotify-embed-shell iframe {
  width: 100%;
  height: 152px;
  border: 0;
  border-radius: 12px;
}

.spotify-privacy-note {
  margin: 0;
  color: #8f98aa;
  font-size: .76rem;
  line-height: 1.5;
}

.spotify-direct-actions { margin-top: 4px; }

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

.release-card,
.release-card:nth-child(4),
.release-card:nth-child(5) {
  grid-column: auto;
}

.cover-image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #090b10;
}

.cover-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .4s;
}

.release-card:hover .cover-image-wrap img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.release-coming-soon .cover-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(229,184,92,.18);
}

@media (max-width: 980px) {
  .audio-player { grid-template-columns: 1fr; }
  .audio-artwork { max-width: 560px; }
  .spotify-preview-card { grid-template-columns: 1fr; }
  .spotify-preview-artwork { max-width: 520px; }
  .release-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .player-controls {
    grid-template-columns: 58px 1fr;
  }
  .play-button { width: 58px; height: 58px; }
  .volume-control { grid-column: 1 / -1; }
  .release-grid { grid-template-columns: 1fr; }
  .release-card,
  .release-card:nth-child(4),
  .release-card:nth-child(5) { grid-column: auto; }
  .audio-actions .btn { width: 100%; text-align: center; }
  .spotify-embed-shell .btn { width: 100%; text-align: center; }
}


/* V2.1 – Klickbare YouTube-Release-Karten */
.release-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.release-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.watch-overlay {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(5,7,11,.76);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: opacity .3s ease, transform .3s ease, background .3s ease;
  white-space: nowrap;
}

.watch-play {
  color: var(--gold);
  font-size: .78rem;
}

.release-link:hover .watch-overlay,
.release-link:focus-visible .watch-overlay {
  opacity: 1;
  transform: translate(-50%, 0);
}

.release-link:hover .watch-overlay {
  background: rgba(5,7,11,.9);
}

.release-link .card-body h3 {
  transition: color .25s ease;
}

.release-link:hover .card-body h3 {
  color: var(--gold);
}

@media (hover: none) {
  .watch-overlay {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}


/* V2.3 – bilingual navigation, sticky header polish and accessibility */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  transition: padding .3s ease, background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(5,7,11,.78);
  border-bottom-color: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.header-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}
.language-button {
  min-width: 38px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .09em;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.language-button.is-active {
  background: var(--text);
  color: var(--bg);
}
.language-button:focus-visible,
.menu-toggle:focus-visible,
.play-button:focus-visible,
.volume-button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .site-header { padding: 14px 14px; }
  .site-header.is-scrolled { padding: 10px 14px; }
  .header-controls { gap: 8px; }
  .language-button { min-width: 34px; height: 32px; }
  .menu-toggle { width: 42px; height: 42px; }
  h1 { font-size: clamp(2.85rem, 15vw, 4.5rem); }
  .section-head h2, .about h2, .contact h2 { font-size: clamp(2.35rem, 12vw, 4rem); }
  .audio-player { padding: 18px; }
  .card-body { padding: 20px; }
}

@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; transform: none; }
}


/* V2.7 – legal pages, contact form and spotlight hero */
.tool-cluster { margin-top: 34px; }
.tool-heading { color: var(--muted); margin: 0 0 14px; }
.tool-line { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 0; }
.tool-chip {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); padding: 10px 14px; border-radius: 999px;
  color: #d8ddea; font-size: .85rem; background: rgba(255,255,255,.02);
  transition: transform .25s, background .25s, border-color .25s;
}
.tool-chip:hover { transform: translateY(-2px); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.contact-form-card {
  border: 1px solid var(--line); padding: clamp(26px, 4vw, 42px);
  background: rgba(255,255,255,.025);
}
.contact-form-card h3 { font-size: clamp(1.8rem, 4vw, 3.2rem); margin-bottom: 12px; }
.form-copy, .form-note { color: var(--muted); line-height: 1.7; }
.contact-form { display: grid; gap: 16px; margin-top: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 8px; color: #dce2ef; font-size: .95rem; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea {
  width: 100%; border-radius: 16px; border: 1px solid var(--line);
  background: #0a0f17; color: var(--text); padding: 14px 16px; font: inherit;
}
.contact-form textarea { resize: vertical; min-height: 160px; }
.contact-form input:focus-visible, .contact-form textarea:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.consent-line { grid-template-columns: 22px 1fr; align-items: start; }
.consent-line input { margin-top: 4px; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }
.footer-block p { margin: 0 0 6px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.footer-links a { color: #aeb7ca; }
.footer-links a:hover { color: var(--gold); }

.legal-body {
  background: linear-gradient(180deg, #060a11 0%, #05070b 100%);
}
.legal-main {
  max-width: 920px; margin: 0 auto; padding: 130px 24px 80px;
}
.legal-card {
  border: 1px solid var(--line); background: rgba(255,255,255,.02);
  padding: clamp(26px, 4vw, 48px); box-shadow: 0 24px 70px rgba(0,0,0,.22);
}
.legal-card h1 { font-size: clamp(2.4rem, 7vw, 4.8rem); margin-bottom: 18px; }
.legal-card h2 { font-size: clamp(1.3rem, 4vw, 2rem); margin: 34px 0 12px; }
.legal-card p, .legal-card li { color: var(--muted); line-height: 1.8; }
.legal-card ul { padding-left: 20px; }
.legal-meta { color: #dce2ef; }
.legal-back { display: inline-flex; margin-bottom: 24px; color: var(--gold); font-weight: 700; }
.legal-back:hover { text-decoration: underline; }

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .footer-links { gap: 12px; }
  .legal-main { padding-top: 110px; }
  .hero-spotlight { width: 60vw; }
}




/* V2.9 – refined full-page stage spotlights */
main::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(73,182,255,.055), transparent 36%),
    radial-gradient(ellipse at 82% 18%, rgba(255,176,0,.05), transparent 36%);
  filter: blur(24px);
}
section { background-color: rgba(5,7,11,.32); }
.hero { background: linear-gradient(180deg, rgba(8,12,19,.58) 0%, rgba(5,7,11,.10) 58%, rgba(8,11,16,.58) 100%); }
.project-section, .workflow, .contact { background: rgba(5,7,11,.24); }
.listen-section { background: rgba(5,7,11,.34); }
.releases { background: linear-gradient(180deg, rgba(5,7,11,.30), rgba(8,11,17,.50) 45%, rgba(5,7,11,.30)); }
.about { background: rgba(8,11,17,.62); }

@media (max-width: 900px) {
  body::before, body::after {
    width: min(52vw, 520px);
    opacity: .36;
    filter: blur(18px);
  }
}
@media (max-width: 640px) {
  body::before, body::after {
    width: 68vw;
    opacity: .28;
    filter: blur(15px);
  }
  body::before { left: -24vw; transform: rotate(-12deg); }
  body::after { right: -24vw; transform: rotate(12deg); }
}


/* V3.0 – spotlights angled 15 degrees toward the page center */


/* V3.1 – natural stage-light haze */
main::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .12;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(73,182,255,.11), transparent 34%),
    radial-gradient(ellipse at 82% 18%, rgba(255,176,0,.10), transparent 34%),
    radial-gradient(ellipse at 50% 46%, rgba(230,230,230,.025), transparent 48%);
  filter: blur(18px);
}
main > * { position: relative; z-index: 1; }
