/* Rock In Lago 2026 — Dark Rock & Roll */

:root {
  --bg: #070707;
  --bg-elevated: #111111;
  --bg-panel: #161616;
  --ink: #f2efe8;
  --ink-muted: #a39e94;
  --purple: #3e3f9b;
  --purple-hot: #5a5bc4;
  --pink: #f15387;
  --pink-hot: #ff6a9a;
  --red: #f15387;
  --red-hot: #ff6a9a;
  --amber: #f15387;
  --amber-dim: #c23a68;
  --line: rgba(242, 239, 232, 0.12);
  --line-strong: rgba(242, 239, 232, 0.22);
  --font-display: "Bebas Neue", sans-serif;
  --font-head: "Oswald", sans-serif;
  --font-body: "Barlow", sans-serif;
  --space: clamp(1.25rem, 4vw, 2.5rem);
  --max: 72rem;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 var(--space);
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.92) 0%, rgba(7, 7, 7, 0.55) 70%, transparent 100%);
  backdrop-filter: blur(8px);
  transition: background 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.94);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.logo-img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(62, 63, 155, 0.45));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-mark {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
  height: var(--header-h);
  padding: 0 var(--space);
}

.nav a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.25s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.nav-cta {
  padding: 0.55rem 1rem;
  color: var(--ink) !important;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  clip-path: polygon(6% 0, 100% 0, 100% 72%, 94% 100%, 0 100%, 0 28%);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), filter 0.25s var(--ease) !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: linear-gradient(135deg, var(--purple-hot), var(--pink-hot)) !important;
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.nav-run {
  position: relative;
  padding: 0.45rem 0.85rem;
  color: var(--ink) !important;
  background: linear-gradient(135deg, rgba(62, 63, 155, 0.65), rgba(241, 83, 135, 0.55));
  border: 1px solid rgba(241, 83, 135, 0.65);
  letter-spacing: 0.1em !important;
  box-shadow: 0 0 24px rgba(241, 83, 135, 0.35);
  animation: nav-run-pulse 2.8s ease-in-out infinite;
}

.nav-run:hover,
.nav-run:focus-visible,
.nav-run.is-current {
  color: var(--ink) !important;
  border-color: var(--pink-hot);
  background: linear-gradient(135deg, rgba(90, 91, 196, 0.8), rgba(255, 106, 154, 0.55));
}

@keyframes nav-run-pulse {
  0%,
  100% {
    box-shadow: 0 0 16px rgba(62, 63, 155, 0.35);
  }
  50% {
    box-shadow: 0 0 28px rgba(241, 83, 135, 0.55);
  }
}

.nav-label {
  display: none;
}

.nav-backdrop {
  display: none;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  z-index: 1100;
  transition: opacity 0.3s var(--ease);
}

.nav-toggle:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 0.28rem auto;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

body.nav-locked {
  overflow: hidden;
}

body.nav-locked .site-header {
  z-index: 1105;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
  pointer-events: none;
}

body.nav-locked .logo {
  opacity: 0;
  pointer-events: none;
}

body.nav-locked .nav-toggle {
  pointer-events: auto;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 2rem) var(--space) 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 110%, rgba(241, 83, 135, 0.32) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 20%, rgba(62, 63, 155, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse 40% 35% at 85% 25%, rgba(241, 83, 135, 0.18) 0%, transparent 45%),
    linear-gradient(180deg, #0c0c0c 0%, #070707 55%, #050505 100%);
}

.hero-stage {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, rgba(7, 7, 7, 0.85) 100%),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 80px,
      rgba(255, 255, 255, 0.015) 80px,
      rgba(255, 255, 255, 0.015) 81px
    );
  opacity: 0.9;
}

.hero-beams {
  position: absolute;
  inset: -10% 0 30%;
  background:
    conic-gradient(from 210deg at 50% -10%, transparent 0deg, rgba(241, 83, 135, 0.28) 18deg, transparent 36deg),
    conic-gradient(from 150deg at 50% -10%, transparent 0deg, rgba(62, 63, 155, 0.22) 14deg, transparent 30deg);
  animation: beam-pulse 7s ease-in-out infinite alternate;
  transform-origin: 50% 0;
}

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

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.45;
  animation: orb-drift 12s ease-in-out infinite alternate;
}

.hero-orb--1 {
  width: 12rem;
  height: 12rem;
  left: 6%;
  top: 22%;
  background: radial-gradient(circle, rgba(241, 83, 135, 0.3), transparent 70%);
  animation-duration: 10s;
}

.hero-orb--2 {
  width: 16rem;
  height: 16rem;
  right: 4%;
  top: 20%;
  background: radial-gradient(circle, rgba(62, 63, 155, 0.35), transparent 70%);
  animation-duration: 14s;
  animation-delay: -3s;
}

