/* ------------------------------------------------------ */
/* www.tropicalevents.ro Development Team @ neagumarrioo  */
/* ------------------------------------------------------ */

:root {
  --black: #050205;
  --black-2: #0c050b;
  --black-3: #150912;
  --pink: #ff4dcc;
  --pink-main: #f075d3;
  --coral: #fa7384;
  --rose: #ffc1e8;
  --cream: #fff4fb;
  --muted: #c7a8bd;
  --line: rgba(240, 117, 211, 0.24);
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
  --pink-shadow: 0 22px 70px rgba(240, 117, 211, 0.28);
  --font-display: "Anton", Impact, sans-serif;
  --font-body: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  --title-tracking: 0.024em;
  --title-tracking-strong: 0.038em;
  --display-tracking: 0.02em;
  --title-tracking-mobile: 0.011em;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --header-height: 92px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-elastic: cubic-bezier(0.2, 1.4, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  overflow-x: clip;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--cream);
  background: radial-gradient(
      circle at 18% 8%,
      rgba(240, 117, 211, 0.24),
      transparent 31rem
    ),
    radial-gradient(
      circle at 78% 2%,
      rgba(250, 115, 132, 0.2),
      transparent 28rem
    ),
    radial-gradient(
      circle at 45% 80%,
      rgba(255, 77, 204, 0.12),
      transparent 32rem
    ),
    linear-gradient(145deg, #050205 0%, #0b0309 46%, #140611 100%);
  background-size: 115% 115%;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 76%);
}

body::after {
  background: radial-gradient(
      circle at var(--cursor-x, 50vw) var(--cursor-y, 18vh),
      rgba(240, 117, 211, 0.12),
      transparent 18rem
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0 1px,
      transparent 1px 5px
    ),
    radial-gradient(circle at 50% 50%, transparent 0, rgba(0, 0, 0, 0.28) 75%);
  opacity: 0.52;
  mix-blend-mode: screen;
}

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

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

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

summary {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--black);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-180%);
  transition: transform 0.25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before {
  content: "TROPICAL";
  position: fixed;
  left: -0.08em;
  bottom: -0.24em;
  z-index: -1;
  font-family: var(--font-display);
  font-size: clamp(8rem, 23vw, 27rem);
  letter-spacing: var(--display-tracking);
  color: rgba(240, 117, 211, 0.035);
  pointer-events: none;
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(5, 2, 5, 0.74);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: border-color 0.25s ease, background 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(240, 117, 211, 0.36);
  background: rgba(5, 2, 5, 0.9);
  box-shadow: 0 18px 90px rgba(240, 117, 211, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-main), var(--coral)),
    var(--pink-main);
  box-shadow: 0 0 35px rgba(240, 117, 211, 0.42);
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: -45%;
  background: conic-gradient(
    from 90deg,
    transparent,
    rgba(255, 244, 251, 0.75),
    transparent 28%
  );
  opacity: 0.55;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  border: 1px solid rgba(5, 2, 5, 0.2);
}

.brand-mark svg,
.brand-mark img {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand-mark svg {
  fill: var(--black);
}

.brand-copy {
  display: grid;
  line-height: 0.86;
  text-transform: uppercase;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.46rem;
  letter-spacing: 0.02em;
}

.brand-copy small {
  color: var(--pink-main);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.36em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(255, 244, 251, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  overflow: hidden;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent,
    rgba(255, 244, 251, 0.22),
    transparent
  );
  translate: -120% 0;
  transition: translate 0.55s var(--ease-out);
}

.nav-link:hover::before,
.nav-link.is-active::before {
  translate: 120% 0;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-ticket {
  color: var(--black);
  background: linear-gradient(135deg, var(--pink-main), var(--coral));
  box-shadow: 0 13px 36px rgba(240, 117, 211, 0.28);
}

.nav-ticket:hover,
.nav-ticket.is-active {
  color: var(--black);
  background: linear-gradient(135deg, var(--rose), var(--coral));
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
  padding: 150px clamp(20px, 6vw, 84px) 90px;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.72;
  pointer-events: none;
}

.hero-orb-a {
  right: 15vw;
  top: 22vh;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(240, 117, 211, 0.42),
    transparent 66%
  );
  animation: float-soft 8s ease-in-out infinite;
}

.hero-orb-b {
  left: 8vw;
  bottom: 10vh;
  width: 170px;
  height: 170px;
  background: radial-gradient(
    circle,
    rgba(250, 115, 132, 0.36),
    transparent 68%
  );
  animation: float-soft 9s ease-in-out infinite reverse;
}

.hero-copy,
.page-hero-copy,
.section-copy,
.contact-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
}

.eyebrow {
  color: var(--pink-main);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.26em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-title,
.page-title,
.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: var(--title-tracking-strong);
  line-height: 0.9;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero-title {
  max-width: 940px;
  font-size: clamp(5.2rem, 14vw, 15rem);
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.28),
    0 18px 80px rgba(240, 117, 211, 0.18);
}

.hero-subtitle,
.hero-note,
.page-subtitle,
.section-text,
.event-details p,
.experience-card p,
.production-card p,
.event-card p,
.detail-card p,
.flow-card p,
.route-card p,
.faq-item p,
.poster-card p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.hero-note {
  max-width: 560px;
  color: var(--rose);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-actions,
.rules-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-btn,
.ghost-btn,
.event-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease, background 0.25s ease;
}

.primary-btn::before,
.ghost-btn::before,
.event-cta::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.42),
    transparent 80%
  );
  translate: -120% 0;
  pointer-events: none;
}

.primary-btn,
.event-cta {
  color: var(--black);
  background: linear-gradient(135deg, var(--pink-main), var(--coral));
  box-shadow: var(--pink-shadow);
}

.primary-btn:hover,
.event-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 78px rgba(250, 115, 132, 0.32);
}

