:root {
  color-scheme: dark;
  --ink: #f8fbff;
  --muted: #b9c2d0;
  --panel: rgba(8, 12, 18, 0.82);
  --cyan: #19c8ff;
  --pink: #ff3f9d;
  --gold: #ffc857;
  --deep: #05070b;
  --paper: #f5f7fb;
  --paper-ink: #111827;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--deep);
  color: var(--ink);
}

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

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(3, 5, 8, 0.78), rgba(3, 5, 8, 0));
}

.brand {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 28px);
  font-size: 0.95rem;
  color: rgba(248, 251, 255, 0.82);
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(18px, 5vw, 72px) 54px;
  isolation: isolate;
  background: #06070b;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.72) 0%, rgba(5, 7, 11, 0.18) 48%, rgba(5, 7, 11, 0.34) 100%),
    linear-gradient(0deg, rgba(5, 7, 11, 0.82) 0%, rgba(5, 7, 11, 0.04) 36%);
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.02) contrast(0.98) brightness(1.04);
}

.stage-light {
  position: absolute;
  z-index: -1;
  width: 42vw;
  height: 68vh;
  top: 7vh;
  transform: rotate(18deg);
  mix-blend-mode: screen;
  display: none;
  clip-path: polygon(45% 0, 56% 0, 100% 100%, 0 100%);
}

.light-a {
  right: 8vw;
  background: linear-gradient(180deg, rgba(25, 200, 255, 0.8), rgba(25, 200, 255, 0));
}

.light-b {
  right: 30vw;
  background: linear-gradient(180deg, rgba(255, 63, 157, 0.68), rgba(255, 63, 157, 0));
}

.crowd {
  display: none;
  position: absolute;
  right: 4vw;
  bottom: 28px;
  display: flex;
  align-items: end;
  gap: 10px;
  opacity: 0.72;
}

.crowd span {
  display: block;
  width: clamp(8px, 1vw, 14px);
  height: clamp(38px, 8vw, 96px);
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--gold), rgba(255, 200, 87, 0.1));
  transform-origin: bottom;
  animation: wave 1.9s ease-in-out infinite;
}

.crowd span:nth-child(2n) {
  height: clamp(54px, 10vw, 124px);
  animation-delay: -0.8s;
  background: linear-gradient(180deg, var(--cyan), rgba(25, 200, 255, 0.08));
}

.crowd span:nth-child(3n) {
  animation-delay: -1.25s;
  background: linear-gradient(180deg, var(--pink), rgba(255, 63, 157, 0.08));
}

.hero-content {
  max-width: 520px;
  padding: 16px 0 0;
  opacity: 1;
  pointer-events: auto;
  text-shadow: 0 3px 26px rgba(0, 0, 0, 0.88);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: clamp(0.78rem, 1.4vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow.dark {
  color: #b45309;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(4rem, 13vw, 10.5rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.lead {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(248, 251, 255, 0.88);
  font-size: clamp(1.22rem, 2.5vw, 2rem);
  line-height: 1.25;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button.primary {
  background: var(--ink);
  color: var(--deep);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.listen-band {
  background: var(--paper);
  color: var(--paper-ink);
  padding: clamp(58px, 9vw, 110px) 0;
}

.listen-layout,
.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
}

.listen-layout p,
.cta-layout p,
.event-grid p {
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.65;
}

.player-panel {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 172px;
  padding: 22px;
  border-radius: 8px;
  background: #111827;
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(17, 24, 39, 0.25);
}

.play-button {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  color: #111827;
  background: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
}

.track-info {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.track-info strong {
  font-size: 1.12rem;
}

.track-info span {
  color: var(--muted);
  line-height: 1.4;
}

.equalizer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 8px;
  height: 62px;
}

.equalizer i {
  display: block;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--cyan), var(--pink));
  height: 34%;
  animation: pulse 1s ease-in-out infinite;
}

.equalizer i:nth-child(2n) {
  animation-delay: -0.35s;
}

.equalizer i:nth-child(3n) {
  animation-delay: -0.65s;
}

.track-list {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.track-choice {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(248, 251, 255, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.track-choice.is-selected {
  border-color: transparent;
  color: #111827;
  background: var(--gold);
}

.platforms {
  background: #f7f1e3;
  color: var(--paper-ink);
  padding: clamp(58px, 9vw, 110px) 0;
}

.platforms h2 {
  max-width: 900px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.platform-grid a {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 3vw, 28px);
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

.platform-grid a::after {
  content: ">";
  font-size: 1rem;
  color: #6b7280;
}

.events {
  background: #ffffff;
  color: var(--paper-ink);
  padding: clamp(58px, 9vw, 110px) 0;
}

.events h2 {
  max-width: 900px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  background: #d8dee8;
}

.event-grid article {
  min-height: 260px;
  padding: clamp(22px, 4vw, 34px);
  background: #ffffff;
}

.event-grid span {
  display: block;
  margin-bottom: 54px;
  color: #64748b;
  font-weight: 800;
}

.cta {
  background: var(--gold);
  color: var(--paper-ink);
  padding: clamp(52px, 8vw, 92px) 0;
}

.dark-button {
  background: #111827;
  color: var(--ink);
}

.dark-outline {
  border-color: rgba(17, 24, 39, 0.28);
  color: #111827;
  background: transparent;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: rgba(248, 251, 255, 0.68);
  background: #05070b;
}

@keyframes wave {
  0%, 100% {
    transform: scaleY(0.72);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes pulse {
  0%, 100% {
    height: 25%;
  }
  50% {
    height: 96%;
  }
}

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

  nav {
    gap: 12px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 92svh;
    padding: 104px 18px 42px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(5, 7, 11, 0.68) 0%, rgba(5, 7, 11, 0) 28%);
  }

  .hero-media img {
    object-position: center center;
  }

  h1 {
    font-size: clamp(3rem, 19vw, 5.2rem);
  }

  .hero-content {
    max-width: 100%;
  }

  .listen-layout,
  .cta-layout,
  .event-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .event-grid article {
    min-height: 210px;
  }

  .event-grid span {
    margin-bottom: 32px;
  }

  footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