.hero-orb--3 {
  width: 9rem;
  height: 9rem;
  left: 38%;
  bottom: 16%;
  background: radial-gradient(circle, rgba(241, 83, 135, 0.2), transparent 70%);
  animation-duration: 11s;
  animation-delay: -5s;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.62) 100%);
}

@keyframes beam-pulse {
  from {
    opacity: 0.55;
    transform: scaleY(1);
  }
  to {
    opacity: 1;
    transform: scaleY(1.08);
  }
}

@keyframes orb-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(18px, -22px, 0) scale(1.08);
  }
}

/* VIP ticket banner */

.vip-banner {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  margin-top: var(--header-h);
  padding: 0.75rem var(--space);
  text-decoration: none;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(62, 63, 155, 0.55) 0%, rgba(241, 83, 135, 0.45) 50%, rgba(62, 63, 155, 0.55) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: filter 0.3s var(--ease), background 0.3s var(--ease);
}

.vip-banner:hover,
.vip-banner:focus-visible {
  filter: brightness(1.08);
}

.vip-banner:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -2px;
}

.vip-banner__tag {
  flex-shrink: 0;
  padding: 0.2rem 0.55rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vip-banner__text {
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-align: center;
}

.vip-banner__text strong {
  color: #fff;
  font-weight: 700;
}

.vip-banner__cta {
  flex-shrink: 0;
  padding: 0.4rem 0.9rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.vip-banner:hover .vip-banner__cta,
.vip-banner:focus-visible .vip-banner__cta {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
}

.hero-home {
  place-items: stretch;
  align-content: center;
  min-height: calc(100svh - var(--header-h) - 3.25rem);
  padding: 1.5rem var(--space) 3.5rem;
}

.hero-home .hero-bg {
  background:
    radial-gradient(ellipse 55% 70% at 82% 45%, rgba(62, 63, 155, 0.38) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 78% 55%, rgba(241, 83, 135, 0.26) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 15% 80%, rgba(241, 83, 135, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #0b0b0f 0%, #070707 55%, #050505 100%);
}

/* Home hero split layout */

.hero-layout {
  position: relative;
  z-index: 1;
  width: min(100%, 72rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.82fr);
  gap: 0;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 34rem;
  justify-self: start;
  margin-right: -1rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 28rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-left: -3rem;
  margin-right: -0.5rem;
  animation: rise-right 1s var(--ease) 0.15s both;
}

.hero-home .hero-event {
  margin: 0 0 0.65rem;
  color: var(--ink-muted);
  letter-spacing: 0.22em;
  opacity: 0;
  animation: rise-left 0.85s var(--ease) 0.1s forwards;
}

.hero-home .hero-brand {
  margin: 0;
  white-space: nowrap;
}

.hero-home .brand-line {
  display: inline;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  opacity: 0;
  animation: rise-left 0.9s var(--ease) forwards;
}

.hero-home .brand-line:nth-child(1) {
  animation-delay: 0.18s;
  letter-spacing: 0.04em;
}

.hero-home .brand-lago {
  animation-delay: 0.32s;
  margin-left: 0.22em;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 10%, #f15387 120%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-dates {
  margin: 0.85rem 0 0;
  padding-top: 0.85rem;
  border-top: 2px solid var(--pink);
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-hot);
  opacity: 0;
  animation: rise-left 0.85s var(--ease) 0.48s forwards;
}

.hero-home .hero-lead {
  margin: 0.9rem 0 0;
  max-width: 28rem;
  text-align: left;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  opacity: 0;
  animation: rise-left 0.85s var(--ease) 0.58s forwards;
}

.hero-home .hero-actions {
  justify-content: flex-start;
  margin-top: 1.5rem;
  opacity: 0;
  animation: rise-left 0.85s var(--ease) 0.7s forwards;
}

/* Stage aura behind logo */

.hero-stage {
  position: absolute;
  z-index: 0;
  inset: -6%;
  pointer-events: none;
  display: grid;
  place-items: center;
}

.stage-beam {
  position: absolute;
  bottom: 48%;
  left: 50%;
  width: 16%;
  height: 58%;
  transform-origin: 50% 100%;
  background: linear-gradient(
    0deg,
    rgba(241, 83, 135, 0.5) 0%,
    rgba(62, 63, 155, 0.2) 42%,
    transparent 100%
  );
  clip-path: polygon(42% 100%, 58% 100%, 100% 0%, 0% 0%);
  filter: blur(1.5px);
  opacity: 0.55;
  animation: beam-pulse 5.5s ease-in-out infinite;
}

.stage-beam--1 {
  transform: translateX(-50%) rotate(-32deg);
  animation-delay: 0s;
}

.stage-beam--2 {
  transform: translateX(-50%) rotate(0deg);
  width: 20%;
  opacity: 0.7;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(241, 83, 135, 0.4) 28%,
    rgba(62, 63, 155, 0.14) 65%,
    transparent 100%
  );
  animation-delay: -1.8s;
}

.stage-beam--3 {
  transform: translateX(-50%) rotate(32deg);
  animation-delay: -3.2s;
}

.stage-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid transparent;
  box-sizing: border-box;
}

.stage-ring--outer {
  inset: 4%;
  border-color: rgba(241, 83, 135, 0.35);
  box-shadow:
    0 0 0 1px rgba(62, 63, 155, 0.15),
    inset 0 0 40px rgba(241, 83, 135, 0.08);
  animation: ring-spin 28s linear infinite;
}

.stage-ring--mid {
  inset: 14%;
  border-color: rgba(62, 63, 155, 0.45);
  border-style: dashed;
  animation: ring-spin-rev 18s linear infinite;
}

.stage-ring--inner {
  inset: 24%;
  border-color: rgba(241, 83, 135, 0.22);
  animation: ring-spin 22s linear infinite;
}

.stage-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px 2px rgba(241, 83, 135, 0.85);
  animation: spark-pulse 2.8s ease-in-out infinite;
}

