:root {
  --bg: #120825;
  --bg-deep: #0a0418;
  --panel: #1d1038;
  --panel-strong: #24124a;
  --panel-soft: rgba(29, 16, 56, 0.72);
  --line: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: #c4b6df;
  --muted-strong: #8f82b5;
  --accent: #ff2f92;
  --accent-deep: #cf1e72;
  --accent-soft: rgba(255, 47, 146, 0.2);
  --blue: #53bcff;
  --blue-soft: rgba(83, 188, 255, 0.18);
  --lime: #8cd941;
  --surface: #f4edf7;
  --surface-text: #160d24;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --font-head: "League Spartan", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(83, 188, 255, 0.1), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 47, 146, 0.14), transparent 32%),
    linear-gradient(180deg, #130826 0%, #0d061e 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

main,
section,
footer {
  position: relative;
}

section[id],
footer[id] {
  scroll-margin-top: 120px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.section-tag {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 12px 6px 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(10, 4, 24, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 6px;
}

.section-tag-dark {
  color: var(--surface-text);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-head);
  line-height: 0.95;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

.section-header {
  margin-bottom: 48px;
}

.section-header-center {
  text-align: center;
}

.section-header h2,
.bio-copy h2,
.podcast-copy h2,
.contact-copy h2 {
  font-size: clamp(2.9rem, 5vw, 4.7rem);
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  background: #d61f7b;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 14px 30px rgba(255, 47, 146, 0.24);
}

.button:hover {
  transform: translateY(-2px);
  background: #ff4ca1;
}

.button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.button-secondary:hover {
  border-color: var(--accent);
  background: rgba(255, 47, 146, 0.08);
}

.ghost-link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 8px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--surface-text);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(12, 7, 24, 0.86);
  backdrop-filter: blur(12px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 38px;
}

.topbar-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
}

.hero-equalizer {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 0.78rem;
}

.eq-bar {
  display: block;
  width: 2px;
  border-radius: 1px;
  background: var(--accent);
  animation: eq-bounce ease-in-out infinite;
}

.eq-bar:nth-child(1)  { height: 40%; animation-duration: 0.8s; }
.eq-bar:nth-child(2)  { height: 70%; animation-duration: 0.6s; animation-delay: 0.1s; }
.eq-bar:nth-child(3)  { height: 50%; animation-duration: 0.9s; animation-delay: 0.05s; }
.eq-bar:nth-child(4)  { height: 90%; animation-duration: 0.7s; animation-delay: 0.15s; }
.eq-bar:nth-child(5)  { height: 60%; animation-duration: 0.5s; animation-delay: 0.08s; }
.eq-bar:nth-child(6)  { height: 80%; animation-duration: 0.8s; animation-delay: 0.12s; }
.eq-bar:nth-child(7)  { height: 45%; animation-duration: 0.6s; animation-delay: 0.02s; }
.eq-bar:nth-child(8)  { height: 75%; animation-duration: 0.9s; animation-delay: 0.18s; }
.eq-bar:nth-child(9)  { height: 55%; animation-duration: 0.7s; animation-delay: 0.06s; }
.eq-bar:nth-child(10) { height: 65%; animation-duration: 0.5s; animation-delay: 0.1s; }
.eq-bar:nth-child(11) { height: 85%; animation-duration: 0.8s; animation-delay: 0.14s; }
.eq-bar:nth-child(12) { height: 50%; animation-duration: 0.6s; animation-delay: 0.03s; }

.bio-equalizer {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 42px;
  padding: 8px 12px;
  background: rgba(10, 4, 24, 0.35);
  border-radius: 6px;
}

@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 14px;
  background: #d61f7b;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  position: fixed;
  top: 38px;
  left: 0;
  z-index: 1050;
  width: 100%;
  transition: background 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.nav.scrolled {
  background: rgba(14, 8, 28, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 82px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
}

.nav-logo-mark {
  font-family: var(--font-head);
  font-size: 2.14rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 2px 0 0 var(--blue), -2px 0 0 var(--accent);
}

.nav-logo-sub {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  background: var(--accent);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.social-rail {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-50%);
}

.social-rail[hidden] {
  display: none;
}

.social-rail a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 47, 146, 0.15);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 180px 0 80px;
  overflow: hidden;
}

.hero-background,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-background {
  background:
    linear-gradient(90deg, rgba(18, 8, 37, 0.88) 0%, rgba(18, 8, 37, 0.55) 56%, rgba(18, 8, 37, 0.92) 100%),
    linear-gradient(180deg, rgba(6, 3, 12, 0.3), rgba(6, 3, 12, 0.65)),
    image-set(
      url("../images/hero-bg.webp") type("image/webp"),
      url("../images/hero-bg.jpg") type("image/jpeg")
    ) center/cover no-repeat;
  transform: scale(1.05);
}

.hero-glow {
  background:
    radial-gradient(circle at 26% 30%, rgba(255, 47, 146, 0.24), transparent 22%),
    radial-gradient(circle at 68% 42%, rgba(83, 188, 255, 0.18), transparent 24%),
    radial-gradient(circle at 56% 72%, rgba(255, 255, 255, 0.06), transparent 18%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.hero-copy {
  max-width: 580px;
}

.hero-copy h1 {
  font-size: clamp(3rem, 5.5vw, 4.7rem);
  text-transform: uppercase;
}

.hero-copy h1 span {
  display: inline-block;
  color: #fff;
}

.hero-text {
  max-width: 540px;
  margin-top: 24px;
  font-size: 1.02rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(19, 10, 40, 0.68);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero-highlights-small {
  gap: 8px;
  margin-top: 24px;
}

.hero-highlights-small li {
  padding: 6px 10px;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  border-color: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.72);
}

.section-subtitle {
  max-width: 640px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-frame {
  position: absolute;
  right: -5%;
  top: -5%;
  width: 110%;
  height: 110%;
  border: 12px solid var(--accent);
  opacity: 0.7;
}

.hero-shot {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(460px, 100%);
  aspect-ratio: 4 / 5;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-shot img,
.bio-card img,
.podcast-cover img,
.wall-tile img,
.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shot img {
  filter: contrast(1.1) brightness(1.05);
  mix-blend-mode: luminosity;
  object-position: center top;
}

.hero-shot {
  background: linear-gradient(135deg, rgba(255, 47, 146, 0.3), rgba(83, 188, 255, 0.2));
}

.hero-play {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 8px 20px rgba(255, 47, 146, 0.5);
  z-index: 2;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-play:hover,
.hero-play:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 14px 32px rgba(255, 47, 146, 0.75);
}

.hero-play:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.hero-play svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  margin-left: 2px;
  position: relative;
  z-index: 1;
}

.hero-play-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
  animation: heroPulse 2.2s ease-out infinite;
  pointer-events: none;
}

.hero-play-pulse-2 {
  animation-delay: 1.1s;
}

@keyframes heroPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-play-pulse { animation: none; opacity: 0; }
}

.bio-card img {
  object-position: center top;
}

.bio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 47, 146, 0.15), rgba(83, 188, 255, 0.1));
  z-index: 1;
  pointer-events: none;
}