.ghost-btn,
.event-cta.ghost {
  color: var(--cream);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.ghost-btn:hover,
.event-cta.ghost:hover {
  border-color: rgba(240, 117, 211, 0.75);
  background: rgba(240, 117, 211, 0.11);
  transform: translateY(-3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 12px;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.hero-stats dt {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.hero-stats dd {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.proof-strip {
  width: min(1180px, calc(100% - 40px));
  margin: -54px auto 42px;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(240, 117, 211, 0.18),
    rgba(250, 115, 132, 0.08)
  );
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proof-strip div {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: rgba(5, 2, 5, 0.72);
}

.proof-strip span {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.proof-strip strong {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.poster-card {
  position: absolute;
  width: min(420px, 80vw);
  min-height: 560px;
  border-radius: 42px;
  overflow: hidden;
}

.poster-card-back {
  transform: rotate(-10deg) translate(-34px, 30px);
  background: linear-gradient(
      135deg,
      rgba(240, 117, 211, 0.16),
      rgba(250, 115, 132, 0.11)
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 0 1px,
      transparent 1px 24px
    ),
    #110711;
  border: 1px solid rgba(240, 117, 211, 0.26);
  box-shadow: var(--shadow);
}

.poster-card-main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(
      circle at 70% 18%,
      rgba(255, 244, 251, 0.22),
      transparent 10rem
    ),
    radial-gradient(
      circle at 20% 85%,
      rgba(250, 115, 132, 0.46),
      transparent 14rem
    ),
    linear-gradient(
      160deg,
      rgba(240, 117, 211, 0.98),
      rgba(250, 115, 132, 0.9) 45%,
      #180713 75%
    );
  box-shadow: 0 34px 110px rgba(240, 117, 211, 0.3);
  transform: rotate(3deg);
  animation: poster-breathe 7s ease-in-out infinite;
}

.poster-card-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 0 62%, rgba(0, 0, 0, 0.48)),
    repeating-linear-gradient(
      0deg,
      rgba(5, 2, 5, 0.12) 0 2px,
      transparent 2px 12px
    );
  pointer-events: none;
}

.poster-kicker,
.poster-card h2,
.poster-card p {
  position: relative;
  z-index: 1;
}

.poster-kicker {
  width: fit-content;
  padding: 9px 12px;
  border: 1px solid rgba(5, 2, 5, 0.24);
  border-radius: 999px;
  background: rgba(255, 244, 251, 0.38);
  color: var(--black);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.poster-card h2 {
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(5rem, 8.3vw, 8.4rem);
  letter-spacing: var(--title-tracking);
  line-height: 0.82;
}

.poster-card p {
  color: rgba(255, 244, 251, 0.88);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.poster-sun {
  position: absolute;
  right: -74px;
  top: 42%;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(5, 2, 5, 0.28);
  border-radius: 50%;
}

.poster-sun::before,
.poster-sun::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: inherit;
  border-radius: inherit;
}

.poster-sun::after {
  inset: 48px;
}

.floating-badge {
  position: absolute;
  right: 0;
  bottom: 72px;
  z-index: 3;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 2, 5, 0.74);
  box-shadow: var(--shadow);
  color: var(--rose);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ticker-section {
  display: grid;
  gap: 14px;
  padding: 18px 0 70px;
  overflow: hidden;
}

.ticker {
  width: 110%;
  margin-left: -5%;
  padding: 15px 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-hot {
  color: var(--black);
  background: linear-gradient(90deg, var(--pink-main), var(--coral));
  transform: rotate(-3deg);
}

.ticker-soft {
  color: var(--cream);
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  transform: rotate(2deg);
}

.ticker-track {
  display: flex;
  gap: 34px;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.ticker-track-reverse {
  animation-direction: reverse;
  animation-duration: 28s;
}

.section {
  position: relative;
  padding: clamp(74px, 9vw, 130px) clamp(20px, 6vw, 84px);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.section-header {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin-bottom: 36px;
}

.section-title {
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 7.2rem);
}

.event-spotlight {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(
      circle at 20% 0%,
      rgba(240, 117, 211, 0.2),
      transparent 18rem
    ),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.event-date-block {
  min-height: 220px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 28px;
  background: linear-gradient(150deg, var(--pink-main), var(--coral));
  color: var(--black);
  text-align: center;
  box-shadow: var(--pink-shadow);
}

.event-date-block span {
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.event-date-block strong {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.92;
}

.event-details {
  display: grid;
  align-content: center;
  gap: 14px;
}

.event-details h3,
.event-card h3,
.experience-card h3,
.flow-card h3 {
  color: var(--cream);
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
  line-height: 1;
}

.experience-section,
.event-calendar-section,
.event-detail-section,
.production-section,
.route-section,
.inquiry-section,
.team-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(0, 0, 0, 0.12);
}

.experience-grid,
.production-grid,
.detail-grid,
.flow-grid,
.route-grid,
.inquiry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.production-grid,
.detail-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experience-card,
.production-card,
.detail-card,
.flow-card,
.route-card,
.event-card,
.contact-card,
.contact-line,
.team-card,
.team-panel,
.partner-panel,
.rules-card,
.faq-item {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.experience-card::before,
.production-card::before,
.detail-card::before,
.flow-card::before,
.route-card::before,
.event-card::before,
.contact-card::before,
.contact-line::before,
.team-card::before,
.team-panel::before,
.partner-panel::before,
.rules-card::before,
.faq-item::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(240, 117, 211, 0.28),
    transparent 38%,
    rgba(250, 115, 132, 0.22)
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.experience-card > *,
.production-card > *,
.detail-card > *,
.flow-card > *,
.route-card > *,
.event-card > *,
.contact-card > *,
.contact-line > *,
.team-card > *,
.team-panel > *,
.partner-panel > *,
.rules-card > *,
.faq-item > * {
  position: relative;
  z-index: 1;
}

.tilt-ready {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg)) translateY(var(--lift, 0));
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.22s var(--ease-out), border-color 0.25s ease,
    background 0.25s ease, box-shadow 0.25s ease;
}

.tilt-ready::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--glow-x, 50%) var(--glow-y, 50%),
    rgba(255, 244, 251, 0.18),
    transparent 34%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.experience-card,
.production-card,
.detail-card,
.flow-card,
.route-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease,
    background 0.25s ease;
}

.experience-card:hover,
.production-card:hover,
.detail-card:hover,
.flow-card:hover,
.route-card:hover,
.event-card:hover,
.contact-line:hover,
.team-card:hover,
.team-panel:hover {
  --lift: -6px;
  border-color: rgba(240, 117, 211, 0.62);
  background: rgba(240, 117, 211, 0.09);
}

.experience-card:hover::before,
.production-card:hover::before,
.detail-card:hover::before,
.flow-card:hover::before,
.route-card:hover::before,
.event-card:hover::before,
.contact-card:hover::before,
.contact-line:hover::before,
.team-card:hover::before,
.team-panel:hover::before,
.partner-panel:hover::before,
.rules-card:hover::before,
.faq-item:hover::before,
.tilt-ready:hover::after {
  opacity: 1;
}

.card-index,
.production-card span,
.detail-card span,
.flow-card span,
.route-card span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.production-card h3,
.detail-card h3,
.route-card h3 {
  color: var(--cream);
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.04;
}

.lineup-section {
  overflow: hidden;
}

.lineup-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.lineup-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: clamp(22px, 4vw, 42px) 0;
  border-bottom: 1px solid var(--line);
  transition: transform 0.25s ease, color 0.25s ease;
}

.lineup-row:hover {
  transform: translateX(14px);
  color: var(--pink-main);
}

.lineup-row span {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 9rem);
  letter-spacing: var(--title-tracking);
  line-height: 0.82;
}

.lineup-row strong,
.lineup-row em {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.partner-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(300px, 1fr);
  gap: 22px;
  align-items: stretch;
}

.partner-panel,
.rules-card {
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  align-content: center;
  gap: 22px;
  background: radial-gradient(
      circle at 14% 18%,
      rgba(240, 117, 211, 0.22),
      transparent 18rem
    ),
    var(--panel);
}

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

.partner-list span {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.048);
  color: var(--rose);
  font-weight: 900;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.rules-section {
  padding-top: 40px;
}

.rules-card {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.page-hero {
  min-height: 72vh;
  display: grid;
  align-items: center;
  padding: 170px clamp(20px, 6vw, 84px) 90px;
  background: radial-gradient(
      circle at 72% 22%,
      rgba(240, 117, 211, 0.24),
      transparent 24rem
    ),
    radial-gradient(
      circle at 18% 70%,
      rgba(250, 115, 132, 0.16),
      transparent 28rem
    );
}

.page-title {
  max-width: 1000px;
  font-size: clamp(4rem, 10vw, 11rem);
}

.month-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.tab {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.tab:hover,
.tab.active {
  color: var(--black);
  background: linear-gradient(135deg, var(--pink-main), var(--coral));
  transform: translateY(-2px);
}

.filter-status {
  margin: -8px 0 24px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.event-card {
  display: grid;
  gap: 18px;
  min-height: 420px;
  padding: clamp(24px, 3vw, 34px);
  transition: transform 0.25s ease, border-color 0.25s ease,
    background 0.25s ease;
}

.event-card.featured {
  background: radial-gradient(
      circle at 84% 14%,
      rgba(240, 117, 211, 0.28),
      transparent 16rem
    ),
    var(--panel);
}

.event-card.muted {
  background: radial-gradient(
      circle at 12% 78%,
      rgba(250, 115, 132, 0.16),
      transparent 14rem
    ),
    rgba(255, 255, 255, 0.04);
}

.event-card.is-hidden {
  display: none;
}

.event-card-top,
.event-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.event-card-top span,
.event-card-top strong,
.event-meta span {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-card h3 {
  align-self: end;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.8rem);
  letter-spacing: var(--title-tracking);
}

.event-card .event-cta {
  width: fit-content;
  align-self: end;
}

.event-flow-section {
  padding-top: 40px;
}

.event-detail-section {
  padding-top: 46px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  align-items: start;
  gap: clamp(26px, 5vw, 70px);
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: radial-gradient(
      circle at 90% 8%,
      rgba(240, 117, 211, 0.2),
      transparent 16rem
    ),
    var(--panel);
}

.contact-line {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 0.25s ease, border-color 0.25s ease,
    background 0.25s ease;
}

.contact-line span {
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-line strong {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  overflow-wrap: anywhere;
}

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

.copy-status {
  min-height: 1.3em;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.team-section {
  display: grid;
  gap: clamp(26px, 5vw, 64px);
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: stretch;
}

.team-roster {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.team-card,
.team-panel {
  min-height: 100%;
  transition: transform 0.28s var(--ease-out), border-color 0.28s ease,
    background 0.28s ease, box-shadow 0.28s ease;
}

.team-card {
  display: grid;
  gap: 18px;
  padding: clamp(16px, 3vw, 24px);
  background: radial-gradient(
      circle at 72% 8%,
      rgba(240, 117, 211, 0.28),
      transparent 18rem
    ),
    radial-gradient(
      circle at 10% 100%,
      rgba(250, 115, 132, 0.18),
      transparent 18rem
    ),
    rgba(255, 255, 255, 0.07);
}

.team-member-card {
  align-content: start;
  gap: 14px;
  padding: clamp(14px, 2vw, 18px);
}

.team-photo-frame {
  position: relative;
  aspect-ratio: 1;
  width: min(168px, 58vw);
  justify-self: center;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(240, 117, 211, 0.22),
    rgba(250, 115, 132, 0.12)
  );
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.team-photo-frame::before,
.team-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.team-photo-frame::before {
  background: linear-gradient(
    110deg,
    transparent 18%,
    rgba(255, 244, 251, 0.22),
    transparent 52%
  );
  translate: -130% 0;
  animation: team-photo-shine 5.4s var(--ease-out) infinite;
}

.team-photo-frame::after {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
  box-shadow: inset 0 0 54px rgba(240, 117, 211, 0.18);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.01;
  transition: scale 0.6s var(--ease-out), filter 0.35s ease;
}

.team-card:hover .team-photo {
  scale: 1.055;
  filter: saturate(1.12) contrast(1.06);
}

.team-card-body {
  display: grid;
  gap: 9px;
  justify-items: center;
  padding: 2px 2px 4px;
  text-align: center;
}

.team-kicker,
.team-role,
.instagram-link span,
.team-pill {
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.team-kicker {
  color: var(--coral);
}

.team-card h3,
.team-panel h3 {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: var(--title-tracking);
  text-transform: uppercase;
}

.team-member-card h3 {
  font-size: clamp(2rem, 3.8vw, 3.05rem);
  line-height: 0.95;
}

.team-role {
  color: var(--rose);
}

.instagram-link {
  display: grid;
  gap: 5px;
  width: fit-content;
  justify-items: center;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(240, 117, 211, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.24s ease, border-color 0.24s ease,
    background 0.24s ease, box-shadow 0.24s ease;
}

.instagram-link:hover {
  transform: translateY(-3px);
  border-color: rgba(250, 115, 132, 0.72);
  background: rgba(240, 117, 211, 0.13);
  box-shadow: 0 16px 44px rgba(240, 117, 211, 0.16);
}

.instagram-link span {
  color: var(--coral);
}

.instagram-link strong {
  color: var(--cream);
  font-size: 0.94rem;
}

.team-panel {
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: clamp(24px, 5vw, 44px);
  background: radial-gradient(
      circle at 0% 10%,
      rgba(240, 117, 211, 0.2),
      transparent 18rem
    ),
    rgba(255, 255, 255, 0.055);
}

.team-system-panel {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  align-items: center;
  min-height: auto;
}

.team-panel-copy {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.team-panel h3 {
  max-width: 740px;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.team-panel p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.team-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.team-pill {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--rose);
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
}

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

.team-proof div {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
  transition: border-color 0.24s ease, background 0.24s ease,
    box-shadow 0.24s ease;
}

.team-proof strong {
  color: var(--pink-main);
  font-family: var(--font-display);
  font-size: 2.3rem;
  line-height: 0.9;
}

.team-proof span {
  color: var(--cream);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-section {
  padding-top: 52px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: var(--cream);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 900;
}

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

.faq-item summary::after {
  content: "+";
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-main), var(--coral));
  color: var(--black);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  padding: 0 24px 24px;
}

.faq-item[open] {
  border-color: rgba(240, 117, 211, 0.58);
  background: rgba(240, 117, 211, 0.09);
}

.final-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background: radial-gradient(
      circle at 10% 0%,
      rgba(240, 117, 211, 0.28),
      transparent 18rem
    ),
    linear-gradient(
      135deg,
      rgba(240, 117, 211, 0.16),
      rgba(250, 115, 132, 0.08)
    );
  box-shadow: var(--shadow);
}

.final-cta p {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 5rem);
  letter-spacing: var(--title-tracking);
  line-height: 0.92;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 44px clamp(20px, 6vw, 84px) 58px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  width: fit-content;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: var(--title-tracking);
  line-height: 0.9;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: 16px 22px;
  flex-wrap: wrap;
}

.footer-nav a,
.site-footer p {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a {
  position: relative;
  width: fit-content;
  color: rgba(255, 244, 251, 0.72);
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink-main), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}

.footer-nav a:hover {
  color: var(--pink-main);
  transform: translateY(-2px);
}

.footer-nav a:hover::after {
  transform: scaleX(1);
}

.animate {
  opacity: 1;
  translate: 0 0;
  scale: 1;
  filter: blur(0);
}

.js .animate {
  opacity: 0;
  translate: 0 26px;
  scale: 0.98;
  filter: blur(8px);
  transition: opacity 0.78s ease, translate 0.78s ease, scale 0.78s ease,
    filter 0.78s ease;
}

.js .animate.is-visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
  filter: blur(0);
}

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

@keyframes float-soft {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -24px, 0) scale(1.08);
  }
}

@keyframes poster-breathe {
  0%,
  100% {
    transform: rotate(3deg) translateY(0);
  }
  50% {
    transform: rotate(1deg) translateY(-12px);
  }
}

@keyframes ambient-shift {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 45% 18%;
  }
  100% {
    background-position: 100% 62%;
  }
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 74px 74px, -74px 74px;
  }
}

@keyframes shine-spin {
  from {
    rotate: 0deg;
  }
  to {
    rotate: 360deg;
  }
}

@keyframes mark-pulse {
  0%,
  100% {
    box-shadow: 0 0 28px rgba(240, 117, 211, 0.34);
  }
  50% {
    box-shadow: 0 0 54px rgba(250, 115, 132, 0.54);
  }
}

@keyframes palm-sway {
  0%,
  100% {
    rotate: -4deg;
    scale: 1;
  }
  50% {
    rotate: 5deg;
    scale: 1.05;
  }
}

@keyframes badge-orbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(-12px, -14px, 0) rotate(3deg);
  }
}

@keyframes strip-pop {
  0%,
  100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  }
  50% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 0 34px rgba(240, 117, 211, 0.13);
  }
}

