:root {
  --bg: #0a0a0a;
  --surface: rgba(17, 17, 17, 0.78);
  --surface-strong: rgba(14, 14, 14, 0.95);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --primary: #ff0033;
  --accent: #ff0055;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 0 25px rgba(255, 0, 85, 0.45);
  --shadow-strong: 0 0 45px rgba(255, 0, 85, 0.7);
  --container: min(1120px, calc(100vw - 3rem));
  --nav-height: 88px;
  --stripe-angle: -3deg;
  --transition: 220ms ease;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Rajdhani", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255, 0, 85, 0.14), transparent 22%),
    radial-gradient(circle at left center, rgba(255, 0, 51, 0.08), transparent 28%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.speed-lines,
.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.speed-lines {
  background-image:
    linear-gradient(
      120deg,
      transparent 0%,
      transparent 44%,
      rgba(255, 255, 255, 0.03) 47%,
      transparent 50%,
      transparent 100%
    );
  background-size: 240px 240px;
  opacity: 0.8;
  animation: speedLines 13s linear infinite;
}

.page-glow {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 0, 85, 0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255, 0, 51, 0.12), transparent 24%);
  z-index: -3;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 30;
}

.navbar {
  width: var(--container);
  min-height: var(--nav-height);
  margin: 0.8rem auto 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.8rem 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07) 34%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(135deg, rgba(255, 0, 85, 0.09), rgba(255, 255, 255, 0.03) 44%, rgba(10, 10, 10, 0.56) 100%),
    rgba(8, 8, 8, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 20px rgba(255, 0, 85, 0.08);
  transition:
    padding var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
  isolation: isolate;
}

.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08) 30%, transparent 54%),
    linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.12) 34%, transparent 52%);
  opacity: 0.9;
}

.site-header.scrolled .navbar {
  padding: 0.85rem 1.1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.1) 36%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(135deg, rgba(255, 0, 85, 0.12), rgba(255, 255, 255, 0.02) 44%, rgba(10, 10, 10, 0.34) 100%),
    rgba(8, 8, 8, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(28px) saturate(175%);
  -webkit-backdrop-filter: blur(28px) saturate(175%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 20px 45px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(255, 0, 85, 0.16);
}

.site-header.scrolled .navbar::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.12) 32%, transparent 52%),
    linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.16) 34%, transparent 52%);
  opacity: 1;
}

.logo,
.navbar a {
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  max-width: min(14rem, 38vw);
  text-shadow: 0 0 18px rgba(255, 0, 85, 0.38);
}

.logo-image {
  width: 100%;
  height: auto;
  max-height: 3.1rem;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 0, 85, 0.16));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-dropdown-media {
  display: none;
}

.nav-mobile-controls {
  display: none;
  align-items: center;
  gap: 0.7rem;
}

.mobile-menu-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mobile-menu-panel {
  display: none;
}

.nav-links a {
  padding: 0.25rem 0;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.36);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  min-width: 9.25rem;
  padding: 0.66rem 1.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.nav-action::after {
  display: none;
}

.nav-ticket {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--text);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(255, 0, 85, 0.18);
}

.nav-join {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--text);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(255, 0, 85, 0.18);
}

.nav-action:hover,
.nav-action:focus-visible,
.nav-action.is-current {
  color: var(--text);
  transform: translateY(-2px);
  border-color: rgba(255, 0, 85, 0.5);
  box-shadow: 0 0 22px rgba(255, 0, 85, 0.28);
}

.nav-links a::after,
.ghost-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition);
  box-shadow: 0 0 10px rgba(255, 0, 85, 0.75);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.ghost-link:hover,
.ghost-link:focus-visible {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.ghost-link:hover::after,
.ghost-link:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  width: 2.9rem;
  height: 2.9rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
  position: relative;
  z-index: 7;
  border-radius: 0.95rem;
  -webkit-appearance: none;
  appearance: none;
  touch-action: manipulation;
}

.menu-toggle span {
  width: 1.5rem;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-height) + 3rem) 0 4rem;
  overflow: clip;
}

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

.hero-media {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.92) 15%, rgba(10, 10, 10, 0.38) 60%, rgba(10, 10, 10, 0.9) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0.82));
  isolation: isolate;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  background-color: #050505;
  filter: saturate(1.02) contrast(1.04);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: opacity, transform;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), #000 70%);
  opacity: 0.12;
}

