/* ============================================================
   FREQ FEST — STYLES
   Multi-page (Home, About, Event, Contact)
   Theme: Mystical / Electric / Cinematic
   Palette: Electric blue on near-black navy
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --c-bg:        #050a18;
  --c-bg-deep:   #030610;
  --c-navy:      #0A1F3D;
  --c-navy-2:    #0e2851;
  --c-blue:      #4DA8FF;
  --c-blue-glow: #7FD4FF;
  --c-blue-hot:  #B8E5FF;
  --c-warn:      #FFB84D;
  --c-text:      #ffffff;
  --c-text-mute: rgba(255, 255, 255, 0.62);
  --c-text-dim:  rgba(255, 255, 255, 0.42);
  --c-line:      rgba(127, 212, 255, 0.16);
  --c-line-soft: rgba(255, 255, 255, 0.08);

  --glow-sm: 0 0 12px rgba(77, 168, 255, 0.45);
  --glow-md: 0 0 24px rgba(77, 168, 255, 0.55), 0 0 48px rgba(77, 168, 255, 0.25);
  --glow-lg: 0 0 36px rgba(127, 212, 255, 0.65), 0 0 96px rgba(77, 168, 255, 0.35);
  --text-glow-sm: 0 0 14px rgba(127, 212, 255, 0.55);
  --text-glow-md: 0 0 24px rgba(127, 212, 255, 0.7), 0 0 56px rgba(77, 168, 255, 0.35);

  --f-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --f-mono:    'JetBrains Mono', 'Courier New', monospace;
  --f-body:    'Inter', system-ui, sans-serif;

  --container: 1200px;
  --section-py: clamp(5rem, 10vw, 9rem);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
blockquote { margin: 0; }

.skip-link {
  position: absolute;
  top: -100px; left: 1rem;
  background: var(--c-blue);
  color: var(--c-bg-deep);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  z-index: 1000;
  border-radius: 4px;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--c-blue-glow);
  outline-offset: 3px;
  border-radius: 2px;
}

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

/* ---------- TYPOGRAPHY HELPERS ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin: 0 0 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 1px;
  background: var(--c-blue);
  box-shadow: var(--glow-sm);
}
.eyebrow--blue { color: var(--c-blue-glow); }
.eyebrow--warn { color: var(--c-warn); }
.eyebrow--warn::before { background: var(--c-warn); box-shadow: 0 0 12px rgba(255, 184, 77, 0.5); }
.eyebrow__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-blue-glow);
  box-shadow: var(--glow-sm);
  animation: dot-pulse 2.4s ease-in-out infinite;
  margin-right: 0.4rem;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}

.section-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: 0.005em;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}
.section-title--center { text-align: center; }

.section-lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--c-text-mute);
  max-width: 60ch;
  margin: 0 0 3rem;
  line-height: 1.65;
}

.text-glow {
  background: linear-gradient(180deg, var(--c-blue-glow), var(--c-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 24px rgba(127, 212, 255, 0.55));
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
              background 0.25s, color 0.25s, border-color 0.25s;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}
.btn--sm  { padding: 0.65rem 1.25rem; font-size: 0.7rem; }
.btn--md  { padding: 0.85rem 1.6rem; font-size: 0.75rem; }
.btn--lg  { padding: 1.1rem 2.2rem; font-size: 0.82rem; }
.btn--xl  { padding: 1.4rem 3rem; font-size: 0.95rem; }

.btn--primary {
  background: var(--c-blue);
  color: var(--c-bg-deep);
  box-shadow: 0 0 0 1px var(--c-blue), 0 0 24px rgba(77, 168, 255, 0.35);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  transform: scale(1.03);
  background: var(--c-blue-glow);
  box-shadow: 0 0 0 1px var(--c-blue-glow), var(--glow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  box-shadow: inset 0 0 0 1px rgba(127, 212, 255, 0.5);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(77, 168, 255, 0.08);
  box-shadow: inset 0 0 0 1px var(--c-blue-glow), 0 0 18px rgba(77, 168, 255, 0.3);
  transform: scale(1.02);
}

/* ============================================================
   NAV (shared across pages)
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: rgba(5, 10, 24, 0);
  backdrop-filter: blur(0px);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, padding 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(5, 10, 24, 0.85);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--c-line-soft);
  padding: 0.7rem 0;
}
/* Subpages always show solid nav (no hero behind it on those pages) */
body[data-page="about"] .nav,
body[data-page="event"] .nav,
body[data-page="contact"] .nav {
  background: rgba(5, 10, 24, 0.85);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--c-line-soft);
}

.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--f-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav__logo-mark {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--c-blue);
  color: var(--c-bg-deep);
  font-family: var(--f-display);
  font-size: 1.15rem;
  border-radius: 2px;
  box-shadow: var(--glow-sm);
}
.nav__logo-dot { color: var(--c-blue); }
.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav__links a {
  color: var(--c-text-mute);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--c-blue-glow);
  box-shadow: var(--glow-sm);
  transition: width 0.3s var(--ease-out);
}
.nav__links a:hover, .nav__links a:focus-visible { color: var(--c-text); }
.nav__links a:hover::after, .nav__links a:focus-visible::after { width: 100%; }
.nav__links a.is-active {
  color: var(--c-blue-glow);
  text-shadow: var(--text-glow-sm);
}
.nav__links a.is-active::after { width: 100%; }
.nav__cta { margin-left: 0; }