@keyframes text-glow {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(240, 117, 211, 0);
  }
  50% {
    text-shadow: 0 0 26px rgba(240, 117, 211, 0.44);
  }
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: var(--pink-shadow);
  }
  50% {
    box-shadow: 0 28px 90px rgba(250, 115, 132, 0.44);
  }
}

@media (prefers-reduced-motion: no-preference) {
  body {
    animation: ambient-shift 18s ease-in-out infinite alternate;
  }

  body::before {
    animation: grid-drift 34s linear infinite;
  }

  .site-header {
    animation: text-glow 5s ease-in-out infinite;
  }

  .brand-mark {
    animation: mark-pulse 3.8s ease-in-out infinite;
  }

  .brand-mark::before {
    animation: shine-spin 4.5s linear infinite;
  }

  .brand-mark svg,
  .brand-mark img {
    animation: palm-sway 4.2s ease-in-out infinite;
  }

  .brand-copy strong,
  .hero-title,
  .page-title,
  .section-title,
  .footer-brand {
    animation: text-glow 6s ease-in-out infinite;
  }

  .primary-btn,
  .event-cta {
    animation: cta-pulse 3.2s ease-in-out infinite;
  }

  .primary-btn:hover::before,
  .ghost-btn:hover::before,
  .event-cta:hover::before {
    animation: button-shimmer 0.75s var(--ease-out);
  }

  .poster-card-back {
    animation: poster-back-drift 8s ease-in-out infinite;
  }

  .floating-badge {
    animation: badge-orbit 5s ease-in-out infinite;
  }

  .proof-strip div {
    animation: strip-pop 4.5s ease-in-out infinite;
  }

  .proof-strip div:nth-child(2),
  .experience-card:nth-child(2),
  .production-card:nth-child(2),
  .detail-card:nth-child(2),
  .flow-card:nth-child(2),
  .route-card:nth-child(2),
  .team-member-card:nth-child(2),
  .team-proof div:nth-child(2),
  .partner-list span:nth-child(2n) {
    animation-delay: 0.2s;
  }

  .proof-strip div:nth-child(3),
  .experience-card:nth-child(3),
  .production-card:nth-child(3),
  .detail-card:nth-child(3),
  .flow-card:nth-child(3),
  .route-card:nth-child(3),
  .team-member-card:nth-child(3),
  .team-proof div:nth-child(3),
  .partner-list span:nth-child(3n) {
    animation-delay: 0.4s;
  }

  .proof-strip div:nth-child(4),
  .production-card:nth-child(4),
  .detail-card:nth-child(4),
  .team-member-card:nth-child(4),
  .partner-list span:nth-child(4n) {
    animation-delay: 0.6s;
  }

  .experience-card,
  .production-card,
  .detail-card,
  .flow-card,
  .route-card,
  .event-card,
  .contact-line,
  .team-card,
  .team-panel,
  .final-cta,
  .site-footer,
  .partner-list span,
  .faq-item {
    animation: soft-card-glow 5.8s ease-in-out infinite;
  }

  .footer-nav a::after {
    animation: footer-link-glow 4.8s ease-in-out infinite;
  }

  .faq-item[open] p {
    animation: faq-open 0.42s var(--ease-out);
  }

  .team-photo-frame {
    animation: team-ring-pulse 4.8s ease-in-out infinite;
  }

  .instagram-link {
    animation: social-breathe 5.2s ease-in-out infinite;
  }

  .team-pill {
    animation: pill-breathe 5.6s ease-in-out infinite;
  }

  .team-pill:nth-child(2n) {
    animation-delay: 0.25s;
  }

  .team-proof div {
    animation: metric-breathe 5.8s ease-in-out infinite;
  }
}

