@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Syne:wght@500;700;800&display=swap");

:root {
  --bg: #050505;
  --bg-soft: #120d0b;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f8f5ef;
  --muted: rgba(248, 245, 239, 0.72);
  --accent: #ff8a00;
  --accent-soft: #ff4d00;
  --acid: #ffd84d;
  --blue: #68e4ff;
  --pink: #ff5bbd;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 30px;
  --pointer-x: 50%;
  --pointer-y: 50%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 138, 0, 0.15), transparent 24%),
    radial-gradient(circle at 12% 18%, rgba(255, 91, 189, 0.16), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(104, 228, 255, 0.16), transparent 20%),
    linear-gradient(135deg, #040404 0%, #0d0907 52%, #170f0a 100%);
  overflow-x: hidden;
}

body.is-intro {
  overflow: hidden;
}

body.has-consent-block {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(transparent 96%, rgba(255, 255, 255, 0.04) 96%),
    linear-gradient(90deg, transparent 96%, rgba(255, 255, 255, 0.04) 96%);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.8), transparent 84%);
  pointer-events: none;
  opacity: 0.24;
  z-index: -1;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 216, 77, 0.16), transparent 70%);
  mix-blend-mode: screen;
  z-index: 12;
  opacity: 0.9;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--pink), var(--accent), var(--acid));
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 138, 0, 0.16), transparent 24%),
    rgba(4, 4, 4, 0.96);
  transition: opacity 0.95s ease, visibility 0.95s ease;
}

.intro-overlay.is-done {
  opacity: 0;
  visibility: hidden;
}

.intro-card-stack {
  position: absolute;
  inset: 0;
}

.intro-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(120px, 16vw, 270px);
  aspect-ratio: 0.78;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  opacity: 0;
}

.intro-card img {
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.02);
}

body.is-ready .intro-card {
  animation: introScatter 1.55s cubic-bezier(0.18, 0.78, 0.18, 1) forwards;
  animation-delay: calc(var(--index) * 70ms);
}

.intro-copy {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 0 24px;
}

.intro-copy p,
.section-kicker,
.mini-label,
.eyebrow {
  margin: 0 0 10px;
  font-size: 0.84rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.68);
}

.intro-copy h1,
.hero-title,
h2,
h3,
.brand {
  font-family: "Syne", sans-serif;
}

.intro-copy h1 {
  margin: 0;
  font-size: clamp(3.4rem, 12vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.intro-copy span {
  display: inline-block;
  margin-top: 14px;
  color: var(--acid);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 32px clamp(18px, 4vw, 44px) 60px;
}

.topbar {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.topbar-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-links a {
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.topbar-links a:hover {
  color: var(--text);
  transform: translateY(-2px);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.7;
  animation: floatOrb 10s ease-in-out infinite;
}

.orb-a {
  top: 10%;
  left: -8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 91, 189, 0.34), transparent 68%);
}

.orb-b {
  right: -10%;
  top: 18%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(104, 228, 255, 0.28), transparent 70%);
  animation-delay: -3s;
}

.orb-c {
  bottom: 4%;
  left: 32%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.25), transparent 70%);
  animation-delay: -6s;
}

.hero-grid,
.music-layout,
.stream-layout {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 32px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  min-height: calc(100vh - 140px);
  padding-top: clamp(26px, 7vh, 70px);
}

.hero-title {
  margin: 0;
  line-height: 0.88;
  font-size: clamp(3.5rem, 10vw, 8rem);
  letter-spacing: -0.07em;
}

.hero-title span {
  display: block;
}

.hero-title span:last-child {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
}