.nav__burger {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: flex-end;
  padding: 0 8px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-text);
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.nav__burger span:nth-child(2) { width: 18px; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--c-bg-deep);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(77, 168, 255, 0.18), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(77, 168, 255, 0.12), transparent 60%);
  pointer-events: none;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
  width: 100%;
  max-width: 420px;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.mobile-menu__link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 1rem;
  padding: 1.25rem 0.5rem;
  border-bottom: 1px solid var(--c-line-soft);
  text-decoration: none;
  color: var(--c-text);
  transition: background 0.2s, padding 0.2s;
}
.mobile-menu__link:hover, .mobile-menu__link:focus-visible {
  background: rgba(77, 168, 255, 0.06);
  padding-left: 1rem;
}
.mobile-menu__main {
  font-family: var(--f-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.mobile-menu__sub {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-top: 0.35rem;
  display: block;
}
.mobile-menu__link::after {
  content: '↗';
  font-family: var(--f-mono);
  font-size: 1.25rem;
  color: var(--c-blue);
  opacity: 0.5;
  transition: transform 0.2s, opacity 0.2s;
}
.mobile-menu__link:hover::after { opacity: 1; transform: translate(2px, -2px); }
.mobile-menu__cta { margin-top: 1.5rem; }

/* ============================================================
   HERO (home page only)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(7rem, 14vh, 9rem) 0 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-bg-deep);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(77, 168, 255, 0.28), transparent 50%),
    radial-gradient(ellipse at 15% 60%, rgba(77, 100, 255, 0.14), transparent 45%),
    radial-gradient(ellipse at 85% 60%, rgba(127, 212, 255, 0.12), transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(77, 168, 255, 0.22), transparent 50%),
    linear-gradient(180deg, #081428 0%, var(--c-bg-deep) 60%, #020810 100%);
}

/* Primary fog layer */
.hero__fog {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 55% at 50% 45%, rgba(77, 168, 255, 0.14), transparent 70%);
  filter: blur(35px);
  animation: fog-pulse 8s ease-in-out infinite;
}
/* Second fog — sits low, simulates stage floor haze */
.hero__fog--2 {
  background: radial-gradient(ellipse 100% 35% at 50% 100%, rgba(100, 180, 255, 0.22), transparent 70%);
  filter: blur(50px);
  animation: fog-pulse 11s ease-in-out infinite reverse;
  animation-delay: -3s;
}
@keyframes fog-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.1); }
}

/* Stage floor bloom — bright glow rising from the bottom */
.hero__floor-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background:
    radial-gradient(ellipse 80% 100% at 30% 100%, rgba(77, 168, 255, 0.28), transparent 60%),
    radial-gradient(ellipse 80% 100% at 70% 100%, rgba(127, 212, 255, 0.22), transparent 60%),
    radial-gradient(ellipse 40% 60% at 50% 100%, rgba(180, 220, 255, 0.18), transparent 50%);
  filter: blur(20px);
  animation: floor-pulse 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes floor-pulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

/* Primary laser beams — thin, sharp, sweep from bottom centre */
.hero__lasers {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  perspective: 500px;
}
.hero__lasers span {
  position: absolute;
  bottom: 0; left: 50%;
  width: 1.5px;
  height: 110vh;
  background: linear-gradient(180deg, transparent 0%, rgba(180, 230, 255, 0.5) 40%, rgba(127, 212, 255, 0.9) 75%, rgba(255, 255, 255, 0.95) 100%);
  filter: blur(0.4px);
  transform-origin: bottom center;
  opacity: 0;
  animation: laser-sweep 6s linear infinite;
  box-shadow: 0 0 8px rgba(200, 235, 255, 0.9), 0 0 20px rgba(127, 212, 255, 0.5);
}
.hero__lasers span:nth-child(1)  { animation-delay: 0s;    transform: rotate(-50deg); }
.hero__lasers span:nth-child(2)  { animation-delay: 0.45s; transform: rotate(-38deg); }
.hero__lasers span:nth-child(3)  { animation-delay: 0.9s;  transform: rotate(-26deg); }
.hero__lasers span:nth-child(4)  { animation-delay: 1.35s; transform: rotate(-14deg); }
.hero__lasers span:nth-child(5)  { animation-delay: 1.8s;  transform: rotate(-4deg);  }
.hero__lasers span:nth-child(6)  { animation-delay: 2.25s; transform: rotate(4deg);   }
.hero__lasers span:nth-child(7)  { animation-delay: 2.7s;  transform: rotate(14deg);  }
.hero__lasers span:nth-child(8)  { animation-delay: 3.15s; transform: rotate(26deg);  }
.hero__lasers span:nth-child(9)  { animation-delay: 3.6s;  transform: rotate(38deg);  }
.hero__lasers span:nth-child(10) { animation-delay: 4.05s; transform: rotate(50deg);  }
.hero__lasers span:nth-child(11) { animation-delay: 1.1s;  transform: rotate(-60deg); width: 1px; }
.hero__lasers span:nth-child(12) { animation-delay: 3.3s;  transform: rotate(60deg);  width: 1px; }
.hero__lasers span:nth-child(13) { animation-delay: 0.6s;  transform: rotate(-8deg);  }
.hero__lasers span:nth-child(14) { animation-delay: 4.5s;  transform: rotate(8deg);   }

/* Wide soft beams — thick, low opacity, give depth and warmth */
.hero__lasers--wide span {
  width: 6px;
  height: 100vh;
  background: linear-gradient(180deg, transparent 0%, rgba(77, 168, 255, 0.08) 50%, rgba(100, 190, 255, 0.22) 100%);
  filter: blur(8px);
  box-shadow: none;
  animation-duration: 10s;
}
.hero__lasers--wide span:nth-child(1) { animation-delay: 0.3s;  transform: rotate(-42deg); }
.hero__lasers--wide span:nth-child(2) { animation-delay: 1.7s;  transform: rotate(-18deg); }
.hero__lasers--wide span:nth-child(3) { animation-delay: 3.1s;  transform: rotate(0deg);   }
.hero__lasers--wide span:nth-child(4) { animation-delay: 4.5s;  transform: rotate(18deg);  }
.hero__lasers--wide span:nth-child(5) { animation-delay: 5.9s;  transform: rotate(42deg);  }
.hero__lasers--wide span:nth-child(6) { animation-delay: 7.3s;  transform: rotate(-6deg);  }

@keyframes laser-sweep {
  0%   { opacity: 0; }
  15%  { opacity: 0.85; }
  50%  { opacity: 0.55; }
  85%  { opacity: 0.25; }
  100% { opacity: 0; }
}

/* Horizontal cross-beams — flash across at intervals, like a follow-spot */
.hero__crossbeams {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__crossbeams span {
  position: absolute;
  left: -10%;
  right: -10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(127, 212, 255, 0.6) 30%, rgba(200, 235, 255, 0.8) 50%, rgba(127, 212, 255, 0.6) 70%, transparent 100%);
  box-shadow: 0 0 12px rgba(127, 212, 255, 0.5);
  opacity: 0;
  animation: crossbeam-flash 12s ease-in-out infinite;
}
.hero__crossbeams span:nth-child(1) { top: 32%; animation-delay: 0s;  }
.hero__crossbeams span:nth-child(2) { top: 55%; animation-delay: 4s;  }
.hero__crossbeams span:nth-child(3) { top: 42%; animation-delay: 8s;  }
@keyframes crossbeam-flash {
  0%, 100% { opacity: 0; }
  8%        { opacity: 0.7; }
  14%       { opacity: 0; }
}