@keyframes button-shimmer {
  from {
    translate: -120% 0;
  }
  to {
    translate: 120% 0;
  }
}

@keyframes poster-back-drift {
  0%,
  100% {
    transform: rotate(-10deg) translate(-34px, 30px);
  }
  50% {
    transform: rotate(-7deg) translate(-22px, 18px);
  }
}

@keyframes soft-card-glow {
  0%,
  100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  50% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13),
      0 0 28px rgba(240, 117, 211, 0.1);
  }
}

@keyframes footer-link-glow {
  0%,
  100% {
    opacity: 0.48;
  }
  50% {
    opacity: 0.95;
  }
}

@keyframes team-photo-shine {
  0%,
  58% {
    translate: -130% 0;
  }
  76%,
  100% {
    translate: 130% 0;
  }
}

@keyframes team-ring-pulse {
  0%,
  100% {
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36),
      inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  }
  50% {
    box-shadow: 0 30px 96px rgba(240, 117, 211, 0.2),
      0 0 0 1px rgba(250, 115, 132, 0.22),
      inset 0 0 0 1px rgba(255, 244, 251, 0.18);
  }
}

@keyframes social-breathe {
  0%,
  100% {
    border-color: rgba(240, 117, 211, 0.34);
    box-shadow: 0 0 0 rgba(240, 117, 211, 0);
  }
  50% {
    border-color: rgba(250, 115, 132, 0.58);
    box-shadow: 0 14px 42px rgba(240, 117, 211, 0.13);
  }
}

@keyframes pill-breathe {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.045);
  }
  50% {
    border-color: rgba(240, 117, 211, 0.42);
    background: rgba(240, 117, 211, 0.095);
  }
}

@keyframes metric-breathe {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  }
  50% {
    border-color: rgba(240, 117, 211, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09),
      0 0 32px rgba(240, 117, 211, 0.09);
  }
}