.stage-spark--1 {
  top: 12%;
  right: 18%;
  animation-delay: 0s;
}

.stage-spark--2 {
  top: 28%;
  left: 8%;
  width: 4px;
  height: 4px;
  animation-delay: -0.9s;
}

.stage-spark--3 {
  bottom: 16%;
  right: 10%;
  width: 5px;
  height: 5px;
  animation-delay: -1.6s;
}

.stage-spark--4 {
  bottom: 22%;
  left: 16%;
  width: 3px;
  height: 3px;
  animation-delay: -2.2s;
}

@keyframes beam-pulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.75;
  }
}

.hero-visual-glow {
  position: absolute;
  inset: 12%;
  z-index: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(241, 83, 135, 0.28) 0%, rgba(62, 63, 155, 0.2) 45%, transparent 70%);
  filter: blur(18px);
  animation: glow-breathe 4.5s ease-in-out infinite;
}

.hero-home .hero-logo {
  position: relative;
  z-index: 2;
  width: 84%;
  margin: 0;
  animation: logo-float 6s ease-in-out infinite;
  filter:
    drop-shadow(0 28px 55px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 36px rgba(241, 83, 135, 0.28));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 52rem);
  text-align: center;
}

.hero-logo {
  display: block;
  width: min(42vw, 17rem);
  height: auto;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 18px 40px rgba(62, 63, 155, 0.45)) drop-shadow(0 0 28px rgba(241, 83, 135, 0.25));
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-event {
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.15s forwards;
}

.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.brand-line {
  display: block;
  font-size: clamp(4.5rem, 18vw, 9.5rem);
  opacity: 0;
  animation: rise 0.95s var(--ease) forwards;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
}

.brand-line:nth-child(1) {
  animation-delay: 0.28s;
}

.brand-in {
  font-size: clamp(2.4rem, 8vw, 4.2rem);
  letter-spacing: 0.45em;
  color: var(--pink);
  text-shadow: 0 0 40px rgba(241, 83, 135, 0.55);
  animation-delay: 0.4s;
}