/* Floating particles — scattered glowing dots like stage dust */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__particles span {
  position: absolute;
  border-radius: 50%;
  background: var(--c-blue-glow);
  box-shadow: 0 0 6px var(--c-blue-glow), 0 0 14px rgba(127, 212, 255, 0.4);
  opacity: 0;
  animation: particle-float 8s ease-in-out infinite;
}
/* Varied sizes and positions — mix of 2px and 3px dots */
.hero__particles span:nth-child(1)  { width: 2px; height: 2px; left: 8%;  top: 20%; animation-delay: 0s;    animation-duration: 7s; }
.hero__particles span:nth-child(2)  { width: 3px; height: 3px; left: 15%; top: 55%; animation-delay: 1.2s;  animation-duration: 9s; }
.hero__particles span:nth-child(3)  { width: 2px; height: 2px; left: 23%; top: 35%; animation-delay: 2.4s;  animation-duration: 6s; }
.hero__particles span:nth-child(4)  { width: 2px; height: 2px; left: 32%; top: 70%; animation-delay: 0.6s;  animation-duration: 8s; }
.hero__particles span:nth-child(5)  { width: 3px; height: 3px; left: 41%; top: 18%; animation-delay: 3.6s;  animation-duration: 7s; }
.hero__particles span:nth-child(6)  { width: 2px; height: 2px; left: 49%; top: 82%; animation-delay: 1.8s;  animation-duration: 9s; }
.hero__particles span:nth-child(7)  { width: 2px; height: 2px; left: 58%; top: 28%; animation-delay: 4.8s;  animation-duration: 6s; }
.hero__particles span:nth-child(8)  { width: 3px; height: 3px; left: 66%; top: 62%; animation-delay: 0.3s;  animation-duration: 8s; }
.hero__particles span:nth-child(9)  { width: 2px; height: 2px; left: 74%; top: 40%; animation-delay: 2.1s;  animation-duration: 7s; }
.hero__particles span:nth-child(10) { width: 2px; height: 2px; left: 82%; top: 75%; animation-delay: 5.4s;  animation-duration: 9s; }
.hero__particles span:nth-child(11) { width: 3px; height: 3px; left: 90%; top: 22%; animation-delay: 1.5s;  animation-duration: 6s; }
.hero__particles span:nth-child(12) { width: 2px; height: 2px; left: 12%; top: 80%; animation-delay: 3.9s;  animation-duration: 8s; }
.hero__particles span:nth-child(13) { width: 2px; height: 2px; left: 28%; top: 48%; animation-delay: 0.9s;  animation-duration: 7s; }
.hero__particles span:nth-child(14) { width: 3px; height: 3px; left: 55%; top: 58%; animation-delay: 6.3s;  animation-duration: 9s; }
.hero__particles span:nth-child(15) { width: 2px; height: 2px; left: 70%; top: 15%; animation-delay: 2.7s;  animation-duration: 6s; }
.hero__particles span:nth-child(16) { width: 2px; height: 2px; left: 85%; top: 50%; animation-delay: 4.2s;  animation-duration: 8s; }
.hero__particles span:nth-child(17) { width: 3px; height: 3px; left: 5%;  top: 45%; animation-delay: 1.0s;  animation-duration: 7s; }
.hero__particles span:nth-child(18) { width: 2px; height: 2px; left: 38%; top: 88%; animation-delay: 5.1s;  animation-duration: 9s; }
.hero__particles span:nth-child(19) { width: 2px; height: 2px; left: 62%; top: 92%; animation-delay: 3.3s;  animation-duration: 6s; }
.hero__particles span:nth-child(20) { width: 3px; height: 3px; left: 93%; top: 68%; animation-delay: 7.2s;  animation-duration: 8s; }
@keyframes particle-float {
  0%        { opacity: 0;    transform: translateY(0); }
  20%       { opacity: 0.9; }
  60%       { opacity: 0.5; }
  100%      { opacity: 0;    transform: translateY(-18px); }
}

/* Primary horizontal scanline — sweeps top to bottom */
.hero__scanline {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 212, 255, 0.5) 20%, var(--c-blue-glow) 50%, rgba(127, 212, 255, 0.5) 80%, transparent);
  box-shadow: 0 0 18px rgba(127, 212, 255, 0.7);
  animation: scan-vertical 11s linear infinite;
  opacity: 0.5;
}
/* Second scanline — faster, slightly different opacity, gives flicker effect */
.hero__scanline--2 {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 235, 255, 0.3) 40%, rgba(200, 235, 255, 0.5) 50%, rgba(200, 235, 255, 0.3) 60%, transparent);
  box-shadow: 0 0 8px rgba(200, 235, 255, 0.4);
  animation: scan-vertical 7s linear infinite;
  animation-delay: -3.5s;
  opacity: 0.35;
}
@keyframes scan-vertical {
  0% { top: -2px; } 100% { top: 100%; }
}

/* Perspective grid floor */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(127, 212, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 212, 255, 0.07) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 72%);
}

/* Edge vignette keeps text readable */
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 25%, rgba(3, 6, 16, 0.8) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1100px;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(3rem, 11vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}
.hero__word {
  display: block;
  opacity: 0;
  transform: translateY(28px);
  animation: word-rise 1s var(--ease-out) forwards;
  animation-delay: calc(0.5s + var(--d, 0s));
}
.hero__word[data-stagger="0"] { --d: 0s; }
.hero__word[data-stagger="1"] { --d: 0.25s; }
.hero__word[data-stagger="2"] { --d: 0.55s; }
.hero__word--glow {
  background: linear-gradient(180deg, #ffffff 0%, var(--c-blue-glow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: var(--text-glow-md);
  filter: drop-shadow(0 0 24px rgba(127, 212, 255, 0.45));
}
@keyframes word-rise { to { opacity: 1; transform: translateY(0); } }
.hero__subhead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--c-text-mute);
  max-width: 56ch;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