@keyframes faq-open {
  from {
    opacity: 0;
    translate: 0 -10px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}

@media (max-width: 1050px) {
  .site-header {
    border-radius: 30px;
    align-items: flex-start;
  }

  .site-nav {
    max-width: 520px;
  }

  .hero,
  .section-split,
  .partner-section,
  .contact-section,
  .team-grid,
  .team-system-panel {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 160px;
  }

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

  .experience-grid,
  .production-grid,
  .detail-grid,
  .flow-grid,
  .route-grid,
  .inquiry-grid,
  .event-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    min-height: auto;
  }

  .proof-strip {
    margin-top: -32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 132px;
    --title-tracking: 0.016em;
    --title-tracking-strong: 0.022em;
    --display-tracking: 0.014em;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px;
  }

  .brand {
    justify-content: flex-start;
    padding-inline: 4px;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 6px;
    max-width: none;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 18px,
      #000 calc(100% - 18px),
      transparent 100%
    );
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 11px;
    font-size: 0.68rem;
  }

  .hero,
  .page-hero {
    padding-top: 220px;
  }

  .hero-title {
    font-size: clamp(4.3rem, 20vw, 7rem);
  }

  .page-title {
    font-size: clamp(3.4rem, 16vw, 7rem);
  }

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

  .proof-strip {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .rules-actions {
    width: 100%;
  }

  .primary-btn,
  .ghost-btn,
  .event-cta {
    width: 100%;
  }

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

  .poster-card {
    width: min(340px, 88vw);
    min-height: 455px;
    border-radius: 30px;
  }

  .poster-card-main {
    padding: 25px;
  }

  .poster-card h2 {
    font-size: clamp(4.3rem, 18vw, 6.1rem);
  }

  .floating-badge {
    right: 8px;
    bottom: 40px;
    font-size: 0.72rem;
  }

  .ticker-hot,
  .ticker-soft {
    transform: rotate(0deg);
  }

  .event-spotlight {
    grid-template-columns: 1fr;
  }

  .event-date-block {
    min-height: 150px;
  }

  .lineup-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lineup-row:hover {
    transform: translateX(0);
  }

  .partner-list {
    grid-template-columns: 1fr;
  }

  .page-hero-team {
    max-width: 100%;
    min-height: auto;
    padding-bottom: 64px;
  }

  .page-hero-team .page-hero-copy {
    gap: 16px;
  }

  .page-hero-team .page-title,
  .team-section .section-title,
  .team-panel h3,
  .team-member-card h3,
  .team-member-card .team-role,
  .team-pill {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .team-section {
    gap: 28px;
    min-width: 0;
  }

  .team-section .section-header {
    gap: 12px;
    margin-bottom: 22px;
  }

  .team-section .section-title {
    font-size: clamp(2.25rem, 11.8vw, 3.8rem);
    line-height: 0.92;
  }

  .team-section .section-text {
    max-width: 100%;
  }

  .team-proof {
    grid-template-columns: 1fr;
  }

  .team-roster {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .team-member-card {
    grid-template-columns: 94px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-width: 0;
    max-width: 100%;
    padding: 14px;
    border-radius: 26px;
  }

  .team-member-card .team-photo-frame {
    width: 94px;
    justify-self: start;
  }

  .team-member-card .team-card-body {
    min-width: 0;
    max-width: 100%;
    justify-items: start;
    gap: 6px;
    padding: 0;
    text-align: left;
  }

  .team-member-card .team-kicker {
    display: none;
  }

  .team-member-card h3 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
    letter-spacing: 0.014em;
  }

  .team-member-card .team-role {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
  }

  .team-member-card .instagram-link {
    display: inline-flex;
    width: 100%;
    min-width: 0;
    max-width: 240px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 4px;
    padding: 10px 12px;
  }

  .team-member-card .instagram-link span {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .team-member-card .instagram-link strong {
    min-width: 0;
    overflow: hidden;
    font-size: 0.86rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .team-system-panel {
    gap: 20px;
    min-width: 0;
    padding: 20px;
    border-radius: 26px;
  }

  .team-panel h3 {
    font-size: clamp(2.1rem, 12vw, 4rem);
    line-height: 0.92;
  }

  .team-panel p {
    font-size: 0.98rem;
  }

  .team-pill-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    min-width: 0;
  }

  .team-pill {
    justify-content: center;
    min-height: 38px;
    padding-inline: 10px;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-align: center;
  }

  .contact-actions,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta {
    width: calc(100% - 36px);
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding-inline: 18px;
  }
}

@media (max-width: 430px) {
  :root {
    --title-tracking: 0.012em;
    --title-tracking-strong: 0.016em;
    --display-tracking: 0.011em;
    --title-tracking-mobile: 0.008em;
  }

  .brand-copy strong {
    font-size: 1.2rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    display: flex;
  }

  .nav-ticket {
    grid-column: auto;
  }

  .hero,
  .page-hero {
    padding-top: 210px;
  }

  .page-hero-team {
    padding-bottom: 46px;
  }

  .hero-title {
    letter-spacing: var(--title-tracking-mobile);
  }

  .section-title {
    font-size: clamp(2.7rem, 15vw, 4.8rem);
  }

  .team-section .section-title {
    font-size: clamp(2.05rem, 12vw, 3.2rem);
  }

  .team-member-card {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border-radius: 24px;
  }

  .team-member-card .team-photo-frame {
    width: 76px;
  }

  .team-member-card h3 {
    font-size: clamp(1.55rem, 10vw, 2.15rem);
  }

  .team-member-card .team-role {
    font-size: 0.58rem;
    letter-spacing: 0.11em;
  }

  .team-member-card .instagram-link {
    max-width: 100%;
    padding: 9px 10px;
  }

  .team-member-card .instagram-link span {
    display: none;
  }

  .team-pill-grid {
    grid-template-columns: 1fr;
  }

  .event-card h3 {
    font-size: clamp(2.7rem, 15vw, 4.4rem);
  }
}

@media (max-width: 360px) {
  .team-member-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .team-member-card .team-photo-frame {
    justify-self: center;
    width: 88px;
  }

  .team-member-card .team-card-body {
    justify-items: center;
    text-align: center;
  }

  .team-member-card .instagram-link {
    justify-content: center;
  }
}

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

  .launch-curtain,
  .cursor-spark,
  .ambient-particles,
  .aurora-stack {
    display: none !important;
  }
}

/* Setlist vote + leaderboard feature */
.feature-page::after {
  content: "";
  position: fixed;
  inset: auto -12vw 8vh auto;
  width: 34vw;
  height: 34vw;
  min-width: 260px;
  min-height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(240, 117, 211, 0.18),
    transparent 68%
  );
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.noscript-card {
  width: min(920px, calc(100% - 36px));
  margin: 170px auto 40px;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(
      circle at 16% 0%,
      rgba(240, 117, 211, 0.24),
      transparent 18rem
    ),
    rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow);
}

.noscript-card h1 {
  max-width: 780px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: var(--title-tracking);
  line-height: 0.9;
  text-transform: uppercase;
}

.noscript-card p {
  margin: 18px 0 24px;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.65;
}

.feature-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 26px;
  padding: 170px clamp(18px, 6vw, 84px) 58px;
  overflow: hidden;
}

.feature-hero::before,
.feature-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.feature-hero::before {
  right: -9rem;
  top: 9rem;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(
    circle,
    rgba(240, 117, 211, 0.26),
    transparent 68%
  );
}

.feature-hero::after {
  left: -12rem;
  bottom: 3rem;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(
    circle,
    rgba(250, 115, 132, 0.2),
    transparent 70%
  );
}

.feature-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.feature-subtitle {
  color: var(--rose);
  font-size: clamp(1.35rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: 0.012em;
  line-height: 0.96;
}

.feature-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.feature-live-card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(100%, 420px);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-live-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 10%,
    rgba(240, 117, 211, 0.28),
    transparent 16rem
  );
  opacity: 0.9;
  pointer-events: none;
}

.feature-live-card > * {
  position: relative;
  z-index: 1;
}

.feature-live-card strong {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 4rem);
  letter-spacing: var(--title-tracking);
  line-height: 0.9;
  text-transform: uppercase;
}

.feature-live-card p {
  color: var(--muted);
  line-height: 1.55;
}

.live-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 8px rgba(250, 115, 132, 0.12),
    0 0 30px rgba(250, 115, 132, 0.65);
}

.sound-bars {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 42px;
}

.sound-bars span {
  width: 8px;
  min-height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pink-main), var(--coral));
}

.setlist-shell,
.leaderboard-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.setlist-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.vote-panel,
.selection-panel,
.leaderboard-toolbar,
.trust-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: radial-gradient(
      circle at 15% 0%,
      rgba(240, 117, 211, 0.18),
      transparent 18rem
    ),
    rgba(255, 255, 255, 0.058);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.vote-panel,
.selection-panel {
  padding: clamp(20px, 4vw, 36px);
}

.panel-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.panel-heading h2,
.leaderboard-toolbar h2 {
  color: var(--cream);
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: var(--title-tracking);
}

.selection-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
}