.brand-lago {
  animation-delay: 0.52s;
  background: linear-gradient(180deg, #fff 20%, #c8c2b6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 1.5rem auto 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: rgba(242, 239, 232, 0.82);
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.7s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.9s forwards;
}

.run-actions {
  justify-content: flex-start;
  opacity: 1;
  animation: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise-left {
  from {
    opacity: 0;
    transform: translate3d(-28px, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rise-right {
  from {
    opacity: 0;
    transform: translate3d(36px, 12px, 0) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes logo-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow-breathe {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes ring-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ring-spin-rev {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes spark-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes ring-pulse-soft {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0;
  animation: rise 0.8s var(--ease) 1.2s forwards;
}

.scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(180deg, var(--red), transparent);
  animation: scroll-drip 1.8s ease-in-out infinite;
}

@keyframes scroll-drip {
  0%,
  100% {
    transform: scaleY(0.55);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  clip-path: polygon(4% 0, 100% 0, 100% 78%, 96% 100%, 0 100%, 0 22%);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--purple-hot) 0%, var(--pink-hot) 100%);
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--pink);
  color: var(--pink-hot);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.05rem 1.75rem;
  font-size: 0.95rem;
}

/* Meta bar */

.meta-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.75rem var(--space);
  background: var(--bg-elevated);
  text-align: center;
}

.meta-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}

.meta-item strong {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.meta-sub {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* Sections */

.section {
  padding: clamp(4.5rem, 12vw, 7.5rem) var(--space);
  position: relative;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  max-width: 16ch;
}

.section-lead {
  margin: 1.25rem 0 0;
  max-width: 40rem;
  color: var(--ink-muted);
  font-size: 1.1rem;
}

/* About */

.about {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(62, 63, 155, 0.14), transparent 55%),
    var(--bg);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.about-note {
  margin: 2rem 0 0;
  display: inline-block;
  padding: 0.65rem 0;
  border-top: 2px solid var(--red);
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-media {
  margin: 0;
  max-width: 28rem;
  width: 100%;
  justify-self: end;
}

.about-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.about-media figcaption {
  margin-top: 0.75rem;
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
}

/* Lineup */

.lineup {
  padding-inline: 0;
  background: #050505;
}

.lineup-head {
  padding-inline: var(--space);
  margin-bottom: 2.5rem;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
}

.artist {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  isolation: isolate;
}

.artist img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease);
}

.artist::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.88) 100%);
  z-index: 1;
  pointer-events: none;
}

.artist:hover img {
  transform: scale(1.05);
}

.artist-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.5rem 1.35rem 1.75rem;
}

.artist-tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.65rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.artist-band {
  margin: 0 0 0.15rem;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}

.artist-meta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.lineup-full {
  padding-block: 3rem 0;
}

.lineup-tiers {
  display: grid;
  gap: 1.35rem;
  text-align: center;
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
}

.lineup-tier {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem 0.85rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
}

.lineup-tier em {
  font-style: normal;
  color: var(--amber);
  font-size: 0.7em;
}

.lineup-tier-lg {
  font-size: clamp(1.55rem, 4.2vw, 2.75rem);
}

.lineup-tier-md {
  font-size: clamp(1.2rem, 3vw, 1.85rem);
  color: rgba(242, 239, 232, 0.92);
}

.lineup-tier-sm {
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  color: rgba(242, 239, 232, 0.78);
}

.lineup-tier-xs {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(242, 239, 232, 0.62);
}

.bolt {
  display: inline-block;
  width: 0.55rem;
  height: 0.85rem;
  background: var(--pink);
  clip-path: polygon(40% 0, 100% 0, 60% 48%, 100% 48%, 35% 100%, 48% 58%, 0 58%);
  flex-shrink: 0;
  opacity: 0.95;
  box-shadow: 0 0 10px rgba(241, 83, 135, 0.55);
}

.free-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
  margin: 0.5rem 0 0;
  padding: 1.5rem 1rem;
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border-top: 1px solid var(--line);
}

.free-badge {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ink);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  clip-path: polygon(4% 0, 100% 0, 100% 78%, 96% 100%, 0 100%, 0 22%);
}

.meta-free strong {
  color: var(--red-hot);
}

/* Run teaser (home) */

.run-teaser {
  background:
    radial-gradient(ellipse 70% 50% at 0% 50%, rgba(62, 63, 155, 0.22), transparent 55%),
    var(--bg-elevated);
}

.run-teaser-banner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: 2rem;
  border: 1px solid rgba(241, 83, 135, 0.45);
  background:
    linear-gradient(120deg, rgba(241, 83, 135, 0.18), rgba(62, 63, 155, 0.16), transparent 60%),
    var(--bg-panel);
}

.run-teaser-banner .section-title {
  max-width: 14ch;
}

.run-teaser-facts {
  display: grid;
  gap: 0.75rem;
  text-align: right;
}

.run-teaser-facts span {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  line-height: 1;
}

.run-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}

.run-highlights {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}

.run-highlights li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.run-highlights strong {
  color: var(--ink);
  margin-right: 0.35rem;
}

.run-schedule {
  padding: 2rem;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
}

.run-schedule h3 {
  margin: 0 0 1.5rem;
  font-family: var(--font-head);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}

.run-schedule ol {
  display: grid;
  gap: 0.85rem;
}

.run-schedule li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 0.75rem;
  align-items: baseline;
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.run-schedule time {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--amber);
  letter-spacing: 0.04em;
}

.run-schedule .is-hot {
  color: var(--ink);
}

.run-schedule .is-hot time {
  color: var(--red-hot);
}

/* Run page hero */