.hero-overlay {
  background:
    linear-gradient(135deg, rgba(255, 0, 51, 0.1), transparent 22%),
    linear-gradient(180deg, rgba(10, 10, 10, 0) 10%, rgba(10, 10, 10, 0.92) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 12%;
  height: 16px;
  transform: skewX(var(--stripe-angle));
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      transparent 6%,
      rgba(255, 0, 51, 0.95) 6%,
      rgba(255, 0, 51, 0.95) 30%,
      rgba(255, 0, 85, 0.95) 31%,
      rgba(255, 0, 85, 0.95) 36%,
      transparent 36%,
      transparent 100%
    );
  filter: drop-shadow(0 0 18px rgba(255, 0, 85, 0.55));
  animation: stripeShift 10s linear infinite;
}

.hero-content,
.section,
.info-bar {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  z-index: 1;
}

.hero-content {
  max-width: 44rem;
  padding-bottom: 1.5rem;
}

.eyebrow,
.section-kicker,
.info-label,
.ticket-panel-label {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  font-size: 0.85rem;
}

.hero h1,
.section h2,
.ticket-panel h3 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-size: clamp(2.9rem, 7.6vw, 6.7rem);
  line-height: 0.88;
  max-width: 8ch;
}

.hero h1 span {
  display: inline-block;
  color: #fff4f7;
  text-shadow:
    0 0 12px rgba(255, 0, 85, 0.65),
    0 0 30px rgba(255, 0, 85, 0.8),
    0 0 65px rgba(255, 0, 85, 0.55);
  animation: pulseGlow 1.8s ease-in-out infinite;
}

.hero-copy,
.lead-copy,
.feature-card p,
.family-copy p,
.experience-copy p,
.final-cta p,
.ticket-panel p {
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.5;
  color: var(--muted);
}

.hero-copy {
  max-width: 34rem;
  margin: 1.2rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
  margin-top: 2rem;
}

.cta-button,
.ghost-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.8rem 2.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.cta-button {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--text);
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  box-shadow: 0 0 0 rgba(255, 0, 85, 0);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 18px rgba(255, 0, 85, 0.8),
    0 0 38px rgba(255, 0, 85, 0.45);
  filter: brightness(1.08);
  animation: pulseButton 600ms ease-in-out 1;
}

.cta-button.secondary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  width: fit-content;
}

.ticket-actions .cta-button,
.ticket-actions .ghost-link,
.modal-actions .cta-button,
.modal-actions .ghost-link {
  min-width: 13.5rem;
}

.ticket-actions {
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.ghost-link {
  color: var(--text);
  padding-left: 0;
}

.info-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -1.2rem;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(90deg, rgba(255, 0, 51, 0.14), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.info-item strong {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  letter-spacing: 0.04em;
}

.section {
  padding: 6.5rem 0;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}

.section-heading.narrow {
  max-width: 48rem;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  max-width: 11ch;
}

.intro-layout,
.experience-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.lead-copy {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.interactive-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.interactive-panel::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -35%;
  width: 50%;
  height: 160%;
  transform: skewX(var(--stripe-angle)) translateX(-180%);
  background:
    linear-gradient(
      90deg,
      transparent 0,
      transparent 45%,
      rgba(255, 0, 51, 0.98) 45%,
      rgba(255, 0, 51, 0.98) 74%,
      rgba(255, 0, 85, 0.98) 74%,
      rgba(255, 0, 85, 0.98) 84%,
      transparent 84%,
      transparent 100%
    );
  opacity: 0;
}

.interactive-panel:hover,
.interactive-panel:focus-within {
  transform: translateY(-8px);
  border-color: rgba(255, 0, 85, 0.7);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.interactive-panel:hover::before,
.interactive-panel:focus-within::before {
  opacity: 1;
  animation: panelStripe 620ms ease-out forwards;
}

.intro-stat-block {
  padding: 1.7rem;
}

.intro-stat-block p {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.stat-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
  color: var(--muted);
}

.stat-list li {
  position: relative;
  padding-left: 1.1rem;
}

.stat-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 10px rgba(255, 0, 85, 0.85);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.showcase-media {
  position: relative;
  min-height: 30rem;
  margin-bottom: 1.4rem;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 97% 100%, 0 100%);
  background: var(--surface-strong);
  isolation: isolate;
}

.showcase-video {
  width: 100%;
  height: 100%;
  min-height: 30rem;
  object-fit: cover;
  opacity: 0.82;
  background-color: #050505;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: opacity, transform;
}

.showcase-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem;
  display: grid;
  gap: 0.75rem;
  background:
    linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.88) 55%),
    linear-gradient(90deg, rgba(255, 0, 85, 0.08), transparent 42%);
}