.hero-shot::after,
.bio-card::after,
.podcast-player::after,
.news-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 7, 28, 0.04), rgba(14, 7, 28, 0.55));
}

.hero-note {
  position: absolute;
  left: 0;
  bottom: 42px;
  max-width: 240px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 7, 28, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-note-label,
.news-meta {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-note-title {
  margin-top: 8px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-note-copy {
  margin-top: 6px;
  font-size: 0.92rem;
  color: var(--muted);
}

.biography {
  background: linear-gradient(180deg, rgba(13, 6, 30, 0.98), rgba(15, 7, 33, 0.98));
}

.bio-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.bio-media {
  position: relative;
  min-height: 520px;
}

.bio-outline {
  position: absolute;
  left: -3%;
  top: -50px;
  width: 85%;
  height: 100%;
  border: 10px solid rgba(255, 47, 146, 0.3);
}

.bio-card {
  position: absolute;
  left: 34px;
  top: 0;
  width: min(100%, 420px);
  aspect-ratio: 3 / 4;
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 12px 28px rgba(255, 47, 146, 0.28);
}

.play-button svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.bio-copy {
  max-width: 580px;
}

.bio-copy p + p {
  margin-top: 18px;
}

.bio-copy p {
  color: var(--muted);
  font-size: 1rem;
}

.bio-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0;
}

.bio-stats article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.bio-stats strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-head);
  font-size: 2rem;
  color: #fff;
}

.bio-stats span {
  font-size: 0.82rem;
  color: var(--muted-strong);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.social-showcase {
  padding: 0;
  background: var(--bg-deep);
}

.photo-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 160px;
  grid-auto-flow: dense;
}

.wall-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.wall-tile:nth-child(2),
.wall-tile:nth-child(9),
.wall-tile:nth-child(17),
.wall-tile:nth-child(24) {
  grid-column: span 2;
}

