:root {
  --ink: #f7f2ff;
  --muted: #b9abc6;
  --paper: #0c0711;
  --paper-2: #15101d;
  --silver: #f6f1ff;
  --chrome: #cfc5da;
  --violet: #d67bff;
  --magenta: #ff7bd5;
  --plum: #351a46;
  --night: #08050c;
  --line: rgba(246, 241, 255, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --mouse-x: 0px;
  --mouse-y: 0px;
  --glow-x: 50vw;
  --glow-y: 50vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 64% 8%, rgba(214, 123, 255, 0.22), transparent 26%),
    radial-gradient(circle at 24% 34%, rgba(255, 123, 213, 0.16), transparent 26%),
    var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 12%, rgba(244, 198, 255, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 85% 72%, rgba(255, 255, 255, 0.6) 0 1px, transparent 2px);
  background-size: 160px 160px, 220px 220px, 190px 190px;
  animation: star-drift 18s linear infinite;
  opacity: 0.36;
}

.cursor-glow {
  position: fixed;
  left: var(--glow-x);
  top: var(--glow-y);
  z-index: 20;
  width: 260px;
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(214, 123, 255, 0.22), rgba(255, 123, 213, 0.08) 42%, transparent 70%);
  mix-blend-mode: screen;
  transition: opacity 200ms ease;
}

.cursor-glow.is-visible {
  opacity: 1;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(8, 5, 12, 0.86), rgba(8, 5, 12, 0));
}

.brand,
.nav-links,
.nav-cta,
.button,
.event-card a,
.join-form button {
  font-weight: 800;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(214, 123, 255, 0.12));
  font-family: "Cinzel", serif;
  animation: chrome-pulse 3.6s ease-in-out infinite;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.92rem;
}

.nav-links a {
  opacity: 0.82;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  justify-self: end;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 34px rgba(214, 123, 255, 0.22);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 72px) 56px;
  color: #fff;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  right: 18%;
  top: 34%;
  width: clamp(92px, 14vw, 170px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(214, 123, 255, 0.72) 34%, rgba(30, 20, 42, 0.9) 64%, rgba(255, 255, 255, 0.72)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.28) 0 2px, transparent 2px 14px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 14px);
  box-shadow: 0 0 42px rgba(255, 123, 213, 0.42), 0 0 90px rgba(214, 123, 255, 0.28);
  opacity: 0.86;
  transform: translate3d(calc(var(--mouse-x) * -0.45), calc(var(--mouse-y) * -0.55), 0);
  animation: disco-float 5.8s ease-in-out infinite, disco-spin 8s linear infinite;
}