.hero-brand-run .brand-run-top {
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  letter-spacing: 0.18em;
  color: var(--pink);
  text-shadow: 0 0 30px rgba(241, 83, 135, 0.45);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.hero-brand-run .brand-run-main {
  font-size: clamp(5rem, 20vw, 11rem);
  color: var(--ink);
  background: linear-gradient(180deg, #fff 15%, #c8c2b6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

/* Modalities / distances */

.modalities {
  background:
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(241, 83, 135, 0.07), transparent 50%),
    var(--bg);
}

.distance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

.distance {
  position: relative;
  padding: 2.25rem 2rem 2rem;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.distance:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.distance-accent {
  border-color: rgba(62, 63, 155, 0.45);
  background:
    linear-gradient(160deg, rgba(62, 63, 155, 0.16), transparent 55%),
    var(--bg-panel);
}

.distance-km {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 7.5rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.distance-accent .distance-km {
  color: var(--red-hot);
}

.distance-unit {
  display: block;
  margin-top: -0.35rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
}

.distance h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.distance p {
  margin: 0;
  color: var(--ink-muted);
}

.distance-note {
  margin-top: 0.75rem !important;
  font-size: 0.9rem;
}

.map-note {
  margin: 2rem 0 0;
  font-size: 0.95rem;
  color: var(--ink-muted);
  font-style: italic;
}

.kit-aside {
  margin-top: 2.5rem;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line);
  max-width: 40rem;
}

.kit-aside h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}

.kit-aside p {
  margin: 0;
  color: var(--ink-muted);
}

.cancel-note {
  margin-top: 1rem !important;
  font-size: 0.92rem;
}

/* Prizes */

.prizes {
  background:
    radial-gradient(ellipse 70% 45% at 50% 100%, rgba(241, 83, 135, 0.08), transparent 55%),
    var(--bg);
}

.podium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

.podium-col {
  padding: 2rem;
  background: var(--bg-panel);
  border: 1px solid var(--line);
}

.podium-col h3 {
  margin: 0 0 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.podium-col ol {
  display: grid;
  gap: 0.85rem;
}

.podium-col li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.podium-col li span {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  background: rgba(241, 83, 135, 0.12);
  color: var(--amber);
  border: 1px solid rgba(241, 83, 135, 0.35);
}

.podium-col li:first-child span {
  background: rgba(62, 63, 155, 0.2);
  color: var(--red-hot);
  border-color: rgba(62, 63, 155, 0.5);
}

.prizes-extra {
  margin: 2rem 0 0;
  max-width: 42rem;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.site-footer a {
  color: var(--pink);
}

.page-run .hero-logo {
  width: min(38vw, 14rem);
  margin-bottom: 0.35rem;
}

.page-run .hero-brand-run .brand-run-main {
  font-size: clamp(3.5rem, 14vw, 7.5rem);
  margin-top: -0.15em;
}

.page-run .hero-bg {
  background:
    radial-gradient(ellipse 90% 55% at 50% 110%, rgba(241, 83, 135, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 15%, rgba(62, 63, 155, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse 45% 35% at 85% 30%, rgba(241, 83, 135, 0.2) 0%, transparent 45%),
    linear-gradient(180deg, #0c0c0c 0%, #070707 55%, #050505 100%);
}

.page-run .about-note {
  border-top-color: var(--pink);
}

.page-run .run-schedule {
  border-top-color: var(--pink);
}

/* Festival schedule */

.schedule {
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(62, 63, 155, 0.16), transparent 55%),
    var(--bg-elevated);
}

.day-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 2.5rem;
}

.day-tab {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  text-align: left;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  color: var(--ink-muted);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.day-tab:hover,
.day-tab:focus-visible {
  color: var(--ink);
  border-color: var(--line-strong);
}

.day-tab.is-active {
  color: var(--ink);
  background: linear-gradient(160deg, rgba(241, 83, 135, 0.28), rgba(62, 63, 155, 0.2), rgba(22, 22, 22, 0.9));
  border-color: rgba(241, 83, 135, 0.55);
  transform: translateY(-2px);
}

.day-tab__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.day-tab__date {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.day-panels {
  margin-top: 1.5rem;
}

.day-panel[hidden] {
  display: none;
}

.schedule-head {
  display: grid;
  grid-template-columns: 5.5rem 1fr 8.5rem;
  gap: 1rem;
  padding: 0.65rem 1.15rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  border-bottom: 1px solid var(--line);
}

.schedule-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.schedule-list li {
  display: grid;
  grid-template-columns: 5.5rem 1fr 8.5rem;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 1.15rem;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-left: 3px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.schedule-list li:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}

.schedule-list time {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--amber);
}

.schedule-list strong {
  font-family: var(--font-head);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schedule-list span {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: right;
}

.schedule-list .is-muted {
  opacity: 0.45;
}

.schedule-list .is-headliner {
  border-left-color: var(--red-hot);
  background: linear-gradient(90deg, rgba(62, 63, 155, 0.22), var(--bg-panel) 55%);
}

.schedule-list .is-headliner strong {
  color: var(--ink);
}

.schedule-list .is-run {
  border-left-color: var(--amber);
}

/* Kit */

.kit {
  background: var(--bg);
}

.kit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 2rem;
  margin-top: 2.75rem;
}

.kit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kit-list em {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-muted);
}

.kit-icon {
  flex-shrink: 0;
  width: 0.65rem;
  height: 0.65rem;
  margin-top: 0.4rem;
  background: var(--red);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.shirts {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.shirts-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
}

.shirts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.shirt {
  margin: 0;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(160deg, rgba(62, 63, 155, 0.18) 0%, transparent 45%),
    linear-gradient(180deg, #121218 0%, #0a0a0e 100%);
  border: 1px solid rgba(241, 83, 135, 0.22);
  overflow: hidden;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.shirt:hover {
  border-color: rgba(241, 83, 135, 0.5);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 28px rgba(241, 83, 135, 0.12);
}

.shirt-media {
  position: relative;
  display: grid;
  place-items: center;
  padding: 1.25rem 1rem 0.75rem;
  background:
    radial-gradient(ellipse 70% 60% at 50% 55%, rgba(62, 63, 155, 0.22) 0%, transparent 70%),
    #08080c;
}

.shirt-media::after {
  content: "";
  position: absolute;
  inset: auto 10% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 83, 135, 0.35), transparent);
}

.shirt img {
  width: 100%;
  max-height: 22rem;
  aspect-ratio: 16 / 11;
  object-fit: contain;
  background: #fff;
  transition: transform 0.6s var(--ease);
}

.shirt:hover img {
  transform: scale(1.04);
}

.shirt figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem 1.15rem;
}

.shirt-km {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.shirt-color {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-hot);
}

/* Rules */

.rules {
  background: var(--bg-elevated);
}

.accordion {
  margin-top: 2.75rem;
  display: grid;
  gap: 0.5rem;
}

.accordion details {
  background: var(--bg-panel);
  border: 1px solid var(--line);
}

.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

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

.accordion summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--red-hot);
  line-height: 1;
}

.accordion details[open] summary::after {
  content: "–";
}

.accordion summary:hover {
  color: var(--amber);
  background: rgba(255, 255, 255, 0.02);
}

.accordion-body {
  padding: 0 1.35rem 1.35rem;
  color: var(--ink-muted);
  border-top: 1px solid var(--line);
}

.accordion-body p {
  margin: 1rem 0 0;
}

.accordion-body p:first-child {
  margin-top: 1.1rem;
}

.accordion-body ul {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.5rem;
}

.accordion-body li {
  padding-left: 1rem;
  position: relative;
}

.accordion-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--red);
}

.accordion-body strong {
  color: var(--ink);
}

/* Sponsors */

.sponsors {
  background:
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(62, 63, 155, 0.12), transparent 55%),
    var(--bg);
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 2.75rem;
}