.showcase-tag {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.82rem;
}

.showcase-overlay h3 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(1.6rem, 3vw, 2.75rem);
}

.showcase-overlay p:last-child {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.5;
}

.feature-card {
  min-height: 18rem;
  padding: 1.6rem;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 94% 100%, 0 100%);
}

.card-index {
  margin-bottom: 2.2rem;
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.18em;
}

.feature-card h3 {
  margin: 0 0 1rem;
  font-family: "Orbitron", sans-serif;
  font-style: italic;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-card p {
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  margin: 0;
  min-height: 17rem;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 100%, 0 100%);
}

.gallery-image {
  width: 100%;
  height: 100%;
  min-height: 17rem;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 300ms ease, filter 300ms ease;
}

.gallery-card::before,
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.gallery-card::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.1;
}

.gallery-card::after {
  inset: auto 0 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.82));
}

.gallery-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  z-index: 2;
  font-family: "Orbitron", sans-serif;
  font-style: italic;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.82);
}

.gallery-card:hover .gallery-image,
.gallery-card:focus-within .gallery-image {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.05);
}

.racing-divider {
  position: relative;
}

.racing-divider::before,
.racing-divider::after {
  content: "";
  position: absolute;
  left: -3%;
  width: 58%;
  transform: skewX(var(--stripe-angle));
}

.racing-divider::before {
  top: 0;
  height: 0.65rem;
  background: linear-gradient(90deg, var(--primary), transparent 78%);
}

.racing-divider::after {
  top: 0.85rem;
  height: 0.18rem;
  background: linear-gradient(90deg, var(--accent), transparent 60%);
  box-shadow: 0 0 18px rgba(255, 0, 85, 0.7);
}

.family-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.family-copy h2 {
  max-width: 10ch;
}

.family-copy p:last-child {
  margin-bottom: 0;
}

.family-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.family-highlight {
  min-height: 10rem;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  padding: 1.3rem;
  background:
    linear-gradient(180deg, rgba(255, 0, 85, 0.04), rgba(255, 255, 255, 0.03)),
    var(--surface-strong);
}

.family-highlight::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.88));
  z-index: 1;
  pointer-events: none;
}

.family-highlight-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  opacity: 0.88;
  transition: transform 300ms ease, filter 300ms ease;
}

.family-highlight span {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.family-highlight:hover .family-highlight-image,
.family-highlight:focus-within .family-highlight-image {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.05);
}

.experience-layout {
  align-items: stretch;
}

.ticket-panel {
  padding: 1.8rem;
  display: grid;
  gap: 1.1rem;
  background:
    linear-gradient(135deg, rgba(255, 0, 85, 0.1), rgba(255, 255, 255, 0.04)),
    var(--surface-strong);
}

.ticket-panel h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.35rem);
  max-width: 12ch;
}

.ticket-panel p {
  margin: 0;
}

.final-cta {
  text-align: center;
  padding-bottom: 7rem;
}

.final-cta h2 {
  max-width: 15ch;
  margin: 0 auto;
}

.final-cta p {
  max-width: 42rem;
  margin: 1.2rem auto 0;
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 1.4rem 0 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  max-width: min(13rem, 50vw);
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.join-main {
  padding-top: calc(var(--nav-height) + 2rem);
}

.page-hero {
  width: var(--container);
  margin: 0 auto;
  min-height: calc(100svh - 8rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 4rem;
}

.page-hero h1 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.92;
  max-width: 8ch;
}

.join-hero-card,
.join-form,
.join-payment {
  padding: 1.8rem;
}

.join-hero-card h2,
.join-form-head h2,
.join-payment-head h2,
.contact-success h3,
.join-success h3 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.join-hero-card h2,
.join-form-head h2,
.join-payment-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  max-width: 12ch;
}