.hero::after {
  right: 12%;
  top: 17%;
  width: 82px;
  height: 82px;
  background:
    radial-gradient(circle at 20% 20%, #fff 0 2px, transparent 3px),
    radial-gradient(circle at 70% 30%, #fff 0 1px, transparent 3px),
    radial-gradient(circle at 50% 72%, #f7caff 0 2px, transparent 4px);
  transform: translate3d(calc(var(--mouse-x) * -0.9), calc(var(--mouse-y) * -0.8), 0);
  animation: sparkle-pop 2.4s ease-in-out infinite;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translate3d(calc(var(--mouse-x) * -0.18), calc(var(--mouse-y) * -0.12), 0);
  transition: transform 180ms ease-out;
}

.hero-overlay {
  background:
    radial-gradient(circle at 52% 52%, rgba(214, 123, 255, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(8, 5, 12, 0.96) 0%, rgba(8, 5, 12, 0.76) 42%, rgba(8, 5, 12, 0.32) 74%),
    linear-gradient(180deg, rgba(8, 5, 12, 0.18) 0%, rgba(8, 5, 12, 0.74) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  transform: translate3d(calc(var(--mouse-x) * 0.12), calc(var(--mouse-y) * 0.1), 0);
  transition: transform 180ms ease-out;
}

.light-ribbons,
.spark-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.light-ribbons span {
  position: absolute;
  width: 34vw;
  min-width: 260px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), rgba(244, 198, 255, 0.72), transparent);
  box-shadow: 0 0 22px rgba(244, 198, 255, 0.44);
  opacity: 0.58;
  transform: rotate(-12deg);
  animation: ribbon-slide 6s ease-in-out infinite;
}

.light-ribbons span:nth-child(1) {
  top: 19%;
  right: -8%;
}

.light-ribbons span:nth-child(2) {
  top: 45%;
  right: 8%;
  animation-delay: -2.1s;
}

.light-ribbons span:nth-child(3) {
  top: 72%;
  right: -12%;
  animation-delay: -3.7s;
}

.spark-field span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 16px #fff, 0 0 32px rgba(244, 198, 255, 0.8);
  animation: spark-float 4.8s ease-in-out infinite;
}

.spark-field span:nth-child(1) { left: 12%; top: 20%; }
.spark-field span:nth-child(2) { left: 58%; top: 18%; animation-delay: -1.2s; }
.spark-field span:nth-child(3) { left: 78%; top: 36%; animation-delay: -2.1s; }
.spark-field span:nth-child(4) { left: 44%; top: 64%; animation-delay: -3.2s; }
.spark-field span:nth-child(5) { left: 88%; top: 68%; animation-delay: -1.8s; }
.spark-field span:nth-child(6) { left: 18%; top: 78%; animation-delay: -2.8s; }

.eyebrow {
  margin: 0 0 14px;
  color: #f4c6ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #f4c6ff;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cinzel", "Space Grotesk", serif;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 8vw, 7.4rem);
  text-transform: uppercase;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.24), 0 0 50px rgba(214, 123, 255, 0.24);
}

h2 {
  max-width: 760px;
  font-size: clamp(2.15rem, 4.2vw, 4.7rem);
}

h3 {
  font-size: clamp(1.45rem, 2.6vw, 2.25rem);
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.button::after,
.event-card::after,
.perk::after,
.vibe-panel::after {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255, 255, 255, 0.34), transparent 34%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 44px rgba(214, 123, 255, 0.26);
}

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

.button.primary {
  background: linear-gradient(135deg, #fff, #d8cbeb 46%, #f4a4ff);
  color: #140d1c;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.hero-ticket {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 56px;
  z-index: 1;
  display: grid;
  gap: 6px;
  width: min(260px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid rgba(246, 241, 255, 0.34);
  background: rgba(20, 10, 28, 0.54);
  backdrop-filter: blur(18px);
  transform: translate3d(calc(var(--mouse-x) * -0.22), calc(var(--mouse-y) * -0.2), 0);
  transition: transform 180ms ease-out, box-shadow 220ms ease;
  animation: ticket-float 4.8s ease-in-out infinite;
}

.hero-ticket:hover {
  box-shadow: 0 24px 70px rgba(214, 123, 255, 0.28);
}

.hero-ticket strong {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
}

.ticket-label {
  color: #f4c6ff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ticker {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 16px clamp(20px, 5vw, 72px);
  background: #060408;
  color: #fff;
  scrollbar-width: none;
}

.ticker span {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  animation: ticker-breathe 3.5s ease-in-out infinite;
}

.ticker span:nth-child(2n) {
  animation-delay: -1.4s;
}

.section,
.split-section,
.gallery-section,
.join-section {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 30px;
}

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

.event-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 410px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.event-card:hover,
.perk:hover,
.vibe-panel:hover {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 30px 90px rgba(214, 123, 255, 0.22);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-8px);
}

.event-card > *,
.perk > *,
.vibe-panel > * {
  position: relative;
  z-index: 1;
}

.event-card.featured {
  background:
    linear-gradient(145deg, rgba(246, 241, 255, 0.16), rgba(214, 123, 255, 0.1)),
    var(--night);
  color: #fff;
}

.event-card.coral {
  background: linear-gradient(145deg, rgba(65, 28, 82, 0.94), rgba(214, 123, 255, 0.16));
}

.event-card.mint {
  background: linear-gradient(145deg, rgba(20, 18, 34, 0.96), rgba(255, 123, 213, 0.14));
}

.event-card p {
  color: inherit;
  line-height: 1.65;
}

.event-card p,
.event-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.event-date {
  margin: 0 0 22px;
  font-weight: 800;
}

.event-card a {
  align-self: flex-start;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 180ms ease, background 180ms ease;
}

.event-card a:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.18);
}