.sponsor-card {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(62, 63, 155, 0.08);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.sponsor-card--featured {
  grid-column: 1 / -1;
  aspect-ratio: 3.6 / 1;
  border-color: rgba(241, 83, 135, 0.35);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(241, 83, 135, 0.18),
    0 0 40px rgba(62, 63, 155, 0.18);
}

.sponsor-card--featured img {
  inset: 1.1rem 12%;
  width: calc(100% - 24%);
  height: calc(100% - 2.2rem);
}

.sponsor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(241, 83, 135, 0.08), transparent 55%, rgba(62, 63, 155, 0.1));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: 2;
}

.sponsor-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 83, 135, 0.45);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(241, 83, 135, 0.25),
    0 0 32px rgba(241, 83, 135, 0.2);
}

.sponsor-card:hover::before {
  opacity: 1;
}

.sponsor-card img {
  position: absolute;
  inset: 1.35rem 1.5rem;
  z-index: 1;
  width: calc(100% - 3rem);
  height: calc(100% - 2.7rem);
  margin: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s var(--ease);
}

.sponsor-card:hover img {
  transform: scale(1.03);
}

/* Contact */

.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(241, 83, 135, 0.35), transparent 55%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(62, 63, 155, 0.25), transparent 50%),
    #090909;
  text-align: center;
}

.contact .section-title {
  max-width: none;
  margin-inline: auto;
}

.contact .section-lead {
  margin-inline: auto;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.contact-org {
  margin: 2.5rem 0 0;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Footer */

.site-footer {
  padding: 2.5rem var(--space) 3rem;
  border-top: 1px solid var(--line);
  text-align: center;
  background: #050505;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0.5rem 0 1.25rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.back-top {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.back-top:hover {
  border-color: var(--amber);
}

/* Sound dock */

.sound-dock {
  position: fixed;
  z-index: 200;
  left: max(1rem, env(safe-area-inset-left));
  bottom: max(1rem, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: min(22rem, calc(100vw - 2rem));
  padding: 0.65rem 1.7rem 0.65rem 0.65rem;
  background: rgba(12, 12, 16, 0.78);
  border: 1px solid rgba(242, 239, 232, 0.14);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(62, 63, 155, 0.15) inset;
  transition:
    transform 0.4s var(--ease),
    opacity 0.35s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
  animation: dock-enter 0.9s var(--ease) 1.4s both;
}

.sound-dock.is-dismissed {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.96);
  animation: none;
  visibility: hidden;
}

.sound-dock__close {
  position: absolute;
  top: 0.35rem;
  right: 0.4rem;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.sound-dock__close svg {
  width: 0.72rem;
  height: 0.72rem;
}

.sound-dock__close:hover,
.sound-dock__close:focus-visible {
  background: rgba(241, 83, 135, 0.35);
  color: #fff;
  transform: scale(1.08);
}

.sound-dock__close:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

.sound-dock.is-playing {
  border-color: rgba(90, 91, 196, 0.45);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(62, 63, 155, 0.28);
}

.sound-dock__glow {
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle at 20% 50%, rgba(62, 63, 155, 0.35), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
}

.sound-dock.is-playing .sound-dock__glow {
  opacity: 1;
}

.sound-dock__play {
  position: relative;
  flex-shrink: 0;
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--purple), var(--pink));
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), filter 0.3s var(--ease);
}