.join-hero-card p:last-child,
.join-form-head p:last-child,
.join-payment-head p:last-child,
.modal-head p:last-child,
.contact-success p:last-child,
.join-success p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.join-shell {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.5rem;
  align-items: start;
}

.join-download {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.8rem;
}

.join-download-copy {
  display: grid;
  gap: 0.8rem;
}

.join-download-copy h2 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  max-width: 15ch;
}

.join-download-copy p:last-child,
.join-download-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.join-download-actions {
  display: grid;
  gap: 0.85rem;
  justify-items: end;
}

.join-download-actions .cta-button,
.join-download-actions .ghost-link {
  width: 100%;
  min-width: 15rem;
}

.join-download-note {
  grid-column: 1 / -1;
}

.join-form-head,
.join-payment-head,
.modal-head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.join-field-grid,
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.55rem;
}

.form-field span {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.95rem 1rem;
  border-radius: 0.8rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(255, 0, 85, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 0, 85, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.form-field-full {
  grid-column: 1 / -1;
}

.package-list,
.addon-list,
.join-summary {
  display: grid;
  gap: 0.85rem;
}

.package-list {
  margin-top: 1.5rem;
}

.package-option,
.addon-option,
.consent-check {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
}

.package-option input,
.addon-option input,
.consent-check input {
  margin-top: 0.2rem;
}

.package-copy {
  display: grid;
  gap: 0.2rem;
}

.package-copy strong,
.package-price,
.addon-option strong,
.summary-row strong {
  font-size: 1.05rem;
}

.package-copy small {
  color: var(--muted);
  line-height: 1.4;
}

.join-summary {
  margin: 1.4rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.summary-row strong {
  color: var(--text);
  text-align: right;
}

.total-row {
  padding-top: 0.35rem;
}

.total-row strong {
  color: #fff4f7;
  text-shadow: 0 0 18px rgba(255, 0, 85, 0.4);
}

.consent-check {
  grid-template-columns: auto 1fr;
  margin-bottom: 1.1rem;
}

.checkout-trigger {
  width: 100%;
}

.payment-note {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.98rem;
  line-height: 1.5;
}

.payment-note.is-warning {
  color: #ffd9e4;
}

.join-success,
.contact-success {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 0, 85, 0.28);
  background: rgba(255, 0, 85, 0.08);
  border-radius: 1rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity var(--transition);
}

.modal-backdrop.is-open {
  opacity: 1;
}

.modal-panel {
  width: min(760px, 100%);
  max-height: min(88vh, 980px);
  overflow: auto;
  padding: 1.7rem;
  transform: translateY(16px) scale(0.98);
  transition: transform var(--transition);
}

.promo-modal-panel {
  width: min(620px, 100%);
  padding-top: 2.3rem;
  position: relative;
  max-height: none;
  overflow: hidden;
  min-height: 32rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.58) 46%, rgba(5, 5, 5, 0.92) 100%),
    linear-gradient(135deg, rgba(255, 94, 0, 0.14), rgba(255, 0, 85, 0.08) 52%, rgba(0, 0, 0, 0.24) 100%),
    url("promo-popup-bg.png") center center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 60px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(255, 72, 0, 0.16);
}

.promo-modal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.16), transparent 26%);
}

.promo-modal-copy {
  display: grid;
  gap: 0.95rem;
  position: relative;
  z-index: 1;
}

.promo-modal-copy h2 {
  max-width: 11ch;
}

.promo-modal-copy p:last-child {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 28rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.promo-modal-panel .modal-actions {
  position: relative;
  z-index: 1;
  margin-top: 1.4rem;
}

.promo-modal-panel .section-kicker,
.promo-modal-panel h2 {
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.42);
}

.vendor-copy-stack {
  display: grid;
  gap: 1.1rem;
}

.vendor-copy {
  margin: 0;
}

.vendor-note-card,
.vendor-utility-card {
  margin-top: 0;
}

.vendor-utility-card {
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
}

.vendor-utility-card p:last-child,
.vendor-note-card p:last-child {
  margin-bottom: 0;
}

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

.vendor-contact-summary a {
  color: inherit;
}

.modal-backdrop.is-open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.2rem;
}