.search-label {
  display: block;
  margin-bottom: 8px;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.search-input-wrap {
  position: relative;
  isolation: isolate;
}

.search-input-wrap input {
  width: 100%;
  min-height: 62px;
  padding: 0 58px 0 18px;
  border: 1px solid rgba(240, 117, 211, 0.32);
  border-radius: 22px;
  background: rgba(5, 2, 5, 0.72);
  color: var(--cream);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease,
    transform 0.25s ease;
}

.search-input-wrap input:focus {
  border-color: rgba(240, 117, 211, 0.85);
  box-shadow: 0 0 0 5px rgba(240, 117, 211, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.search-input-wrap input::placeholder {
  color: rgba(255, 244, 251, 0.42);
}

.search-orb {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 24px;
  height: 24px;
  border: 2px solid var(--pink-main);
  border-radius: 50%;
  translate: 0 -50%;
  pointer-events: none;
}

.search-orb::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -6px;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--coral);
  rotate: 45deg;
}

.microcopy,
.result-meta,
.selection-counter,
.selected-empty,
.copy-status {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.result-meta,
.selection-counter {
  margin-top: 14px;
  color: var(--rose);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.search-results {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.no-results {
  padding: 18px;
  border: 1px dashed rgba(240, 117, 211, 0.34);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  line-height: 1.55;
}

.song-result,
.selected-song,
.leaderboard-row {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(240, 117, 211, 0.18);
  background: rgba(255, 255, 255, 0.048);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.song-result {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 14px 16px;
  border-radius: 18px;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease,
    background 0.25s ease;
}

.song-result::before,
.selected-song::before,
.leaderboard-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent,
    rgba(255, 244, 251, 0.08),
    transparent
  );
  translate: -120% 0;
  pointer-events: none;
}

.song-result:hover,
.song-result.is-selected {
  border-color: rgba(240, 117, 211, 0.65);
  background: rgba(240, 117, 211, 0.1);
  transform: translateY(-3px);
}

.song-main,
.song-sub {
  position: relative;
  z-index: 1;
}

.song-main {
  color: var(--cream);
  font-weight: 900;
}

.song-sub {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.counter-ring {
  --selected-progress: 0%;
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(
      circle at center,
      rgba(5, 2, 5, 0.95) 0 52%,
      transparent 53%
    ),
    conic-gradient(
      var(--pink-main) 0 var(--selected-progress),
      rgba(255, 255, 255, 0.08) var(--selected-progress) 100%
    );
  box-shadow: 0 0 38px rgba(240, 117, 211, 0.22);
  transition: background 0.35s ease, scale 0.25s var(--ease-elastic);
}

.counter-ring span {
  color: var(--rose);
  font-weight: 900;
}

.selected-list {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  list-style: none;
  counter-reset: selected;
}

.selected-song {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 12px;
  border-radius: 18px;
}

.selected-index {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-main), var(--coral));
  color: var(--black);
  font-weight: 900;
}

.selected-title {
  color: var(--cream);
  font-weight: 900;
}

.remove-song {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--rose);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.submit-vote {
  width: 100%;
  margin-top: 10px;
}

.submit-vote:disabled {
  cursor: not-allowed;
  filter: grayscale(0.65) brightness(0.72);
  opacity: 0.72;
  box-shadow: none;
}

.vote-status {
  display: none;
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(240, 117, 211, 0.26);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  line-height: 1.5;
}

.vote-status.is-visible {
  display: block;
}

.vote-status.is-success {
  border-color: rgba(240, 117, 211, 0.62);
  background: rgba(240, 117, 211, 0.12);
}

.leaderboard-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--rose);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.trust-card {
  padding: 24px;
}

.trust-card span,
.live-stamp,
.trend-pill {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-card h3 {
  margin: 18px 0 10px;
  color: var(--cream);
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1;
}

.trust-card p {
  color: var(--muted);
  line-height: 1.65;
}

.leaderboard-shell {
  display: grid;
  gap: 16px;
}

.leaderboard-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.live-stamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rose);
  transition: color 0.25s ease, transform 0.25s var(--ease-out);
}

.live-stamp span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 8px rgba(250, 115, 132, 0.12);
}

.live-stamp.is-warning {
  color: var(--coral);
  transform: translateY(-1px);
}

.live-stamp.is-warning span {
  background: var(--pink-main);
  box-shadow: 0 0 0 8px rgba(240, 117, 211, 0.12),
    0 0 28px rgba(240, 117, 211, 0.42);
}

.leaderboard-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.leaderboard-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  min-height: 96px;
  isolation: isolate;
}

.rank {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--pink-main), var(--coral));
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
}

.leader-song {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
}

.leader-song strong {
  color: var(--cream);
  font-size: clamp(1.1rem, 4vw, 1.6rem);
  line-height: 1;
}

.leader-song em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.trend-pill {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(240, 117, 211, 0.28);
  background: rgba(5, 2, 5, 0.58);
}

.trend-up .trend-pill {
  color: #ffc1e8;
}

.trend-down .trend-pill {
  color: #fa7384;
}

.trend-new .trend-pill {
  color: #f075d3;
}

.score-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: var(--score-width);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink-main), var(--coral));
  box-shadow: 0 0 24px rgba(240, 117, 211, 0.4);
}

@media (min-width: 760px) {
  .feature-hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
    align-items: center;
  }

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

  .leaderboard-row {
    grid-template-columns: auto 1fr auto;
  }

  .trend-pill {
    grid-column: auto;
  }
}

@media (min-width: 980px) {
  .setlist-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.45fr);
    align-items: start;
  }

  .selection-panel {
    position: sticky;
    top: 118px;
  }
}

@media (max-width: 760px) {
  .feature-hero {
    padding-top: 235px;
  }

  .feature-actions,
  .leaderboard-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .song-result,
  .selected-song {
    grid-template-columns: 1fr;
  }

  .remove-song {
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .feature-hero::before {
    animation: float-soft 7s ease-in-out infinite;
  }

  .feature-hero::after {
    animation: float-soft 8s ease-in-out infinite reverse;
  }

  .feature-live-card,
  .vote-panel,
  .selection-panel,
  .leaderboard-toolbar,
  .trust-card {
    animation: soft-card-glow 5.4s ease-in-out infinite;
  }

  .live-dot,
  .live-stamp span {
    animation: live-pulse 1.5s ease-in-out infinite;
  }

  .sound-bars span {
    animation: sound-rise 0.9s ease-in-out infinite alternate;
  }

  .sound-bars span:nth-child(2) {
    animation-delay: 0.12s;
  }
  .sound-bars span:nth-child(3) {
    animation-delay: 0.24s;
  }
  .sound-bars span:nth-child(4) {
    animation-delay: 0.36s;
  }

  .search-orb {
    animation: search-pulse 2.4s ease-in-out infinite;
  }

  .song-result:hover::before,
  .selected-song:hover::before,
  .leaderboard-row:hover::before {
    animation: feature-sweep 0.8s var(--ease-out);
  }

  .selected-song,
  .leaderboard-row {
    animation: row-enter 0.45s var(--ease-elastic) both;
  }

  .counter-ring {
    animation: shine-spin 5s linear infinite;
  }

  .leaderboard-row {
    animation: row-enter 0.5s var(--ease-elastic) both,
      leaderboard-breathe 4.2s ease-in-out infinite;
  }

  .leaderboard-row:nth-child(2) {
    animation-delay: 0.04s, 0.2s;
  }
  .leaderboard-row:nth-child(3) {
    animation-delay: 0.08s, 0.4s;
  }
  .leaderboard-row:nth-child(4) {
    animation-delay: 0.12s, 0.6s;
  }
  .leaderboard-row:nth-child(5) {
    animation-delay: 0.16s, 0.8s;
  }
  .leaderboard-row:nth-child(6) {
    animation-delay: 0.2s, 1s;
  }
  .leaderboard-row:nth-child(7) {
    animation-delay: 0.24s, 1.2s;
  }
  .leaderboard-row:nth-child(8) {
    animation-delay: 0.28s, 1.4s;
  }
  .leaderboard-row:nth-child(9) {
    animation-delay: 0.32s, 1.6s;
  }
  .leaderboard-row:nth-child(10) {
    animation-delay: 0.36s, 1.8s;
  }

  .score-bar {
    animation: score-grow 0.8s var(--ease-out) both;
  }
}

@keyframes live-pulse {
  0%,
  100% {
    scale: 1;
    opacity: 0.86;
  }
  50% {
    scale: 1.18;
    opacity: 1;
  }
}

@keyframes sound-rise {
  from {
    height: 12px;
  }
  to {
    height: 42px;
  }
}

@keyframes search-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(240, 117, 211, 0);
  }
  50% {
    box-shadow: 0 0 26px rgba(240, 117, 211, 0.42);
  }
}