.hero-lead,
.section-lead,
.info-card p,
.release-copy p,
.music-panel p,
.stream-copy-card p,
.social-card p,
.connect-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.hero-copy-block {
  max-width: 700px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.stat-chip,
.info-card,
.quote-card,
.meta-card,
.release-card,
.music-panel,
.stream-copy-card,
.social-card,
.connect-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.stat-chip,
.info-card,
.quote-card,
.meta-card,
.stream-copy-card,
.social-card,
.connect-card,
.music-panel {
  border-radius: var(--radius);
}

.stat-chip {
  padding: 16px 18px;
}

.stat-chip strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.stat-chip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.button,
.preview-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  color: inherit;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button:hover,
.preview-button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #140d08;
  box-shadow: 0 16px 40px rgba(255, 112, 0, 0.28);
}

.button-dark {
  background: linear-gradient(135deg, #111, #1d1d1d);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--text);
}

.button-dark:hover {
  background: linear-gradient(135deg, #1a1a1a, #292929);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button-ig {
  background: linear-gradient(135deg, #fdc468, #df4996 46%, #7b39e7);
  color: #fff;
}

.hero-stage {
  position: relative;
  min-height: 720px;
  --scene-x: 0px;
  --scene-y: 0px;
}

.hero-panel {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  transform:
    translate3d(calc(var(--scene-x) * var(--depth, 1)), calc(var(--scene-y) * var(--depth, 1)), 0)
    rotate(var(--rotation, 0deg));
  transition: transform 0.28s ease;
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel-wide {
  top: 4%;
  left: 0;
  width: 68%;
  height: 48%;
  --depth: 0.4;
  --rotation: -5deg;
}

.hero-panel-tall {
  top: 11%;
  right: 2%;
  width: 34%;
  height: 48%;
  --depth: 0.72;
  --rotation: 7deg;
}

.hero-panel-secondary {
  left: 10%;
  bottom: 4%;
  width: 54%;
  height: 36%;
  --depth: 0.58;
  --rotation: 6deg;
}

.panel-caption,
.panel-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(6, 6, 6, 0.54);
  backdrop-filter: blur(12px);
}

.panel-caption span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.panel-caption strong,
.panel-badge {
  font-weight: 700;
}

.panel-badge {
  display: inline-flex;
  left: auto;
  right: 20px;
  width: auto;
  padding: 10px 14px;
}

.release-fan {
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: 220px;
  height: 220px;
}

.release-fan img {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.release-fan img:nth-child(1) {
  transform: rotate(-16deg) translate(-30px, -8px);
}

.release-fan img:nth-child(2) {
  transform: rotate(-6deg) translate(-8px, 6px);
}

.release-fan img:nth-child(3) {
  transform: rotate(8deg) translate(12px, 10px);
}

.release-fan img:nth-child(4) {
  transform: rotate(18deg) translate(34px, -4px);
}

.floating-pill {
  position: absolute;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  transform:
    translate3d(calc(var(--scene-x) * var(--depth, 1)), calc(var(--scene-y) * var(--depth, 1)), 0)
    rotate(var(--rotation, 0deg));
  transition: transform 0.28s ease;
}

.floating-pill-a {
  top: 3%;
  right: 28%;
  --depth: 0.9;
}

.floating-pill-b {
  bottom: 41%;
  left: -4%;
  --depth: 1.1;
}

.floating-pill-c {
  bottom: 3%;
  right: 0;
  --depth: 0.7;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, 0.66);
}

.scroll-hint span {
  width: 1px;
  height: 54px;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.72));
  animation: pulseLine 1.6s ease-in-out infinite;
}

.section {
  position: relative;
  padding: clamp(84px, 12vw, 132px) clamp(18px, 4vw, 44px);
}

.section-head {
  max-width: 860px;
  margin-bottom: 36px;
}

.section-head h2,
.connect-card h2 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

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

.info-card,
.quote-card,
.meta-card,
.stream-copy-card,
.social-card,
.connect-card {
  padding: 28px;
}

.info-card h3,
.quote-card p,
.meta-card h3,
.music-panel h3,
.stream-copy-card h3,
.social-card h3 {
  margin: 0 0 14px;
}

.accent-card {
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.18), rgba(255, 77, 0, 0.1));
}

.quote-card {
  display: grid;
  place-items: center;
  min-height: 240px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.35;
}