.wall-tile:nth-child(4),
.wall-tile:nth-child(10),
.wall-tile:nth-child(19),
.wall-tile:nth-child(25) {
  grid-row: span 2;
}

.wall-tile img {
  filter: saturate(1.06) contrast(1.02);
}

.social-panel-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.social-panel {
  width: min(520px, 100%);
  padding: 52px;
  background: var(--surface);
  color: var(--surface-text);
  box-shadow: var(--shadow);
}

.social-panel h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  text-transform: uppercase;
}

.social-panel h2 span,
.newsletter-copy h2 span {
  color: var(--accent);
}

.social-panel-hash {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.social-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.events {
  background: linear-gradient(180deg, rgba(13, 6, 30, 0.98), rgba(16, 8, 34, 0.98));
}

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

.event-card {
  padding: 28px 24px 24px;
  border-top: 6px solid var(--accent);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.event-date {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}

.event-day {
  font-family: var(--font-head);
  font-size: 3.4rem;
  line-height: 0.8;
  color: var(--accent);
}

.event-month {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-strong);
}

.event-card h3 {
  font-size: 1.65rem;
  text-transform: uppercase;
}

.event-card p {
  margin-top: 14px;
  color: var(--muted);
}

.section-action {
  margin-top: 36px;
  text-align: center;
}

.releases {
  position: relative;
  overflow: hidden;
}

.release-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 47, 146, 0.12), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(83, 188, 255, 0.08), transparent 50%);
  pointer-events: none;
}

.releases .container {
  position: relative;
  z-index: 1;
}

.releases-spotlight {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 56px;
}

.release-spot {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.release-spot-cover {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.release-spot-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.release-spot-cover:hover img,
.release-spot-cover:focus-visible img {
  transform: scale(1.04);
}

.release-play {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 12px 28px rgba(255, 47, 146, 0.45);
  transition: transform 0.25s ease;
}

.release-spot-cover:hover .release-play,
.release-spot-cover:focus-visible .release-play {
  transform: scale(1.08);
}

.release-play svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-left: 3px;
}

.release-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.release-type {
  color: var(--accent);
  font-weight: 700;
}

.release-dot {
  opacity: 0.4;
}

.release-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.release-platforms {
  margin: 0;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.release-tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease;
}

.release-tile:hover,
.release-tile:focus-visible {
  transform: translateY(-4px);
}

.release-tile figure {
  position: relative;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.release-tile figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 4, 24, 0.6));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.release-tile:hover figure::after,
.release-tile:focus-visible figure::after {
  opacity: 1;
}

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

.release-tile-title {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
}

.release-tile-sub {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.services {
  background: var(--bg-deep);
}

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

.service-item {
  padding: 28px 18px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border: 1px solid rgba(255, 47, 146, 0.35);
  border-radius: 50%;
  background: rgba(255, 47, 146, 0.08);
  color: var(--accent);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-item h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
}

.podcast {
  background: linear-gradient(180deg, rgba(13, 6, 30, 0.98), rgba(10, 4, 22, 0.98));
}

.podcast-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 58px;
  align-items: center;
}

.podcast-player {
  position: relative;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(13, 6, 30, 0.35), rgba(13, 6, 30, 0.82)),
    url("../images/event.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
}

.podcast-cover {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  aspect-ratio: 1.15 / 1;
  overflow: hidden;
}

.track-list {
  position: relative;
  z-index: 1;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.track-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
}