@keyframes feature-sweep {
  from {
    translate: -120% 0;
  }
  to {
    translate: 120% 0;
  }
}

@keyframes row-enter {
  from {
    opacity: 0;
    translate: 0 14px;
    scale: 0.98;
  }
  to {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

@keyframes leaderboard-breathe {
  0%,
  100% {
    border-color: rgba(240, 117, 211, 0.18);
  }
  50% {
    border-color: rgba(240, 117, 211, 0.42);
  }
}

@keyframes score-grow {
  from {
    width: 0;
  }
  to {
    width: var(--score-width);
  }
}

/* Final public polish: progress, particles, ripples, magnetic motion */
.page-ready body {
  transition: opacity 0.42s ease;
}

.launch-curtain {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: radial-gradient(
      circle at 50% 45%,
      rgba(240, 117, 211, 0.24),
      transparent 20rem
    ),
    linear-gradient(135deg, rgba(5, 2, 5, 0.96), rgba(19, 5, 16, 0.98));
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.55s ease, filter 0.55s ease, scale 0.55s var(--ease-out);
}

.launch-curtain::before,
.launch-curtain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.launch-curtain::before {
  background: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle, #000 0 42%, transparent 74%);
}

.launch-curtain::after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 244, 251, 0.18),
    transparent
  );
  translate: -120% 0;
  animation: launch-scan 1.15s var(--ease-out) infinite;
}

.launch-curtain.is-done {
  opacity: 0;
  filter: blur(12px);
  scale: 1.04;
}

.launch-badge {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 16px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 6rem);
  letter-spacing: var(--title-tracking);
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 40px rgba(240, 117, 211, 0.42);
}

.launch-badge img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(240, 117, 211, 0.48);
}

.launch-line {
  position: absolute;
  left: 50%;
  bottom: 18vh;
  width: min(320px, 70vw);
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  translate: -50% 0;
  overflow: hidden;
}

.launch-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--pink-main),
    var(--coral),
    var(--rose)
  );
  transform-origin: left center;
  animation: launch-load 0.95s var(--ease-out) forwards;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 3px;
  transform-origin: left center;
  scale: 0 1;
  background: linear-gradient(
    90deg,
    var(--pink-main),
    var(--coral),
    var(--rose)
  );
  box-shadow: 0 0 22px rgba(240, 117, 211, 0.7);
  pointer-events: none;
}

.ambient-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.62;
}

.ambient-particles span {
  position: absolute;
  left: var(--particle-x);
  bottom: -8vh;
  width: var(--particle-size);
  height: var(--particle-size);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 244, 251, 0.58),
    rgba(240, 117, 211, 0.22),
    transparent 68%
  );
  filter: blur(0.4px);
  animation: particle-float var(--particle-duration) linear infinite;
  animation-delay: calc(var(--particle-delay) * -1);
}

.cursor-spark {
  position: fixed;
  z-index: 70;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--rose),
    var(--pink-main) 48%,
    transparent 72%
  );
  box-shadow: 0 0 18px rgba(240, 117, 211, 0.68);
  pointer-events: none;
  translate: -50% -50%;
  animation: spark-pop 0.78s var(--ease-out) forwards;
}

.ui-ripple {
  position: absolute;
  z-index: 4;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 244, 251, 0.42);
  pointer-events: none;
  translate: -50% -50%;
  animation: ripple-bloom 0.7s var(--ease-out) forwards;
}

a,
button,
summary,
.song-result,
.leaderboard-row {
  position: relative;
}

.magnetic-ready {
  translate: var(--magnet-x, 0) var(--magnet-y, 0);
  transition: translate 0.2s var(--ease-out), transform 0.25s ease,
    box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

@keyframes particle-float {
  0% {
    transform: translate3d(0, 0, 0) scale(0.55);
    opacity: 0;
  }
  14% {
    opacity: 0.72;
  }
  70% {
    opacity: 0.5;
  }
  100% {
    transform: translate3d(18vw, -118vh, 0) scale(1.25);
    opacity: 0;
  }
}

@keyframes launch-scan {
  from {
    translate: -120% 0;
  }
  to {
    translate: 120% 0;
  }
}

@keyframes launch-load {
  from {
    scale: 0 1;
  }
  to {
    scale: 1 1;
  }
}

@keyframes spark-pop {
  0% {
    transform: translate3d(0, 0, 0) scale(0.45);
    opacity: 0.8;
  }
  100% {
    transform: translate3d(var(--spark-x), var(--spark-y), 0) scale(0);
    opacity: 0;
  }
}

@keyframes ripple-bloom {
  from {
    scale: 0;
    opacity: 0.55;
  }
  to {
    scale: 18;
    opacity: 0;
  }
}

/* State animations for dynamic setlist interactions */
.song-result,
.selected-song,
.leaderboard-row {
  animation-delay: calc(var(--item-index, 0) * 42ms);
}

.counter-ring.is-bumping {
  animation: counter-bump 0.42s var(--ease-elastic);
}

.leaderboard-row.is-refreshing {
  animation-name: row-enter, leaderboard-breathe, leaderboard-flash;
  animation-duration: 0.5s, 4.2s, 0.9s;
  animation-timing-function: var(--ease-elastic), ease-in-out, ease-out;
  animation-fill-mode: both, none, both;
  animation-delay: calc(var(--item-index, 0) * 42ms),
    calc(var(--item-index, 0) * 80ms), calc(var(--item-index, 0) * 42ms);
}

.vote-confetti {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  overflow: hidden;
}

.vote-confetti span {
  position: absolute;
  width: 9px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--pink-main), var(--coral));
  box-shadow: 0 0 16px rgba(240, 117, 211, 0.35);
  animation: confetti-burst 1s var(--ease-out) forwards;
  animation-delay: var(--burst-delay);
}

.vote-confetti span:nth-child(3n) {
  background: var(--rose);
}

.vote-confetti span:nth-child(4n) {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

@keyframes counter-bump {
  0% {
    scale: 1;
  }
  45% {
    scale: 1.18;
  }
  100% {
    scale: 1;
  }
}

@keyframes leaderboard-flash {
  0% {
    background-color: rgba(240, 117, 211, 0.18);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.048);
  }
}

@keyframes confetti-burst {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  100% {
    transform: translate3d(var(--burst-x), var(--burst-y), 0)
      rotate(var(--burst-r));
    opacity: 0;
  }
}

/* Premium motion layer for public launch */
.aurora-stack {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.58;
  mix-blend-mode: screen;
}

.aurora-stack span {
  position: absolute;
  width: min(52vw, 640px);
  height: min(52vw, 640px);
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.42;
  transform: translate3d(0, 0, 0);
}

.aurora-stack span:nth-child(1) {
  left: -12vw;
  top: 12vh;
  background: radial-gradient(
    circle,
    rgba(240, 117, 211, 0.46),
    transparent 68%
  );
}