.sound-dock__play:hover,
.sound-dock__play:focus-visible {
  background: linear-gradient(135deg, var(--purple-hot), var(--pink-hot));
  transform: scale(1.06);
  filter: brightness(1.06);
}

.sound-dock__play:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.sound-dock__ring {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(241, 83, 135, 0.35);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.sound-dock.is-playing .sound-dock__ring {
  opacity: 1;
  animation: ring-pulse 2s ease-out infinite;
}

.sound-dock__vinyl {
  position: absolute;
  inset: 0.35rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #1a1a1a 0 18%, transparent 19%),
    repeating-radial-gradient(circle at center, #111 0 2px, #1c1c1c 2px 4px);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.sound-dock.is-playing .sound-dock__vinyl {
  opacity: 1;
  transform: scale(1);
  animation: vinyl-spin 3.2s linear infinite;
}

.sound-dock__vinyl-label {
  position: absolute;
  inset: 28%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
}

.sound-dock__icon {
  position: relative;
  z-index: 1;
  width: 1.15rem;
  height: 1.15rem;
  display: grid;
  place-items: center;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.sound-dock__icon svg {
  width: 100%;
  height: 100%;
}

.sound-dock__icon--pause,
.sound-dock.is-playing .sound-dock__icon--play {
  opacity: 0;
  transform: scale(0.6);
  position: absolute;
}

.sound-dock.is-playing .sound-dock__icon--pause {
  opacity: 1;
  transform: scale(1);
  position: relative;
}

.sound-dock.is-playing .sound-dock__icon--play {
  position: absolute;
}

.sound-dock__panel {
  position: relative;
  min-width: 0;
  flex: 1;
}

.sound-dock__invite {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--ink-muted);
}

.sound-dock__invite em {
  font-style: italic;
  color: var(--amber);
}

.sound-dock__invite strong {
  display: inline;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.sound-dock.is-playing .sound-dock__invite {
  display: none;
}

.sound-dock__now {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.sound-dock__now[hidden] {
  display: none !important;
}

.sound-dock.is-playing .sound-dock__now {
  display: flex;
}

.sound-dock__eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 1.15rem;
  flex-shrink: 0;
}

.sound-dock__eq span {
  width: 3px;
  height: 40%;
  background: linear-gradient(180deg, var(--pink-hot), var(--purple));
  transform-origin: bottom;
  animation: eq-bounce 0.85s ease-in-out infinite alternate;
}

.sound-dock__eq span:nth-child(1) { animation-delay: 0s; height: 45%; }
.sound-dock__eq span:nth-child(2) { animation-delay: 0.12s; height: 70%; }
.sound-dock__eq span:nth-child(3) { animation-delay: 0.24s; height: 100%; }
.sound-dock__eq span:nth-child(4) { animation-delay: 0.08s; height: 55%; }
.sound-dock__eq span:nth-child(5) { animation-delay: 0.2s; height: 35%; }

.sound-dock__track {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.sound-dock__live {
  font-family: var(--font-head);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}

.sound-dock__song {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sound-dock__artist {
  font-size: 0.78rem;
  color: var(--ink-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes dock-enter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes vinyl-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ring-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

@keyframes eq-bounce {
  from {
    transform: scaleY(0.35);
  }
  to {
    transform: scaleY(1);
  }
}

/* Reveal on scroll */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Responsive */

@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    text-align: center;
    max-width: none;
    order: 2;
    margin-right: 0;
  }

  .hero-home .hero-lead,
  .hero-home .hero-actions {
    margin-inline: auto;
  }

  .hero-home .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: 1;
    justify-self: center;
    width: min(68vw, 19rem);
    margin: 0 auto 0.25rem;
  }

  .hero-home .brand-line {
    font-size: clamp(2.1rem, 9.5vw, 3.4rem);
  }

  .hero-home {
    padding-bottom: 3rem;
  }

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

  .artist {
    aspect-ratio: 16 / 11;
  }

  .artist img {
    object-position: center 20%;
  }

  .run-layout,
  .about-layout,
  .run-teaser-banner,
  .distance-grid,
  .podium {
    grid-template-columns: 1fr;
  }

  .run-teaser-facts {
    text-align: left;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
  }

  .about-media {
    max-width: 100%;
    justify-self: stretch;
  }

  .day-tabs {
    grid-template-columns: 1fr;
  }

  .schedule-head,
  .schedule-list li {
    grid-template-columns: 4.5rem 1fr;
  }

  .schedule-head span:last-child {
    display: none;
  }

  .schedule-list li {
    position: relative;
    padding-bottom: 2.1rem;
  }

  .schedule-list li > span {
    position: absolute;
    left: 1.15rem;
    bottom: 0.7rem;
    text-align: left;
    font-size: 0.7rem;
  }

  .meta-bar {
    grid-template-columns: 1fr 1fr;
  }

  .kit-list,
  .shirts-grid {
    grid-template-columns: 1fr;
  }

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

  .sponsor-card--featured {
    aspect-ratio: 2.4 / 1;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .vip-banner {
    gap: 0.5rem 0.75rem;
    padding: 0.7rem 1rem;
  }

  .vip-banner__text {
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1080;
    background: rgba(4, 4, 8, 0.72);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  }

  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 1090;
    width: min(19.5rem, 84vw);
    height: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.35rem;
    padding: calc(var(--header-h) + 1.75rem) 1.35rem 2rem;
    background: #0c0b10;
    background-image:
      linear-gradient(165deg, #1c1224 0%, #0a0a0c 45%, #070707 100%);
    border-left: 1px solid rgba(241, 83, 135, 0.28);
    box-shadow:
      -24px 0 48px rgba(0, 0, 0, 0.55),
      inset 1px 0 0 rgba(242, 239, 232, 0.04);
    transform: translate3d(105%, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.45s var(--ease);
  }

  .nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple), var(--pink), var(--purple-hot));
  }

  .nav.is-open {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  .nav-label {
    display: block;
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    opacity: 0;
    transform: translateX(1.25rem);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  }

  .nav.is-open .nav-label {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.08s;
  }

  .nav a {
    display: block;
    padding: 0.85rem 0.9rem;
    font-size: 1.05rem;
    color: var(--ink);
    border-radius: 0.2rem;
    opacity: 0;
    transform: translateX(1.35rem);
    transition:
      color 0.25s var(--ease),
      background 0.25s var(--ease),
      opacity 0.4s var(--ease),
      transform 0.4s var(--ease);
  }

  .nav a:hover,
  .nav a:focus-visible {
    background: rgba(241, 83, 135, 0.1);
  }

  .nav.is-open a {
    opacity: 1;
    transform: translateX(0);
  }

  .nav.is-open a:nth-child(2) { transition-delay: 0.1s; }
  .nav.is-open a:nth-child(3) { transition-delay: 0.14s; }
  .nav.is-open a:nth-child(4) { transition-delay: 0.18s; }
  .nav.is-open a:nth-child(5) { transition-delay: 0.22s; }
  .nav.is-open a:nth-child(6) { transition-delay: 0.26s; }
  .nav.is-open a:nth-child(7) { transition-delay: 0.3s; }

  .nav-run,
  .nav-cta {
    margin-top: 0.35rem;
    text-align: center;
  }

  .nav-run {
    clip-path: none;
    border-radius: 0.2rem;
  }

  .nav-cta {
    clip-path: none;
    border-radius: 0.2rem;
  }

  .contact-actions,
  .run-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lg {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .meta-bar {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .brand-in {
    letter-spacing: 0.28em;
  }

  .artist {
    aspect-ratio: 3 / 4;
  }

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

  .sponsor-card--featured {
    aspect-ratio: 16 / 9;
  }

  .sponsor-card--featured img {
    inset: 1.35rem 1.5rem;
    width: calc(100% - 3rem);
    height: calc(100% - 2.7rem);
  }

  .sound-dock {
    max-width: calc(100vw - 1.5rem);
    padding-right: 0.85rem;
  }

  .sound-dock__invite {
    font-size: 0.82rem;
  }
}

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

  .hero-beams,
  .hero-orb,
  .scroll-line,
  .hero-event,
  .brand-line,
  .hero-lead,
  .hero-actions,
  .hero-scroll,
  .hero-dates,
  .hero-visual,
  .hero-home .hero-logo,
  .hero-visual-glow,
  .nav-run,
  .nav-run.is-current {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .nav,
  .nav-backdrop,
  .nav-label,
  .nav a {
    transition: none !important;
  }

  .nav {
    transform: translate3d(105%, 0, 0);
  }

  .nav.is-open,
  .nav.is-open .nav-label,
  .nav.is-open a {
    opacity: 1 !important;
    transform: none !important;
  }

  .stage-beam,
  .stage-ring,
  .stage-spark {
    animation: none !important;
  }

  .sound-dock,
  .sound-dock.is-playing .sound-dock__vinyl,
  .sound-dock.is-playing .sound-dock__ring,
  .sound-dock__eq span {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

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

  .artist:hover img {
    transform: none;
  }
}