.featured a {
  background: linear-gradient(135deg, #fff, #f0baff);
  color: #140d1c;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-copy p:not(.eyebrow) {
  max-width: 570px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.perk-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.perk {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 8px 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.perk span {
  grid-row: span 2;
  color: #f4c6ff;
  font-weight: 800;
}

.perk strong {
  font-size: 1.08rem;
}

.perk p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.includes-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 123, 213, 0.12), transparent 28%),
    radial-gradient(circle at 86% 82%, rgba(244, 198, 255, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.06)),
    var(--night);
  border-bottom: 1px solid var(--line);
}

.includes-kicker {
  max-width: 760px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.65;
}

.includes-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 16px;
}

.includes-board {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  gap: 16px;
}

.includes-menu {
  display: grid;
  gap: 10px;
}

.includes-menu button {
  display: grid;
  grid-template-columns: 42px 1fr;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.includes-menu button:hover,
.includes-menu button:focus-visible,
.includes-menu button[aria-selected="true"] {
  outline: 0;
  border-color: rgba(244, 198, 255, 0.56);
  background: rgba(244, 198, 255, 0.14);
  color: #fff;
  transform: translateX(5px);
}

.includes-menu span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f4c6ff;
  font-size: 0.72rem;
}

.includes-stage {
  min-width: 0;
}

.includes-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 360px;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 36%),
    radial-gradient(circle at 82% 12%, rgba(244, 198, 255, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.06);
  color: #fff;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

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

.includes-panel h3 {
  max-width: 760px;
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
  line-height: 0.98;
}

.includes-lede {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
  line-height: 1.65;
}

.includes-panel::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 14px 14px;
  border-radius: 50%;
  opacity: 0.34;
  pointer-events: none;
}

.includes-panel.games {
  background:
    linear-gradient(135deg, rgba(244, 198, 255, 0.1), transparent 38%),
    radial-gradient(circle at 18% 12%, rgba(255, 123, 213, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.055);
}

.includes-panel.schedule {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 40%),
    radial-gradient(circle at 72% 74%, rgba(246, 241, 255, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.055);
}

.includes-panel:hover {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 30px 90px rgba(214, 123, 255, 0.2);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-8px);
}

.includes-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.includes-tags span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.inclusion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.inclusion-chips span {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.inclusion-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
}

.inclusion-meta span {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 16px;
  background: rgba(9, 6, 14, 0.82);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.includes-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.includes-list li {
  position: relative;
  min-height: 40px;
  padding: 10px 12px 10px 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.includes-list li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 18px;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(244, 198, 255, 0.78);
  background: rgba(244, 198, 255, 0.24);
  transform: rotate(45deg);
}

.includes-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.includes-note strong {
  color: #fff;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.075);
}

.price-grid div {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.price-grid div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.price-grid span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-grid strong {
  font-family: "Cinzel", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  color: #fff;
}

.pass-value-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(244, 198, 255, 0.16), transparent 28%),
    radial-gradient(circle at 84% 72%, rgba(255, 123, 213, 0.12), transparent 30%),
    #0c0711;
  color: #fff;
  border-bottom: 1px solid var(--line);
}

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

.pass-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  min-height: 230px;
  align-content: end;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(244, 198, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 40%),
    radial-gradient(circle at 86% 14%, rgba(214, 123, 255, 0.2), transparent 32%),
    rgba(255, 255, 255, 0.06);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.pass-card::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 22px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.42;
}

.pass-card:hover {
  border-color: rgba(244, 198, 255, 0.54);
  box-shadow: 0 30px 90px rgba(214, 123, 255, 0.18);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-8px);
}

.pass-card span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pass-card strong {
  position: relative;
  z-index: 1;
  font-family: "Cinzel", serif;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 0.9;
  color: #fff;
}