.modal-cancel {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

@keyframes speedLines {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-240px);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    text-shadow:
      0 0 12px rgba(255, 0, 85, 0.65),
      0 0 30px rgba(255, 0, 85, 0.8),
      0 0 65px rgba(255, 0, 85, 0.55);
  }
  50% {
    text-shadow:
      0 0 18px rgba(255, 0, 85, 0.82),
      0 0 44px rgba(255, 0, 85, 0.95),
      0 0 92px rgba(255, 0, 85, 0.72);
  }
}

@keyframes pulseButton {
  0% {
    box-shadow: 0 0 0 rgba(255, 0, 85, 0);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 0, 85, 0.85);
  }
  100% {
    box-shadow:
      0 0 18px rgba(255, 0, 85, 0.8),
      0 0 38px rgba(255, 0, 85, 0.45);
  }
}

@keyframes panelStripe {
  from {
    transform: skewX(var(--stripe-angle)) translateX(-180%);
  }
  to {
    transform: skewX(var(--stripe-angle)) translateX(380%);
  }
}

@keyframes stripeShift {
  from {
    transform: skewX(var(--stripe-angle)) translateX(-8%);
  }
  to {
    transform: skewX(var(--stripe-angle)) translateX(8%);
  }
}

@media (max-width: 960px) {
  .page-hero,
  .join-shell,
  .info-bar,
  .feature-grid,
  .gallery-grid,
  .family-section,
  .family-highlights,
  .intro-layout,
  .experience-layout {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    min-height: auto;
    padding-bottom: 3.5rem;
  }

  .showcase-media,
  .showcase-video {
    min-height: 22rem;
  }

  .join-main {
    padding-top: calc(var(--nav-height) + 1.25rem);
  }

  .hero::after {
    bottom: 10%;
  }

  .join-download {
    grid-template-columns: 1fr;
  }

  .join-download-actions {
    justify-items: stretch;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 1.25rem, 100%);
    --nav-height: 76px;
  }

  .navbar {
    position: relative;
    min-height: var(--nav-height);
    margin-top: 0.55rem;
    padding: 0.75rem 0.9rem;
    border-radius: 1.25rem;
    overflow: visible;
  }

  .nav-links .nav-ticket {
    display: none;
  }

  .nav-mobile-controls {
    display: flex;
    margin-left: auto;
    position: relative;
    z-index: 4;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-panel {
    position: fixed;
    top: calc(var(--nav-height) + 1.35rem);
    left: 0.625rem;
    right: 0.625rem;
    z-index: 26;
    max-height: calc(100dvh - var(--nav-height) - 2rem);
    overflow: auto;
    display: none;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    border-radius: 1.2rem;
    isolation: isolate;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 18px 40px rgba(0, 0, 0, 0.32);
  }

  .mobile-menu-panel.is-open {
    display: grid;
  }

  .mobile-menu-checkbox:checked ~ .mobile-menu-panel {
    display: grid;
  }

  .mobile-menu-media {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .mobile-menu-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    filter: saturate(1.05) contrast(1.02);
    background-color: #050505;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: opacity, transform;
  }

  .mobile-menu-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03) 25%, rgba(8, 8, 8, 0.72) 100%),
      linear-gradient(135deg, rgba(255, 0, 85, 0.16), transparent 40%);
    pointer-events: none;
  }

  .mobile-menu-panel a {
    position: relative;
    z-index: 2;
    padding: 0.6rem 0;
  }

  .nav-action {
    width: 100%;
  }

  .nav-mobile-controls .nav-action {
    width: auto;
    min-width: 8.1rem;
    padding: 0.62rem 1.2rem;
  }

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

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

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

  .site-header.scrolled .navbar {
    border-radius: 1.2rem;
  }

  .hero h1 {
    max-width: 9ch;
  }

  .logo {
    max-width: min(11rem, 42vw);
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .cta-button.secondary {
    width: 100%;
  }

  .ticket-actions {
    flex-wrap: wrap;
  }

  .cta-button,
  .ghost-link {
    width: 100%;
  }

  .join-field-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .family-highlight {
    min-height: 8rem;
  }

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

  .showcase-overlay {
    padding: 1.25rem;
  }

  .modal-panel,
  .join-hero-card,
  .join-form,
  .join-payment {
    padding: 1.2rem;
  }

  .promo-modal-panel {
    min-height: 28rem;
    padding: 2.75rem 1.25rem 1.25rem;
    justify-content: flex-end;
  }

  .promo-modal-copy p:last-child {
    font-size: 1rem;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
  }
}