.aurora-stack span:nth-child(2) {
  right: -16vw;
  top: 2vh;
  background: radial-gradient(
    circle,
    rgba(250, 115, 132, 0.38),
    transparent 70%
  );
}

.aurora-stack span:nth-child(3) {
  left: 32vw;
  bottom: -20vh;
  background: radial-gradient(
    circle,
    rgba(255, 193, 232, 0.28),
    transparent 72%
  );
}

.back-top {
  position: fixed;
  right: clamp(16px, 4vw, 34px);
  bottom: clamp(16px, 4vw, 34px);
  z-index: 60;
  min-width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(240, 117, 211, 0.34);
  border-radius: 50%;
  color: var(--black);
  background: linear-gradient(135deg, var(--pink-main), var(--coral));
  box-shadow: 0 20px 60px rgba(240, 117, 211, 0.34);
  font-size: 0;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  translate: 0 18px;
  scale: 0.88;
  overflow: hidden;
  transition: opacity 0.25s ease, translate 0.25s var(--ease-out),
    scale 0.25s var(--ease-elastic), box-shadow 0.25s ease;
}

.back-top::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(
    from 90deg,
    transparent,
    rgba(255, 244, 251, 0.7),
    transparent 34%
  );
  opacity: 0.58;
}

.back-top::after {
  content: "";
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--black);
  border-left: 2px solid var(--black);
  rotate: 45deg;
  translate: 0 3px;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  translate: 0 0;
  scale: 1;
}

.back-top:hover {
  scale: 1.06;
  box-shadow: 0 24px 78px rgba(250, 115, 132, 0.44);
}

.vote-panel::after,
.selection-panel::after,
.leaderboard-toolbar::after,
.trust-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 244, 251, 0.06),
      transparent
    ),
    radial-gradient(
      circle at var(--glow-x, 50%) var(--glow-y, 0%),
      rgba(240, 117, 211, 0.11),
      transparent 14rem
    );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.vote-panel:hover::after,
.selection-panel:hover::after,
.leaderboard-toolbar:hover::after,
.trust-card:hover::after,
.vote-panel.is-searching::after,
.selection-panel.is-complete::after {
  opacity: 1;
}

.vote-panel > *,
.selection-panel > *,
.leaderboard-toolbar > *,
.trust-card > * {
  position: relative;
  z-index: 1;
}

.vote-panel.is-searching {
  border-color: rgba(255, 193, 232, 0.58);
  box-shadow: 0 28px 96px rgba(240, 117, 211, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.vote-panel.is-searching .search-input-wrap input {
  border-color: rgba(255, 193, 232, 0.72);
  box-shadow: 0 0 0 5px rgba(240, 117, 211, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.selection-panel.is-complete {
  border-color: rgba(240, 117, 211, 0.66);
  background: radial-gradient(
      circle at 78% 0%,
      rgba(250, 115, 132, 0.24),
      transparent 16rem
    ),
    radial-gradient(
      circle at 12% 8%,
      rgba(240, 117, 211, 0.22),
      transparent 18rem
    ),
    rgba(255, 255, 255, 0.066);
  box-shadow: 0 34px 110px rgba(240, 117, 211, 0.2);
}

.selection-panel.has-voted {
  border-color: rgba(255, 193, 232, 0.46);
}

.submit-vote.is-armed {
  filter: saturate(1.12);
  transform: translateY(-2px);
  box-shadow: 0 30px 92px rgba(240, 117, 211, 0.42),
    0 0 0 1px rgba(255, 244, 251, 0.18) inset;
}

.submit-vote[aria-busy="true"] {
  cursor: wait;
}

.submit-vote[aria-busy="true"]::after {
  content: "";
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border: 2px solid rgba(5, 2, 5, 0.28);
  border-top-color: var(--black);
  border-radius: 50%;
}

.vote-status.is-pulsing {
  animation: status-pulse 0.5s var(--ease-out);
}

.vote-status.is-info {
  border-color: rgba(255, 193, 232, 0.34);
}

.selected-song:hover .selected-index,
.leaderboard-row:hover .rank {
  scale: 1.05;
  box-shadow: 0 0 30px rgba(240, 117, 211, 0.38);
}

.selected-index,
.rank {
  transition: scale 0.22s var(--ease-elastic), box-shadow 0.22s ease;
}

.remove-song {
  transition: border-color 0.24s ease, background 0.24s ease, color 0.24s ease,
    transform 0.24s var(--ease-out);
}

.remove-song:hover {
  border-color: rgba(250, 115, 132, 0.72);
  color: var(--cream);
  background: rgba(250, 115, 132, 0.12);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: no-preference) {
  .aurora-stack span:nth-child(1) {
    animation: aurora-drift-a 12s ease-in-out infinite alternate;
  }

  .aurora-stack span:nth-child(2) {
    animation: aurora-drift-b 14s ease-in-out infinite alternate;
  }

  .aurora-stack span:nth-child(3) {
    animation: aurora-drift-c 16s ease-in-out infinite alternate;
  }

  .back-top::before,
  .submit-vote[aria-busy="true"]::after {
    animation: shine-spin 1.2s linear infinite;
  }

  .back-top.is-visible {
    animation: backtop-float 2.8s ease-in-out infinite;
  }

  .vote-panel.is-searching::after {
    animation: panel-scan 1.05s var(--ease-out) infinite;
  }

  .vote-panel.is-searching .search-orb {
    animation: search-spin 0.76s linear infinite;
  }

  .selection-panel.is-complete {
    animation: complete-glow 2.8s ease-in-out infinite;
  }

  .submit-vote.is-armed {
    animation: armed-glow 1.6s ease-in-out infinite;
  }

  .song-result {
    animation: row-enter 0.42s var(--ease-elastic) both;
    animation-delay: calc(var(--item-index, 0) * 42ms);
  }

  .song-result.is-selected .song-sub {
    animation: text-glow 1.8s ease-in-out infinite;
  }
}

@media (max-width: 520px) {
  .back-top {
    right: 14px;
    bottom: 14px;
    min-width: 52px;
    height: 52px;
    font-size: 0;
  }
}

@keyframes aurora-drift-a {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(10vw, -6vh, 0) scale(1.16);
  }
}

@keyframes aurora-drift-b {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-11vw, 8vh, 0) scale(1.08);
  }
}

@keyframes aurora-drift-c {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(4vw, -12vh, 0) scale(1.2);
  }
}

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

@keyframes panel-scan {
  0% {
    background-position: -140% 0, 50% 0;
  }
  100% {
    background-position: 140% 0, 50% 0;
  }
}

@keyframes search-spin {
  from {
    rotate: 0deg;
    box-shadow: 0 0 0 rgba(240, 117, 211, 0);
  }
  to {
    rotate: 360deg;
    box-shadow: 0 0 28px rgba(240, 117, 211, 0.36);
  }
}

@keyframes complete-glow {
  0%,
  100% {
    box-shadow: 0 34px 110px rgba(240, 117, 211, 0.18);
  }
  50% {
    box-shadow: 0 34px 130px rgba(250, 115, 132, 0.3);
  }
}

@keyframes armed-glow {
  0%,
  100% {
    box-shadow: 0 30px 92px rgba(240, 117, 211, 0.36),
      0 0 0 1px rgba(255, 244, 251, 0.18) inset;
  }
  50% {
    box-shadow: 0 34px 112px rgba(250, 115, 132, 0.48),
      0 0 0 1px rgba(255, 244, 251, 0.3) inset;
  }
}

@keyframes status-pulse {
  0% {
    transform: translateY(0) scale(0.98);
    opacity: 0.76;
  }
  60% {
    transform: translateY(-3px) scale(1.012);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