.pass-card p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.gallery-section {
  background:
    radial-gradient(circle at 76% 24%, rgba(214, 123, 255, 0.16), transparent 34%),
    linear-gradient(180deg, #09060f 0%, #130b1c 52%, #07050a 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.7fr) minmax(0, 0.7fr);
  grid-auto-rows: clamp(180px, 18vw, 260px);
  gap: 18px;
}

.vibe-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  min-height: 100%;
  padding: clamp(18px, 2.2vw, 28px);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(7, 4, 11, 0.02), rgba(7, 4, 11, 0.04) 52%, rgba(7, 4, 11, 0.12)),
    var(--panel-scene),
    var(--panel-color);
  background-size: cover, cover, cover;
  background-position: center, left bottom, center;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  filter: saturate(1.04) contrast(1.03);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, filter 220ms ease;
}

.vibe-panel::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 0;
  background: transparent;
  opacity: 1;
  transform: translate3d(calc(var(--mouse-x) * 0.08), calc(var(--mouse-y) * 0.08), 0);
}

.vibe-panel span {
  position: relative;
  z-index: 1;
  font-family: "Space Grotesk", sans-serif;
  max-width: 90%;
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.78);
}

.dance {
  grid-row: span 2;
  --panel-color: linear-gradient(145deg, #0b0710, #6a2b82 52%, #f1d8ff);
  --panel-scene: url("assets/dance_floor.png");
  background-position: center, left bottom, center;
}

.photo {
  --panel-color: linear-gradient(145deg, #110b18, #b46dce);
  --panel-scene: url("assets/disco_photos.png");
}

.talk {
  --panel-color: linear-gradient(145deg, #22122d, #ff7bd5);
  --panel-scene: url("assets/grand_entries.png");
  background-position: center, left bottom, center;
}

.fits {
  grid-column: span 2;
  --panel-color: linear-gradient(145deg, #08050c, #42304e 58%, #f6f1ff);
  --panel-scene: url("assets/dress_code_fits.png");
  background-position: center, left bottom, center;
}

.join-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
  background:
    radial-gradient(circle at 78% 20%, rgba(214, 123, 255, 0.2), transparent 28%),
    var(--night);
  color: #fff;
}

.join-section p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.75;
}

.join-form {
  position: relative;
  overflow: visible;
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.join-form:hover {
  border-color: rgba(255, 255, 255, 0.38);
}

.join-form > * {
  position: relative;
  z-index: 1;
}

.registration-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 2px;
}

.registration-heading .eyebrow {
  margin: 0;
}

.registration-heading h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.45rem, 2.7vw, 2.3rem);
  line-height: 1.05;
}

.progressive-field {
  animation: revealStep 240ms ease both;
}

.progressive-field[hidden],
.partner-step-field[hidden] {
  display: none !important;
}