.meta-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.section-band {
  padding-top: 16px;
  padding-bottom: 16px;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
}

.ticker-track {
  display: inline-flex;
  gap: 18px;
  white-space: nowrap;
  min-width: max-content;
  animation: marquee 22s linear infinite;
}

.ticker-track span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.music-layout {
  grid-template-columns: 1.02fr 0.98fr;
}

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

.release-card {
  border-radius: 24px;
}

.release-card img {
  aspect-ratio: 1;
  object-fit: cover;
}

.release-copy {
  padding: 18px 18px 22px;
}

.release-copy h3 {
  margin: 0 0 10px;
}

.music-panel {
  padding: 24px;
}

.panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-head-compact {
  align-items: center;
  margin-bottom: 16px;
}

.panel-head a,
.social-card a {
  color: var(--acid);
  font-weight: 700;
}

.panel-head h3 {
  margin: 0;
}

.music-panel iframe {
  width: 100%;
  min-height: 432px;
  border: 0;
  border-radius: 24px;
  background: #111;
}

.embed-shell {
  position: relative;
}

.embed-shell iframe {
  position: relative;
  z-index: 1;
}

.embed-shell.is-blocked iframe {
  opacity: 0.12;
  pointer-events: none;
  filter: blur(5px);
}

.embed-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.18), transparent 28%),
    rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(14px);
}

.embed-shell.is-active .embed-placeholder {
  display: none;
}

.preview-block {
  margin-top: 22px;
}

.preview-note {
  font-size: 0.85rem;
  color: rgba(248, 245, 239, 0.55);
}

.track-list {
  display: grid;
  gap: 12px;
}

.track-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.track-row strong,
.track-row span {
  display: block;
}

.track-row span {
  color: rgba(248, 245, 239, 0.54);
  font-size: 0.85rem;
  margin-top: 4px;
}

.preview-button {
  min-width: 102px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.preview-button.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.preview-button.is-playing {
  background: linear-gradient(135deg, var(--pink), var(--accent-soft));
  color: #170d0a;
}

.stream-layout {
  grid-template-columns: 0.88fr 1.12fr;
}

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

.social-card:last-child {
  grid-column: span 2;
}

.social-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.social-head img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.16);
}

.social-head.no-avatar {
  align-items: flex-start;
}