@media (max-height: 820px) { .hero__scroll { display: none; } }
.hero__scroll-line {
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--c-blue-glow), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -10px; left: 0;
  width: 1px; height: 10px;
  background: var(--c-blue-glow);
  box-shadow: var(--glow-sm);
  animation: scroll-cue 2s ease-in-out infinite;
}
@keyframes scroll-cue {
  0%   { top: -10px; opacity: 0; }
  30%  { opacity: 1; }
  100% { top: 40px; opacity: 0; }
}

/* ============================================================
   PAGE HEAD (subpages — About, Event, Contact)
   ============================================================ */
.page-head {
  position: relative;
  padding: clamp(7rem, 16vh, 11rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background: var(--c-bg-deep);
}
.page-head__bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.page-head__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(77, 168, 255, 0.22), transparent 55%),
    linear-gradient(180deg, var(--c-navy) 0%, var(--c-bg-deep) 100%);
}
.page-head__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}
.page-lede {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--c-text-mute);
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.65;
}

/* Event facts strip on event page-head */
.event-facts {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.event-facts__item {
  padding: 1.25rem 1rem;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  background: rgba(10, 31, 61, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}
.event-facts__label {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-blue);
}
.event-facts__value {
  font-family: var(--f-display);
  font-size: 1.65rem;
  letter-spacing: 0.02em;
  color: var(--c-text);
  line-height: 1;
}
.event-facts__value--sm {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
}

/* ============================================================
   FEATURES GRID (DJs / Food / Drinks / Camping)
   ============================================================ */
.features {
  padding: var(--section-py) 0;
  background: var(--c-bg-deep);
  position: relative;
  text-align: center;
}
.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(127, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  pointer-events: none;
}
.features .container { position: relative; z-index: 1; }
.features .eyebrow,
.features .section-title { display: inline-flex; }
.features .section-title { display: block; }
.features .section-lede { margin: 0 auto 4rem; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.feature {
  padding: 2.25rem 1.5rem;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(14, 40, 81, 0.55), rgba(10, 31, 61, 0.25));
  text-align: center;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--c-blue-glow);
  box-shadow: 0 12px 32px -8px rgba(77, 168, 255, 0.4);
}
.feature__icon {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  flex-shrink: 0;
  margin: 0 auto 1.25rem;
  color: var(--c-blue-glow);
  filter: drop-shadow(0 0 10px rgba(127, 212, 255, 0.4));
  animation: glow-pulse 4s ease-in-out infinite;
  overflow: hidden;
}
.feature__icon svg {
  width: 48px;
  height: 48px;
  display: block;
}
.feature__title {
  font-family: var(--f-display);
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
  font-weight: 400;
}
.feature__text {
  font-size: 0.9rem;
  color: var(--c-text-mute);
  margin: 0;
  line-height: 1.55;
}
@keyframes glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(127, 212, 255, 0.3)); }
  50%      { filter: drop-shadow(0 0 16px rgba(127, 212, 255, 0.7)); }
}

.features__note {
  margin: 0 auto;
  max-width: 60ch;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 184, 77, 0.3);
  border-left: 3px solid var(--c-warn);
  border-radius: 4px;
  background: rgba(255, 184, 77, 0.06);
  font-size: 0.9rem;
  color: var(--c-text-mute);
}

/* ============================================================
   TEASER SECTIONS (home page)
   ============================================================ */
.teaser {
  padding: var(--section-py) 0;
  background: var(--c-bg-deep);
  position: relative;
  overflow: hidden;
}
.teaser--about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(77, 168, 255, 0.1), transparent 60%);
  pointer-events: none;
}
.teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.teaser__inner--reverse .teaser__text { order: 2; }
.teaser__inner--reverse .teaser__visual { order: 1; }
.teaser__body {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--c-text-mute);
  margin: 0 0 2rem;
  max-width: 50ch;
  line-height: 1.65;
}
.teaser__visual {
  position: relative;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}

/* Event details mini-card on home page */
.event-card {
  width: 100%;
  max-width: 380px;
  padding: 2rem 2.25rem;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(14, 40, 81, 0.7), rgba(10, 31, 61, 0.4));
  backdrop-filter: blur(8px);
  position: relative;
}
.event-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--c-blue-glow), transparent 30%, transparent 70%, var(--c-blue)) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}
.event-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-line-soft);
  gap: 1rem;
}
.event-card__row--last { border-bottom: 0; padding-bottom: 0.5rem; }
.event-card__row:first-child { padding-top: 0.5rem; }
.event-card__label {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}
.event-card__value {
  font-family: var(--f-display);
  font-size: 1.85rem;
  letter-spacing: 0.02em;
  color: var(--c-text);
  line-height: 1;
}
.event-card__value--accent {
  color: var(--c-blue-glow);
  text-shadow: var(--text-glow-sm);
  font-size: 2.5rem;
}

/* ============================================================
   PRISM (lore visual on About + home teaser)
   ============================================================ */
.prism {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}
.prism__core {
  width: 24%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c-blue-hot) 0%, var(--c-blue-glow) 35%, var(--c-blue) 70%, transparent 100%);
  box-shadow: 0 0 60px rgba(127, 212, 255, 0.85), 0 0 140px rgba(77, 168, 255, 0.45);
  animation: core-pulse 4s ease-in-out infinite;
  z-index: 2;
}
@keyframes core-pulse {
  0%, 100% { transform: scale(1); filter: blur(0px); }
  50%      { transform: scale(1.1); filter: blur(2px); }
}
.prism__beam {
  position: absolute;
  top: 50%; left: 50%;
  width: 2px;
  height: 50%;
  background: linear-gradient(180deg, var(--c-blue-glow), transparent);
  box-shadow: 0 0 16px var(--c-blue-glow);
  transform-origin: top center;
  transform: translate(-50%, 0) rotate(0deg);
  animation: beam-sweep 6s linear infinite;
}
.prism__beam--1 { animation-delay: 0s;    --rot: 0deg; }
.prism__beam--2 { animation-delay: 1.2s;  --rot: 72deg; }
.prism__beam--3 { animation-delay: 2.4s;  --rot: 144deg; }
.prism__beam--4 { animation-delay: 3.6s;  --rot: 216deg; }
.prism__beam--5 { animation-delay: 4.8s;  --rot: 288deg; }
@keyframes beam-sweep {
  0%   { transform: translate(-50%, 0) rotate(var(--rot, 0deg)); opacity: 0; }
  20%  { opacity: 0.8; }
  100% { transform: translate(-50%, 0) rotate(calc(var(--rot, 0deg) + 360deg)); opacity: 0.6; }
}
.prism__ring {
  position: absolute;
  top: 50%; left: 50%;
  border: 1px solid rgba(127, 212, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.prism__ring--1 { width: 50%; height: 50%; animation: ring-pulse 5s ease-in-out infinite; }
.prism__ring--2 { width: 75%; height: 75%; animation: ring-pulse 5s ease-in-out infinite 0.7s; border-color: rgba(127, 212, 255, 0.18); }
.prism__ring--3 { width: 100%; height: 100%; animation: ring-pulse 5s ease-in-out infinite 1.4s; border-color: rgba(127, 212, 255, 0.1); }
@keyframes ring-pulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.3; transform: translate(-50%, -50%) scale(1.05); }
}