@keyframes revealStep {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.join-form label,
.form-field,
.entry-options legend {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.join-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  color-scheme: dark;
  font: inherit;
  padding: 0 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.join-form input:focus {
  outline: 0;
  border-color: rgba(244, 198, 255, 0.78);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 4px rgba(214, 123, 255, 0.16);
}

.join-form input.has-error {
  border-color: rgba(255, 166, 166, 0.86);
  box-shadow: 0 0 0 4px rgba(255, 86, 86, 0.14);
}

.join-form input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.field-error {
  display: none;
  min-height: 0;
  color: #ffb8b8;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.field-error:not(:empty) {
  display: block;
}

.field-label {
  display: block;
}

.age-field {
  position: relative;
  z-index: 2;
}

.age-field.is-open {
  z-index: 30;
}

.age-select-trigger,
.age-options button {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.age-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.age-field:not(.has-value) #selected-age {
  color: rgba(255, 255, 255, 0.5);
}

.age-select-trigger:focus-visible {
  outline: 0;
  border-color: rgba(244, 198, 255, 0.78);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 4px rgba(214, 123, 255, 0.16);
}

.select-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.age-field.is-open .select-chevron {
  transform: rotate(225deg) translate(-2px, -2px);
}

.age-options {
  position: static;
  z-index: 40;
  display: none;
  margin-top: 6px;
  overflow: hidden;
  border: 1px solid rgba(244, 198, 255, 0.54);
  background: #1a1221;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.age-field.is-open .age-options {
  display: grid;
}

.age-options button {
  min-height: 42px;
  padding: 0 13px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a1221;
  color: #fff;
  transition: background 160ms ease, color 160ms ease;
}

.age-options button:last-child {
  border-bottom: 0;
}

.age-options button:hover,
.age-options button:focus-visible,
.age-options button[aria-selected="true"] {
  outline: 0;
  background: #5f5562;
  color: #fff;
}

.entry-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.entry-options legend {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  padding: 0;
}

.entry-options label {
  position: relative;
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.entry-options label:has(input:checked) {
  border-color: rgba(244, 198, 255, 0.78);
  background: rgba(244, 198, 255, 0.16);
  box-shadow: 0 0 0 4px rgba(214, 123, 255, 0.12);
}

.partner-gender-options label {
  cursor: default;
}

.partner-gender-options:not(.is-auto-selected) label {
  opacity: 0.62;
}

.entry-options input[type="radio"] {
  position: absolute;
  width: 1px;
  min-height: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  appearance: none;
}

.entry-options span {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
}

.entry-options span::before {
  content: "";
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 4px rgba(20, 13, 28, 0.94);
}

.entry-options input[type="radio"]:checked + span::before {
  background: linear-gradient(135deg, #fff, #f4a4ff);
  border-color: #fff;
}

.entry-options input[type="radio"]:focus-visible + span::before {
  box-shadow:
    inset 0 0 0 4px rgba(20, 13, 28, 0.94),
    0 0 0 4px rgba(214, 123, 255, 0.18);
}

.couple-fields {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(244, 198, 255, 0.26);
  background: rgba(244, 198, 255, 0.08);
}

.couple-fields[hidden] {
  display: none;
}

.couple-fields-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  font-weight: 900;
}

.couple-fields-header small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.terms-gate {
  display: grid;
  gap: 5px;
  padding: 12px 13px;
  border: 1px solid rgba(244, 198, 255, 0.28);
  background: rgba(244, 198, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.45;
}

.terms-gate p {
  margin: 0;
}

.terms-link {
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.terms-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}

.terms-status {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.74rem;
  font-weight: 800;
}

.terms-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 900;
}

.terms-checkbox input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 0;
  accent-color: #f4a4ff;
  cursor: pointer;
}

.terms-checkbox input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.terms-checkbox:has(input:disabled) {
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.5);
}

.terms-checkbox input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 3px;
}

.join-form > button[type="submit"] {
  min-height: 50px;
  border: 0;
  background: linear-gradient(135deg, #fff, #d8cbeb 46%, #f4a4ff);
  color: #140d1c;
  cursor: pointer;
  font: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.join-form > button[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.44;
  transform: none;
  box-shadow: none;
}

.join-form > button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(214, 123, 255, 0.24);
}

.join-form > button[type="submit"]:disabled:hover {
  transform: none;
  box-shadow: none;
}

.form-status {
  min-height: 0;
  margin: 0;
  color: #f4c6ff;
  font-size: 0.92rem;
  line-height: 1.45;
}

.form-status:empty {
  display: none;
}

.terms-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  padding: 18px;
  overflow: hidden;
}

.terms-modal.is-open {
  display: grid;
  place-items: center;
}

.terms-modal-open {
  overflow: hidden;
}

.terms-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 3, 8, 0.78);
  backdrop-filter: blur(10px);
}

.terms-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(860px, 100%);
  height: min(88dvh, 780px);
  max-height: calc(100dvh - 36px);
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at 22% 0%, rgba(244, 198, 255, 0.17), transparent 34%),
    #120b18;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
  color: #fff;
  overflow: hidden;
}

.terms-dialog:focus {
  outline: none;
}

.terms-dialog-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.terms-dialog-header h2 {
  margin: 4px 0 0;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 0.95;
}

.terms-close {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 10px 14px;
  text-transform: uppercase;
}