.track-name {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.track-bar {
  position: relative;
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.track-bar::after {
  content: "";
  position: absolute;
  right: 16%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
  box-shadow: 0 0 12px rgba(255, 47, 146, 0.85);
}

.track-time {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.podcast-copy p:last-of-type {
  margin: 22px 0 30px;
  color: var(--muted);
}

.newsletter {
  padding: 36px 0;
  background: var(--surface);
  color: var(--surface-text);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 28px;
  align-items: center;
}

.newsletter-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  text-transform: uppercase;
}

.newsletter-copy p:last-child {
  margin-top: 10px;
  color: rgba(22, 13, 36, 0.72);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.newsletter-form-full {
  grid-column: 1 / -1;
}

.newsletter-form input {
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(22, 13, 36, 0.18);
  background: #fff;
  color: var(--surface-text);
  font: inherit;
}

.newsletter-form textarea {
  padding: 14px 18px;
  border: 1px solid rgba(22, 13, 36, 0.18);
  background: #fff;
  color: var(--surface-text);
  font: inherit;
  resize: vertical;
  min-height: 60px;
}

.newsletter-form button {
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  background: var(--surface-text);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.newsletter-form-status {
  margin: 4px 0 0;
  padding: 10px 14px;
  background: rgba(140, 217, 65, 0.12);
  border: 1px solid rgba(140, 217, 65, 0.35);
  border-radius: 10px;
  color: #2f6b18;
  font-size: 0.88rem;
  line-height: 1.4;
}

.newsletter-form-status[data-state="error"] {
  background: rgba(220, 50, 50, 0.08);
  border-color: rgba(220, 50, 50, 0.35);
  color: #a32020;
}

.news {
  overflow: hidden;
}

.news-background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 8, 37, 0.56), rgba(18, 8, 37, 0.94)),
    url("../images/club.jpg") center/cover no-repeat;
}

.news-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.news-card {
  background: rgba(15, 7, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.news-card img {
  aspect-ratio: 16 / 10;
}

.news-card-body {
  padding: 22px;
}

.news-card h3 {
  margin-top: 10px;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.news-card p:last-child {
  margin-top: 12px;
  color: var(--muted);
}

.faq {
  position: relative;
  overflow: hidden;
}

.faq-container {
  position: relative;
  z-index: 1;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(15, 7, 31, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item[open] {
  border-color: rgba(255, 47, 146, 0.45);
  background: rgba(22, 10, 42, 0.88);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.faq-item summary h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #fff;
  line-height: 1.35;
  flex: 1;
}

.faq-chevron {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 47, 146, 0.45);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-chevron::before,
.faq-chevron::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 1.6px;
  background: var(--accent);
  transition: transform 0.3s ease, opacity 0.25s ease;
}

.faq-chevron::after {
  transform: rotate(90deg);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  background: rgba(255, 47, 146, 0.15);
}

.faq-item[open] .faq-chevron::after {
  opacity: 0;
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
  animation: faqFadeIn 0.3s ease;
}

.faq-answer p {
  margin: 0;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.contact-strip {
  background:
    linear-gradient(135deg, rgba(83, 188, 255, 0.08), rgba(255, 47, 146, 0.08)),
    var(--bg-deep);
}

.contact-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.contact-copy p:last-child {
  margin-top: 18px;
  max-width: 620px;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.contact-form {
  display: grid;
  gap: 14px;
  width: 100%;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form textarea {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
}

.contact-form button {
  justify-self: start;
  margin-top: 4px;
}

.contact-form-alt {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-form-alt a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 47, 146, 0.5);
  transition: border-color 0.2s ease;
}

.contact-form-alt a:hover {
  border-color: var(--accent);
}

.footer {
  padding: 28px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #090412;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(36px);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 270ms;
}

.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;
}

@media (max-width: 1080px) {
  .social-rail {
    display: none;
  }

  .hero-grid,
  .bio-grid,
  .podcast-grid,
  .newsletter-inner,
  .contact-strip-inner {
    grid-template-columns: 1fr;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .releases-spotlight {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .releases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .hero-copy,
  .bio-copy,
  .podcast-copy,
  .contact-copy {
    max-width: none;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-shot {
    left: 8%;
    right: 0;
  }

  .social-panel-wrap {
    position: static;
    padding: 26px 0 0;
  }

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

  .events-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    padding: 16px 18px;
    gap: 12px;
  }

  .faq-item summary h3 {
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 18px 18px;
    font-size: 0.9rem;
  }

  .bio-stats {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-links {
    position: fixed;
    inset: 120px 14px auto;
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 7, 24, 0.96);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero {
    padding-top: 156px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(3.2rem, 15vw, 5.6rem);
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-frame {
    left: 4%;
    top: 6%;
    width: 74%;
    height: 54%;
  }

  .hero-shot {
    left: 12%;
    width: 80%;
  }

  .hero-note {
    left: 0;
    right: 0;
    bottom: 18px;
    max-width: 100%;
  }

  .bio-media {
    min-height: 460px;
  }

  .bio-card {
    left: 20px;
  }

  .photo-wall {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .wall-tile:nth-child(2),
  .wall-tile:nth-child(9),
  .wall-tile:nth-child(4),
  .wall-tile:nth-child(10) {
    grid-column: auto;
    grid-row: auto;
  }

  .social-panel {
    padding: 28px;
  }

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

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 88px 0;
  }

  .topbar-inner {
    min-height: 34px;
  }

  .topbar-status {
    font-size: 0.58rem;
  }

  .nav {
    top: 34px;
  }

  .nav-inner {
    min-height: 72px;
  }

  .hero-actions,
  .social-panel-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .hero-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .hero-highlights li {
    text-align: center;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-shot {
    left: 0;
    width: 100%;
  }

  .hero-frame {
    width: 82%;
    height: 56%;
  }

  .bio-media {
    min-height: 380px;
  }

  .bio-card {
    left: 0;
    width: 100%;
  }

  .play-button {
    width: 64px;
    height: 64px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Floating Chat Button (Instagram DM) */
.chat-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  background: #ff2f92;
  color: #fff;
  text-decoration: none;
  border: 0;
  outline: none;
  border-radius: 50%;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  box-shadow: 0 8px 26px rgba(255, 47, 146, 0.45), 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.chat-fab:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}
.chat-fab::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(255, 47, 146, 0.35);
  z-index: -1;
  animation: chat-fab-pulse 2.4s ease-out infinite;
}
.chat-fab:hover,
.chat-fab:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 32px rgba(255, 47, 146, 0.55), 0 3px 8px rgba(0, 0, 0, 0.3);
  background: #ff47a1;
}
.chat-fab-icon {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chat-fab-icon circle {
  fill: currentColor;
  stroke: none;
}
@keyframes chat-fab-pulse {
  0%   { transform: scale(1);    opacity: 0.8; }
  70%  { transform: scale(1.35); opacity: 0;   }
  100% { transform: scale(1.35); opacity: 0;   }
}
@media (max-width: 640px) {
  .chat-fab {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
  .chat-fab-icon {
    width: 24px;
    height: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .chat-fab::before {
    animation: none;
  }
}

/* Contact Modal */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.contact-modal[hidden] {
  display: none;
}
.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 4, 22, 0.78);
  backdrop-filter: blur(6px);
  animation: contact-modal-fade 0.22s ease-out;
}
.contact-modal-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 48px);
  padding: 38px 36px 32px;
  overflow-y: auto;
  overflow-x: hidden;
  background: linear-gradient(180deg, #1d1038 0%, #160b2d 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  animation: contact-modal-rise 0.28s ease-out;
}
.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.contact-modal-close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}
.contact-modal-close:hover,
.contact-modal-close:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent);
  color: #fff;
}
.contact-modal h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
}
.contact-modal-copy {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}
.contact-modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-modal-form input,
.contact-modal-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(10, 4, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.15s, background 0.15s;
}
.contact-modal-form textarea {
  resize: vertical;
  min-height: 110px;
}
.contact-modal-form input::placeholder,
.contact-modal-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}
.contact-modal-form input:focus,
.contact-modal-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(10, 4, 24, 0.85);
}
.contact-modal-submit {
  margin-top: 6px;
  width: 100%;
}
.contact-modal-status {
  margin-top: 8px;
  padding: 10px 14px;
  background: rgba(140, 217, 65, 0.12);
  border: 1px solid rgba(140, 217, 65, 0.35);
  border-radius: 10px;
  color: #b3e684;
  font-size: 0.88rem;
  line-height: 1.4;
}
.contact-modal-status[data-state="error"] {
  background: rgba(255, 80, 80, 0.1);
  border-color: rgba(255, 80, 80, 0.35);
  color: #ffb3b3;
}
body.modal-open {
  overflow: hidden;
}
.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;
}
@keyframes contact-modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes contact-modal-rise {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 640px) {
  .contact-modal {
    padding: 12px;
  }
  .contact-modal-panel {
    padding: 28px 22px 22px;
    border-radius: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .contact-modal-backdrop,
  .contact-modal-panel {
    animation: none;
  }
}

/* Contact-Form Status (Footer, analog zum Modal) */
.contact-form-status {
  margin-top: 10px;
  padding: 10px 14px;
  background: rgba(140, 217, 65, 0.12);
  border: 1px solid rgba(140, 217, 65, 0.35);
  border-radius: 10px;
  color: #b3e684;
  font-size: 0.88rem;
  line-height: 1.4;
}
.contact-form-status[data-state="error"] {
  background: rgba(255, 80, 80, 0.1);
  border-color: rgba(255, 80, 80, 0.35);
  color: #ffb3b3;
}

/* Legal-Block fuer Impressum-Modal */
.contact-modal-panel .legal-block {
  margin-bottom: 18px;
}
.contact-modal-panel .legal-block h3 {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-modal-panel .legal-block p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
}
.contact-modal-panel .legal-block a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 47, 146, 0.6);
}

/* Footer-Link fuer Modal-Trigger (ohne Unterschied zu <a>) */
.footer-modal-link {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