/* ============================================================
   BELIEF (About page)
   ============================================================ */
.belief {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--c-bg-deep), #06122b 50%, var(--c-bg-deep));
}
.belief__bg { position: absolute; inset: 0; pointer-events: none; }
.belief__beams {
  position: absolute;
  inset: -20%;
  background:
    conic-gradient(from 180deg at 50% 50%,
      transparent 0deg,
      rgba(77, 168, 255, 0.04) 30deg,
      transparent 60deg,
      rgba(127, 212, 255, 0.06) 90deg,
      transparent 120deg,
      rgba(77, 168, 255, 0.04) 150deg,
      transparent 180deg);
  filter: blur(20px);
  animation: rays-rotate 40s linear infinite;
}
@keyframes rays-rotate { to { transform: rotate(360deg); } }
.belief__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(3, 6, 16, 0.85) 100%);
}
.belief__inner { text-align: center; position: relative; z-index: 1; }
.belief__inner .eyebrow { display: inline-flex; }
.belief__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(3rem, 12vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}
.belief__title span { display: block; }
.belief__title-glow {
  background: linear-gradient(180deg, var(--c-blue-glow), var(--c-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(127, 212, 255, 0.6));
}
.belief__body {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--c-text-mute);
  max-width: 56ch;
  margin: 0 auto 1.25rem;
  line-height: 1.65;
}

.pull-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3;
  color: var(--c-blue-glow);
  text-shadow: var(--text-glow-sm);
  max-width: 32ch;
  margin: 3rem auto 0;
  padding: 2rem 0;
  position: relative;
  letter-spacing: 0.005em;
  animation: quote-glow 4s ease-in-out infinite;
}
.pull-quote::before, .pull-quote::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 3rem; height: 1px;
  background: var(--c-blue);
  box-shadow: var(--glow-sm);
  transform: translateX(-50%);
}
.pull-quote::before { top: 0; }
.pull-quote::after { bottom: 0; }
.pull-quote__mark {
  display: block;
  font-family: serif;
  font-size: 3rem;
  line-height: 0.5;
  color: var(--c-blue);
  margin-bottom: 0.5rem;
  font-style: normal;
  opacity: 0.6;
}
@keyframes quote-glow {
  0%, 100% { text-shadow: var(--text-glow-sm); }
  50%      { text-shadow: var(--text-glow-md); }
}

/* ============================================================
   MESSAGE / BROADCAST
   ============================================================ */
.message {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  position: relative;
  overflow: hidden;
  background: var(--c-bg-deep);
}
body[data-page="about"] .message {
  padding: var(--section-py) 0;
}
.message__scan {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--c-blue), transparent);
  box-shadow: 0 0 30px rgba(77, 168, 255, 0.7);
  animation: scan-horizontal 14s ease-in-out infinite;
  opacity: 0.7;
}
@keyframes scan-horizontal {
  0%   { left: 0%;  opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}
.message__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.message__inner .eyebrow,
.message__inner .section-title { display: inline-flex; }
.message__inner .section-title { display: block; margin-bottom: 4rem; }
.message__lines {
  margin: 0 auto;
  max-width: 28ch;
}
.message__lines p {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  color: var(--c-text);
}
.message__spacer { height: 1.5rem; }
.message__final {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
  color: var(--c-text);
}
body[data-page="about"] .message__final { margin-top: 4rem; }
.message__final span {
  background: linear-gradient(180deg, var(--c-blue-glow), var(--c-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 24px rgba(127, 212, 255, 0.6));
}

/* ============================================================
   PRICING / TICKET TIERS (Event page)
   ============================================================ */
.pricing {
  padding: var(--section-py) 0;
  background: var(--c-bg-deep);
  position: relative;
  text-align: center;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(77, 168, 255, 0.08), transparent 60%);
  pointer-events: none;
}
.pricing .container { position: relative; z-index: 1; }
.pricing .eyebrow,
.pricing .section-title { display: inline-flex; }
.pricing .section-title { display: block; }
.pricing .section-lede { margin: 0 auto 4rem; }

.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  text-align: left;
  margin-bottom: 2.5rem;
}
.tier {
  padding: 2rem 1.75rem;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(14, 40, 81, 0.55), rgba(10, 31, 61, 0.25));
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.tier:hover {
  transform: translateY(-4px);
  border-color: var(--c-blue-glow);
  box-shadow: 0 16px 40px -10px rgba(77, 168, 255, 0.45);
}
.tier--super {
  border-color: rgba(127, 212, 255, 0.5);
  background: linear-gradient(180deg, rgba(77, 168, 255, 0.18), rgba(10, 31, 61, 0.4));
  box-shadow: 0 0 0 1px rgba(127, 212, 255, 0.3) inset, 0 12px 30px -10px rgba(77, 168, 255, 0.35);
}
.tier--super::after {
  content: 'BEST VALUE';
  position: absolute;
  top: -10px; right: 1.5rem;
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  background: var(--c-blue);
  color: var(--c-bg-deep);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  font-weight: 500;
  box-shadow: var(--glow-sm);
}
.tier--vip {
  border-color: rgba(127, 212, 255, 0.35);
}
.tier__head {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  min-height: 2.5rem;
}
.tier__badge {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-blue);
}
.tier__badge--vip { color: var(--c-blue-glow); text-shadow: var(--text-glow-sm); }
.tier__limited {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-warn);
}
.tier__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.tier__currency {
  font-family: var(--f-display);
  font-size: 1.75rem;
  color: var(--c-text-mute);
  line-height: 1;
}
.tier__amount {
  font-family: var(--f-display);
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1;
  color: var(--c-text);
  letter-spacing: 0.005em;
}
.tier--super .tier__amount,
.tier--vip .tier__amount {
  color: var(--c-blue-glow);
  text-shadow: var(--text-glow-sm);
}
.tier__per {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-left: 0.5rem;
}
.tier__features {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  flex: 1;
}
.tier__features li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-size: 0.92rem;
  color: var(--c-text-mute);
  border-bottom: 1px solid var(--c-line-soft);
  line-height: 1.5;
}
.tier__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 10px;
  height: 10px;
  background-color: var(--c-blue);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.tier__features li:last-child { border-bottom: 0; }