.social-card-tiktok {
  background:
    radial-gradient(circle at top right, rgba(104, 228, 255, 0.2), transparent 34%),
    radial-gradient(circle at left bottom, rgba(255, 91, 189, 0.2), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.social-card-instagram {
  background:
    radial-gradient(circle at top right, rgba(255, 196, 104, 0.18), transparent 34%),
    radial-gradient(circle at left bottom, rgba(123, 57, 231, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.social-card-mail {
  background:
    radial-gradient(circle at top right, rgba(255, 216, 77, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.social-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.social-stats span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.86rem;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(100px, 100px);
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(6, 6, 6, 0.55);
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
}

.gallery-item:nth-child(1) {
  grid-column: span 4;
  grid-row: span 4;
}

.gallery-item:nth-child(2) {
  grid-column: span 8;
  grid-row: span 4;
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-item:nth-child(6) {
  grid-column: span 3;
  grid-row: span 4;
}

.gallery-item:nth-child(7) {
  grid-column: span 4;
  grid-row: span 4;
}

.gallery-item:nth-child(8) {
  grid-column: span 5;
  grid-row: span 4;
}

.section-connect {
  padding-top: 54px;
}

.connect-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

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

.imprint-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 8px;
}

.site-footer {
  padding: 0 18px 42px;
  text-align: center;
  color: rgba(248, 245, 239, 0.48);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.footer-link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: rgba(248, 245, 239, 0.72);
  font: inherit;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 24;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle at top left, rgba(255, 216, 77, 0.28), transparent 34%),
    rgba(10, 10, 10, 0.78);
  color: var(--text);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.9);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.back-to-top span {
  font-size: 1.5rem;
  line-height: 1;
}

.back-to-top small {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  border-color: rgba(255, 216, 77, 0.4);
  transform: translateY(-4px) scale(1.03);
}

.cookie-fab {
  position: fixed;
  left: 20px;
  bottom: 26px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 58px;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background:
    radial-gradient(circle at top left, rgba(255, 216, 77, 0.22), transparent 36%),
    rgba(10, 10, 10, 0.86);
  color: var(--text);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.cookie-fab__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.cookie-fab__label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: max-width 0.25s ease;
}

.cookie-fab.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.cookie-fab:hover {
  border-color: rgba(255, 216, 77, 0.45);
}

.cookie-fab:hover .cookie-fab__label {
  max-width: 220px;
}

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 34;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
}

.cookie-banner__panel {
  width: min(760px, 100%);
  display: grid;
  gap: 22px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at top left, rgba(255, 91, 189, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(255, 216, 77, 0.14), transparent 24%),
    rgba(7, 7, 7, 0.94);
  box-shadow: var(--shadow);
}

.cookie-banner h3 {
  margin: 0 0 8px;
}

.cookie-banner__copy p:last-child {
  color: var(--muted);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 38;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.policy-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.policy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, 0.72);
  backdrop-filter: blur(10px);
}

.policy-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(104, 228, 255, 0.12), transparent 24%),
    rgba(8, 8, 8, 0.95);
  box-shadow: var(--shadow);
}

.policy-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
}

.policy-modal__content {
  display: grid;
  gap: 22px;
  margin-top: 20px;
}

.policy-modal__content section {
  padding: 18px 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-modal__content h3 {
  margin: 0 0 8px;
}

.policy-modal__content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.policy-modal__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.tilt-card {
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.tilt-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 255, 255, 0.16), transparent 32%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.tilt-card:hover::after {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.985);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes introScatter {
  0% {
    transform: translate(-50%, -50%) scale(0.18) rotate(0deg);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  65% {
    transform: translate(calc(-50% + (var(--move-x) * 0.55)), calc(-50% + (var(--move-y) * 0.55))) scale(1.02) rotate(calc(var(--rotation) * 0.7));
    opacity: 0.9;
  }
  100% {
    transform: translate(calc(-50% + var(--move-x)), calc(-50% + var(--move-y))) scale(0.86) rotate(var(--rotation));
    opacity: 0.35;
  }
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-26px) scale(1.05);
  }
}

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.9);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.08);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .music-layout,
  .stream-layout,
  .connect-card {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 620px;
  }

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

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats,
  .story-grid,
  .release-grid,
  .social-grid,
  .imprint-grid {
    grid-template-columns: 1fr;
  }

  .social-card:last-child {
    grid-column: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(140px, auto);
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6),
  .gallery-item:nth-child(7),
  .gallery-item:nth-child(8) {
    grid-column: span 1;
    grid-row: auto;
    min-height: 260px;
  }

  .track-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner {
    padding: 18px;
  }

  .cookie-banner__panel {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 22px;
  }

  .hero-stage {
    min-height: 500px;
  }

  .hero-panel-wide {
    width: 74%;
    height: 42%;
  }

  .hero-panel-tall {
    width: 38%;
    height: 40%;
  }

  .hero-panel-secondary {
    width: 62%;
    height: 30%;
  }

  .release-fan {
    width: 170px;
    height: 170px;
    right: 2%;
  }

  .floating-pill {
    font-size: 0.78rem;
  }

  .music-panel,
  .info-card,
  .quote-card,
  .meta-card,
  .stream-copy-card,
  .social-card,
  .connect-card,
  .policy-modal__dialog,
  .cookie-banner__panel {
    padding: 22px;
  }

  .back-to-top {
    right: 16px;
    bottom: 18px;
    width: 62px;
    height: 62px;
  }

  .cookie-fab {
    left: 14px;
    bottom: 18px;
    height: 54px;
    padding-right: 16px;
  }
}

@media (pointer: fine) {
  body {
    cursor: none;
  }
}

@media (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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