.terms-close:focus-visible,
.terms-close:hover {
  outline: 0;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.18);
}

.terms-content {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px 24px 36px;
  scrollbar-color: rgba(244, 198, 255, 0.72) rgba(255, 255, 255, 0.08);
}

.terms-lead {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.terms-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 22px;
}

.terms-list > li {
  padding-left: 6px;
}

.terms-list h3,
.terms-acknowledgement h3 {
  margin: 0 0 6px;
  color: #fff;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 0.96rem;
  line-height: 1.3;
}

.terms-list ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}

.terms-acknowledgement {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(244, 198, 255, 0.3);
  background: rgba(244, 198, 255, 0.1);
}

.terms-acknowledgement p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: #060408;
  color: rgba(255, 255, 255, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes star-drift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 160px 160px, -220px 220px, 190px -190px;
  }
}

@keyframes chrome-pulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(244, 198, 255, 0);
  }

  50% {
    box-shadow: 0 0 28px rgba(244, 198, 255, 0.34);
  }
}

@keyframes disco-float {
  0%, 100% {
    margin-top: 0;
  }

  50% {
    margin-top: -16px;
  }
}

@keyframes disco-spin {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 0 0, 0 56px, 56px 0;
  }
}

@keyframes sparkle-pop {
  0%, 100% {
    opacity: 0.52;
    filter: blur(0);
  }

  50% {
    opacity: 1;
    filter: blur(0.5px);
  }
}

@keyframes ribbon-slide {
  0%, 100% {
    translate: 0 0;
    opacity: 0.22;
  }

  50% {
    translate: -44px 18px;
    opacity: 0.72;
  }
}

@keyframes spark-float {
  0%, 100% {
    transform: translateY(0) scale(0.72);
    opacity: 0.28;
  }

  50% {
    transform: translateY(-18px) scale(1);
    opacity: 0.95;
  }
}

@keyframes ticket-float {
  0%, 100% {
    margin-bottom: 0;
  }

  50% {
    margin-bottom: 10px;
  }
}

@keyframes ticker-breathe {
  0%, 100% {
    border-color: rgba(255, 255, 255, 0.18);
  }

  50% {
    border-color: rgba(244, 198, 255, 0.48);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .event-grid,
  .split-section,
  .includes-layout,
  .includes-board,
  .join-section {
    grid-template-columns: 1fr;
  }

  .event-card {
    min-height: 300px;
  }

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

  .dance,
  .fits {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .nav-cta {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 92vh;
    padding: 112px 18px 34px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 7, 13, 0.86), rgba(8, 7, 13, 0.48)),
      linear-gradient(180deg, rgba(8, 7, 13, 0.08), rgba(8, 7, 13, 0.7));
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero-ticket {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 28px;
    animation: none;
  }

  .section,
  .split-section,
  .includes-section,
  .gallery-section,
  .join-section {
    padding: 58px 18px;
  }

  .includes-panel {
    min-height: auto;
  }

  .includes-panel h3 {
    font-size: 2rem;
    line-height: 1.08;
  }

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

  .includes-menu button {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 74px;
  }

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

  .pass-value-grid {
    grid-template-columns: 1fr;
  }

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

  .price-grid div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }

  .entry-options {
    grid-template-columns: 1fr;
  }

  .terms-modal {
    padding: 8px;
  }

  .terms-dialog {
    width: 100%;
    height: calc(100dvh - 16px);
    max-height: calc(100dvh - 16px);
  }

  .terms-dialog-header {
    padding: 18px 16px 14px;
  }

  .terms-content {
    padding: 16px;
  }

  .dance,
  .fits {
    grid-column: auto;
  }

  .site-footer {
    flex-direction: column;
    padding: 22px 18px;
  }
}

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

  .event-card:hover,
  .perk:hover,
  .includes-panel:hover,
  .vibe-panel:hover,
  .join-form:hover,
  .button:hover,
  .nav-cta:hover {
    transform: none;
  }
}

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

  .hero-image,
  .hero-content,
  .hero-ticket,
  .hero::before,
  .hero::after {
    transform: none;
  }

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