.tier__cta { width: 100%; }

.pricing__note {
  margin: 0 auto;
  max-width: 56ch;
  font-size: 0.85rem;
  color: var(--c-text-dim);
  font-style: italic;
}

/* ============================================================
   INFO GRID (Event page accommodation + rules)
   ============================================================ */
.info-grid {
  padding: 0 0 var(--section-py);
  background: var(--c-bg-deep);
}
.info-grid__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.info-card {
  padding: 2.5rem;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(14, 40, 81, 0.55), rgba(10, 31, 61, 0.25));
}
.info-card--warn {
  border-color: rgba(255, 184, 77, 0.3);
  background: linear-gradient(180deg, rgba(255, 184, 77, 0.06), rgba(10, 31, 61, 0.25));
}
.info-card__title {
  font-family: var(--f-display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-weight: 400;
}
.info-card__body {
  font-size: 1rem;
  color: var(--c-text-mute);
  margin: 0 0 1rem;
  line-height: 1.65;
}
.info-card__body strong { color: var(--c-text); font-weight: 600; }
.info-card--warn .info-card__body strong { color: var(--c-warn); }
.info-card__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  background: rgba(77, 168, 255, 0.06);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.info-card__contact:hover,
.info-card__contact:focus-visible {
  border-color: var(--c-blue-glow);
  background: rgba(77, 168, 255, 0.15);
  transform: translateY(-2px);
}
.info-card__contact-value {
  font-family: var(--f-display);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--c-text);
}

/* ============================================================
   TICKETS SECTION (shared across home and event pages)
   ============================================================ */
.tickets {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--c-bg-deep) 0%, #08152e 50%, var(--c-bg-deep) 100%);
}
.tickets__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(77, 168, 255, 0.25), transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(127, 212, 255, 0.15), transparent 50%);
}
.tickets__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0px, transparent 80px,
      rgba(127, 212, 255, 0.05) 80px, rgba(127, 212, 255, 0.05) 81px);
}
.tickets__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(3, 6, 16, 0.7) 100%);
}
.tickets__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.tickets__inner .eyebrow,
.tickets__inner .section-title { display: inline-flex; }
.tickets__inner .section-title { display: block; }
.tickets__body {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--c-text-mute);
  max-width: 50ch;
  margin: 0 auto 3rem;
  line-height: 1.6;
}
.tickets__body strong { color: var(--c-text); font-weight: 500; }
.tickets__cta {
  margin: 0 auto 1.25rem;
  position: relative;
}
.tickets__cta::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-glow), var(--c-blue));
  filter: blur(20px);
  opacity: 0.6;
  z-index: -1;
  animation: cta-glow 3s ease-in-out infinite;
}
@keyframes cta-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 0.85; transform: scale(1.05); }
}
.tickets__note {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin: 0 0 4rem;
}
.tickets__ticker {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 0.85rem 0;
  background: rgba(10, 31, 61, 0.4);
}
.tickets__ticker-inner {
  display: flex;
  width: max-content;
  will-change: transform;
  /* No CSS animation — driven by JS requestAnimationFrame for pixel-perfect looping */
}
.tickets__ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-blue-glow);
  text-shadow: var(--text-glow-sm);
  flex-shrink: 0;
}
.tickets__ticker-track span {
  padding: 0 1.1rem;
  display: inline-block;
}
.tickets__ticker-track .sep {
  color: var(--c-blue);
  opacity: 0.4;
  padding: 0 0.5rem;
}

/* ============================================================
   CTA STRIP (small inline call-to-action used on subpages)
   ============================================================ */
.cta-strip {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  background: linear-gradient(135deg, var(--c-navy), var(--c-bg-deep));
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.cta-strip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip__title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--c-bg-deep);
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 4rem;
}
.contact-card {
  padding: 2.25rem;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(14, 40, 81, 0.55), rgba(10, 31, 61, 0.25));
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--c-blue-glow);
  box-shadow: 0 16px 40px -10px rgba(77, 168, 255, 0.4);
}
.contact-card--wide { grid-column: 1 / -1; }
.contact-card__name {
  font-family: var(--f-display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
}
.contact-card__icon-row {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0.75rem 0 0;
}
.contact-icon-svg {
  width: 20px;
  height: 20px;
  color: var(--c-blue-glow);
  flex-shrink: 0;
}
.info-card__contact-icon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--c-blue-glow);
  flex-shrink: 0;
}
.info-card__contact-value {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: 0.02em;
  color: var(--c-text);
}
.contact-card__value {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: 0.02em;
  color: var(--c-text);
  line-height: 1.1;
}
.contact-card__value--email {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0;
  word-break: break-all;
}
.contact-card__cue {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-top: 1rem;
  display: inline-block;
}

.contact-socials { margin-bottom: 4rem; }
.contact-socials .eyebrow { display: inline-flex; }
.contact-socials__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.contact-social {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  background: rgba(10, 31, 61, 0.4);
  transition: border-color 0.3s, transform 0.3s;
}
.contact-social:hover,
.contact-social:focus-visible {
  border-color: var(--c-blue-glow);
  transform: translateY(-2px);
}
.contact-social__platform {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-blue);
}
.contact-social__handle {
  font-family: var(--f-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--c-text);
}

.contact-venue {
  padding: 2rem 2.5rem;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  background: rgba(10, 31, 61, 0.4);
}
.contact-venue .eyebrow { display: inline-flex; }
.contact-venue__title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  font-weight: 400;
  color: var(--c-blue-glow);
  text-shadow: var(--text-glow-sm);
}
.contact-venue__address {
  font-size: 1.05rem;
  color: var(--c-text-mute);
  margin: 0;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--c-bg-deep);
  border-top: 1px solid var(--c-line-soft);
  padding: 3rem 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-blue-glow), transparent);
  box-shadow: var(--glow-sm);
  opacity: 0.4;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 2rem;
}
.footer__brand { display: flex; flex-direction: column; gap: 0.4rem; }
.footer__logo {
  font-family: var(--f-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--c-text);
  text-transform: uppercase;
}
.footer__logo span { color: var(--c-blue); }
.footer__tagline {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin: 0;
}
.footer__nav {
  display: flex;
  gap: 1.5rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer__nav a {
  color: var(--c-text-mute);
  transition: color 0.2s;
}
.footer__nav a:hover, .footer__nav a:focus-visible {
  color: var(--c-blue-glow);
  text-shadow: var(--text-glow-sm);
}
.footer__socials {
  display: flex;
  gap: 0.75rem;
}
.footer__socials a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--c-text-mute);
  transition: all 0.3s;
}
.footer__socials a:hover, .footer__socials a:focus-visible {
  border-color: var(--c-blue-glow);
  color: var(--c-blue-glow);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}
.footer__copy {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  text-align: right;
  margin: 0;
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--c-line-soft);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.belief__title span[data-reveal]:nth-child(1) { transition-delay: 0s; }
.belief__title span[data-reveal]:nth-child(2) { transition-delay: 0.15s; }
.belief__title span[data-reveal]:nth-child(3) { transition-delay: 0.3s; }
.message__lines p[data-reveal]:nth-child(1) { transition-delay: 0s; }
.message__lines p[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.message__lines p[data-reveal]:nth-child(3) { transition-delay: 0.2s; }
.message__lines p[data-reveal]:nth-child(4) { transition-delay: 0.3s; }
.message__lines p[data-reveal]:nth-child(5) { transition-delay: 0.4s; }
.message__lines p[data-reveal]:nth-child(6) { transition-delay: 0.5s; }
.message__lines p[data-reveal]:nth-child(7) { transition-delay: 0.6s; }
.message__lines p[data-reveal]:nth-child(8) { transition-delay: 0.7s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .nav__links { gap: 1.5rem; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .teaser__inner { grid-template-columns: 1fr; gap: 3rem; }
  .teaser__inner--reverse .teaser__text { order: 1; }
  .teaser__inner--reverse .teaser__visual { order: 2; }
  .teaser__visual { max-width: 380px; margin: 0 auto; }
  .info-grid__cols { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-socials__row { grid-template-columns: 1fr; }
  .event-facts { grid-template-columns: repeat(2, 1fr); }
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .footer__brand { align-items: center; }
  .footer__nav { justify-content: center; flex-wrap: wrap; }
  .footer__socials { justify-content: center; }
  .footer__copy { text-align: center; padding-top: 1.5rem; margin-top: 0.5rem; }
}

@media (max-width: 767px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { padding-top: 6rem; min-height: 100svh; }
  .hero__title { font-size: clamp(2.75rem, 14vw, 5rem); }
  .hero__ctas .btn { width: 100%; max-width: 360px; }

  .page-head { padding-top: 7rem; padding-bottom: 3rem; }
  .page-title { font-size: clamp(2.5rem, 11vw, 4rem); }
  .event-facts { grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-top: 2rem; }
  .event-facts__item { padding: 1rem 0.85rem; }
  .event-facts__value { font-size: 1.3rem; }
  .event-facts__value--sm { font-size: 0.85rem; }

  .section-title { font-size: clamp(2.25rem, 9vw, 3.25rem); }

  .features__grid { grid-template-columns: 1fr; gap: 1rem; max-width: 380px; margin-left: auto; margin-right: auto; margin-bottom: 2.5rem; }
  .feature { padding: 1.85rem 1.5rem; }

  .belief__title { font-size: clamp(2.5rem, 13vw, 4.5rem); margin-bottom: 2rem; }
  .pull-quote { font-size: clamp(1.25rem, 5vw, 1.75rem); }

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

  .contact-card { padding: 1.85rem 1.5rem; }

  .cta-strip__inner { flex-direction: column; align-items: center; text-align: center; }
  .cta-strip .btn { width: 100%; max-width: 360px; }

  .tickets__ticker-track { font-size: 1.3rem; }
  .tickets__ticker-track span { padding: 0 0.75rem; }
  .tickets__ticker-track .sep { padding: 0 0.25rem; }
  .message__final { font-size: clamp(1.85rem, 8vw, 3rem); }

  .btn--lg, .btn--xl { width: 100%; max-width: 360px; }
}

@media (max-width: 380px) {
  :root { --section-py: 4rem; }
  .container { padding: 0 1rem; }
  .hero__title { font-size: 2.5rem; }
  .belief__title { font-size: 2.5rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__word { opacity: 1 !important; transform: none !important; }
  .hero__lasers,
  .hero__scanline,
  .hero__crossbeams span,
  .hero__particles span,
  .hero__floor-glow,
  .hero__fog,
  .message__scan,
  .tickets__ticker-inner,
  .belief__beams,
  .prism__beam,
  .prism__core,
  .prism__ring,
  .pull-quote,
  .feature__icon,
  .tickets__cta::before,
  .hero__fog,
  .eyebrow__dot {
    animation: none !important;
  }
}

/* ============================================================
   LEGAL PAGE (Privacy Policy)
   ============================================================ */
.page-head--compact {
  padding-top: clamp(6rem, 12vh, 8rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.page-title--sm {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
}

.legal-body {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
  background: var(--c-bg-deep);
}
.legal-body__inner {
  max-width: 780px;
}
.legal-section {
  border-bottom: 1px solid var(--c-line-soft);
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}
.legal-section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.legal-section h2 {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--c-text);
}
.legal-section h3 {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin: 1.75rem 0 0.75rem;
}
.legal-section p {
  font-size: 0.97rem;
  color: var(--c-text-mute);
  line-height: 1.75;
  margin: 0 0 1rem;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
  padding-left: 1.5rem;
  margin: 0.75rem 0 1rem;
  list-style: none;
}
.legal-section ul li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.25rem;
  font-size: 0.95rem;
  color: var(--c-text-mute);
  line-height: 1.6;
}
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-blue);
  opacity: 0.7;
}
.legal-section a {
  color: var(--c-blue-glow);
  text-decoration: underline;
  text-decoration-color: rgba(127, 212, 255, 0.4);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
}
.legal-section a:hover,
.legal-section a:focus-visible {
  color: var(--c-blue-hot);
  text-decoration-color: var(--c-blue-hot);
}
.legal-section strong {
  color: var(--c-text);
  font-weight: 600;
}
.legal-section code {
  font-family: var(--f-mono);
  font-size: 0.85em;
  background: rgba(77, 168, 255, 0.1);
  border: 1px solid var(--c-line);
  padding: 0.15em 0.45em;
  border-radius: 3px;
  color: var(--c-blue-glow);
}

/* ============================================================
   404 / ERROR PAGE
   ============================================================ */
.error-page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--c-bg-deep);
}
.error-page__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.error-page__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(77, 168, 255, 0.14), transparent 55%),
    linear-gradient(180deg, var(--c-navy) 0%, var(--c-bg-deep) 100%);
}
.error-page__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.error-page__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(4rem, 18vw, 12rem);
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 1rem 0 2rem;
}
.error-page__body {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--c-text-mute);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}
.error-page__links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  width: auto;
  max-width: 760px;
  margin: 0 auto;
  z-index: 200;
  background: rgba(14, 28, 60, 0.98);
  border: 1px solid var(--c-line);
  border-radius: 6px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(127, 212, 255, 0.1) inset;
  animation: banner-rise 0.5s var(--ease-out) both;
}
.cookie-banner.is-hiding {
  animation: banner-sink 0.4s var(--ease-in-out) forwards;
}
@keyframes banner-rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes banner-sink {
  to { opacity: 0; transform: translateY(16px); }
}
.cookie-banner__inner {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 180px;
}
.cookie-banner__title {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-blue-glow);
  margin: 0 0 0.35rem;
}
.cookie-banner__body {
  font-size: 0.85rem;
  color: var(--c-text-mute);
  margin: 0;
  line-height: 1.55;
}
.cookie-banner__link {
  color: var(--c-blue-glow);
  text-decoration: underline;
  text-decoration-color: rgba(127, 212, 255, 0.4);
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.cookie-banner__link:hover { color: var(--c-blue-hot); }
.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 6px 6px 0 0;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
  .cookie-banner.is-hiding {
    animation: banner-sink 0.4s var(--ease-in-out) forwards;
  }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.25rem 1.25rem calc(1rem + env(safe-area-inset-bottom, 0px));
  }
  .cookie-banner__actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
  }
  .cookie-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }
  #cookieAccept { order: -1; }
}

/* ============================================================
   SPACING REFINEMENTS
   ============================================================ */

/* Ensure section-lede doesn't double-margin when followed by a grid */
.features .section-lede,
.pricing .section-lede {
  margin-bottom: 3.5rem;
}

/* Event facts responsive refinements */
@media (max-width: 560px) {
  .event-facts {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 400px) {
  .event-facts {
    grid-template-columns: 1fr;
  }
  .event-facts__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Tighten tier grid on medium screens so 3 cols then 2 then 1 */
@media (max-width: 1100px) and (min-width: 768px) {
  .tiers { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
  .tiers { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* Info grid: on very narrow mobile, full padding */
@media (max-width: 480px) {
  .info-card { padding: 1.75rem 1.25rem; }
}

/* Consistent vertical rhythm in teaser sections */
.teaser--event,
.teaser--about {
  border-top: 1px solid var(--c-line-soft);
}

/* About page belief section — remove double border at top */
body[data-page="about"] .belief {
  border-top: none;
}

/* Legal page: nav always solid */
body[data-page="legal"] .nav,
body[data-page="error"] .nav {
  background: rgba(5, 10, 24, 0.9);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--c-line-soft);
}

/* ============================================================
   MOBILE RESPONSIVE — ADDITIONAL FIXES
   ============================================================ */

/* Contact socials: 3-col grid collapses to 1-col on mobile */
@media (max-width: 767px) {
  .contact-socials__row {
    grid-template-columns: 1fr;
  }

  /* Hero CTAs: column stack so both buttons are equal width and centred */
  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  /* Footer nav: allow wrapping and tighten gap so 5 items fit on 320px */
  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem 1.25rem;
  }

  /* Teaser body: remove max-width constraint when stacked to full width */
  .teaser__body {
    max-width: 100%;
  }

  /* Contact card wide: explicit full width on single col grid */
  .contact-card--wide {
    grid-column: 1;
  }

  /* Message lines: slightly tighter on small screens */
  .message__lines p {
    font-size: clamp(1.25rem, 6vw, 2rem);
  }

  /* Info grid: tighten padding on small phones */
  .info-grid {
    padding-bottom: 3rem;
  }
}

/* Extra small (iPhone SE, 320px) */
@media (max-width: 380px) {
  /* Event facts: single column on very small screens */
  .event-facts {
    grid-template-columns: 1fr;
  }
  .event-facts__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  /* Tier pricing: slightly smaller numbers */
  .tier__amount {
    font-size: 3rem;
  }

  /* Pull quote tighter */
  .pull-quote {
    font-size: 1.15rem;
  }

  /* Section lede tighter */
  .section-lede {
    font-size: 0.95rem;
  }
}

/* ============================================================
   CONTACT MAP
   ============================================================ */
.contact-map {
  margin-top: 1.5rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: 0 0 0 1px rgba(127, 212, 255, 0.1) inset;
  position: relative;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 320px;
  filter: invert(90%) hue-rotate(180deg) brightness(0.85) saturate(0.9);
}
.contact-venue__directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-blue-glow);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.contact-venue__directions:hover,
.contact-venue__directions:focus-visible {
  color: var(--c-blue-hot);
  gap: 0.75rem;
}

@media (max-width: 767px) {
  .contact-map iframe { height: 240px; }
}
