/* ============================================================
   FREQ FEST — STYLES
   Theme: Mystical / Electric / Cinematic
   Palette: Electric blue on near-black navy
   ============================================================ */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Color */
  --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-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 tokens */
  --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);

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

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

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

/* ---------- 2. 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 */
.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; }

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

/* ---------- 3. 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__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-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;
}

/* ---------- 4. 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--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
   ============================================================ */
.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;
}
.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; }

/* Hamburger */
.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 overlay */
.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__link--accent .mobile-menu__main {
  color: var(--c-blue-glow);
  text-shadow: var(--text-glow-sm);
}
.mobile-menu__cta { margin-top: 1.5rem; }

/* ============================================================
   1. HERO
   ============================================================ */
.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);
}

/* Layered laser background */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__bg::before {
  /* Base navy gradient with vignette */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(77, 168, 255, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(127, 212, 255, 0.10), transparent 60%),
    linear-gradient(180deg, var(--c-navy) 0%, var(--c-bg-deep) 100%);
}

.hero__fog {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(77, 168, 255, 0.12), transparent 70%);
  filter: blur(40px);
  animation: fog-pulse 8s ease-in-out infinite;
}
@keyframes fog-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* Laser beams emerging from a vanishing point */
.hero__lasers {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  perspective: 600px;
}
.hero__lasers span {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100vh;
  background: linear-gradient(180deg, transparent 0%, rgba(127, 212, 255, 0.6) 50%, rgba(77, 168, 255, 0.85) 100%);
  filter: blur(0.6px);
  transform-origin: bottom center;
  opacity: 0;
  animation: laser-sweep 7s linear infinite;
  box-shadow: 0 0 12px rgba(127, 212, 255, 0.7);
}
.hero__lasers span:nth-child(1) { animation-delay: 0s;   transform: rotate(-45deg); }
.hero__lasers span:nth-child(2) { animation-delay: 0.8s; transform: rotate(-30deg); }
.hero__lasers span:nth-child(3) { animation-delay: 1.6s; transform: rotate(-15deg); }
.hero__lasers span:nth-child(4) { animation-delay: 2.4s; transform: rotate(0deg); }
.hero__lasers span:nth-child(5) { animation-delay: 3.2s; transform: rotate(15deg); }
.hero__lasers span:nth-child(6) { animation-delay: 4s;   transform: rotate(30deg); }
.hero__lasers span:nth-child(7) { animation-delay: 4.8s; transform: rotate(45deg); }
.hero__lasers span:nth-child(8) { animation-delay: 5.6s; transform: rotate(-7deg); }
@keyframes laser-sweep {
  0%   { opacity: 0; }
  20%  { opacity: 0.55; }
  60%  { opacity: 0.35; }
  100% { opacity: 0; }
}

.hero__scanline {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-blue-glow) 50%, transparent);
  box-shadow: 0 0 14px rgba(127, 212, 255, 0.6);
  animation: scan-vertical 9s linear infinite;
  opacity: 0.45;
}
@keyframes scan-vertical {
  0%   { top: 0%; }
  100% { top: 100%; }
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(127, 212, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 212, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(3, 6, 16, 0.85) 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;
  margin-bottom: 4rem;
}

/* Quick-jump pill strip */
.hero__quickjump {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  background: rgba(10, 31, 61, 0.5);
  backdrop-filter: blur(8px);
}
.hero__quickjump-label {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  padding: 0 0.5rem 0 0.25rem;
}
.hero__quickjump-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text);
  background: rgba(127, 212, 255, 0.06);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s var(--ease-out);
}
.hero__quickjump-pill:hover,
.hero__quickjump-pill:focus-visible {
  background: rgba(77, 168, 255, 0.18);
  border-color: var(--c-blue-glow);
  color: var(--c-blue-glow);
  transform: translateY(-2px);
}
.hero__quickjump-pill--accent {
  background: var(--c-blue);
  color: var(--c-bg-deep);
  border-color: var(--c-blue);
  font-weight: 500;
}
.hero__quickjump-pill--accent:hover,
.hero__quickjump-pill--accent:focus-visible {
  background: var(--c-blue-glow);
  color: var(--c-bg-deep);
  border-color: var(--c-blue-glow);
  box-shadow: var(--glow-sm);
}
.status-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4DFFB0;
  box-shadow: 0 0 10px #4DFFB0;
  animation: dot-pulse 1.6s ease-in-out infinite;
}

/* Section markers — visual anchors to help party-people scan the page */
.section-marker {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  font-family: var(--f-mono);
}
.section-marker--center {
  justify-content: center;
  display: flex;
}
.section-marker__num {
  font-family: var(--f-display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--c-blue);
  line-height: 1;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--c-blue);
  border-radius: 2px;
  background: rgba(77, 168, 255, 0.08);
  box-shadow: 0 0 12px rgba(77, 168, 255, 0.18) inset;
}
.section-marker__line {
  flex: 0 0 auto;
  width: 3rem;
  height: 1px;
  background: var(--c-blue);
  box-shadow: var(--glow-sm);
  opacity: 0.5;
}
.section-marker__label {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-blue-glow);
  text-shadow: var(--text-glow-sm);
}
.section-marker--accent .section-marker__num {
  background: var(--c-blue);
  color: var(--c-bg-deep);
  box-shadow: var(--glow-md);
}
.section-marker--accent .section-marker__label { color: var(--c-text); }

.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;
}
/* Hide scroll cue when viewport is too short — prevents overlap with hero meta strip */
@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; }
}

/* ============================================================
   2. POSTER
   ============================================================ */
.poster {
  padding: var(--section-py) 0;
  background:
    linear-gradient(180deg, var(--c-bg-deep) 0%, var(--c-bg) 50%, var(--c-bg-deep) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.poster::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;
}

.poster .eyebrow,
.poster .section-title { display: inline-flex; }
.poster .section-title { display: block; }
.poster .section-lede { margin: 0 auto 3rem; }

.poster__frame {
  display: inline-block;
  position: relative;
  border-radius: 4px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  cursor: pointer;
  max-width: 480px;
  width: 100%;
}
.poster__frame:hover,
.poster__frame:focus-visible {
  transform: scale(1.025) translateY(-4px);
  box-shadow: var(--glow-lg);
}
.poster__frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--c-blue), var(--c-blue-glow), var(--c-blue));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s;
  filter: blur(12px);
}
.poster__frame:hover::before,
.poster__frame:focus-visible::before { opacity: 0.85; }

/* Poster art (CSS art-piece placeholder) */
.poster__art {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-navy);
  isolation: isolate;
}
.poster__art-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(77, 168, 255, 0.7), transparent 60%),
    radial-gradient(ellipse at 50% 30%, rgba(127, 212, 255, 0.25), transparent 60%),
    linear-gradient(180deg, #061630 0%, #0a1f3d 50%, #1d4d8c 100%);
}
.poster__art-rays {
  position: absolute;
  bottom: -20%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translateX(-50%);
  background:
    conic-gradient(from 180deg at 50% 100%,
      transparent 0deg,
      rgba(127, 212, 255, 0.08) 10deg,
      transparent 20deg,
      rgba(127, 212, 255, 0.12) 30deg,
      transparent 40deg,
      rgba(127, 212, 255, 0.06) 60deg,
      transparent 70deg,
      rgba(127, 212, 255, 0.1) 90deg,
      transparent 100deg,
      rgba(127, 212, 255, 0.08) 110deg,
      transparent 120deg,
      rgba(127, 212, 255, 0.12) 150deg,
      transparent 160deg,
      rgba(127, 212, 255, 0.06) 170deg,
      transparent 180deg);
  animation: rays-rotate 20s linear infinite;
}
@keyframes rays-rotate {
  to { transform: translateX(-50%) rotate(360deg); }
}
.poster__art-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(127, 212, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 212, 255, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, transparent 50%, black 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 50%, black 100%);
}
.poster__art-content {
  position: absolute;
  inset: 0;
  padding: 8% 7%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  color: var(--c-text);
}
.poster__art-eyebrow {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--c-blue-glow);
  text-transform: uppercase;
  border: 1px solid var(--c-line);
  padding: 0.4rem 0.6rem;
  align-self: flex-start;
  background: rgba(5, 10, 24, 0.4);
}
.poster__art-title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 9vw, 5rem);
  line-height: 0.85;
  letter-spacing: 0.005em;
  margin: auto 0;
  display: flex;
  flex-direction: column;
}
.poster__art-title-accent {
  color: var(--c-blue-glow);
  text-shadow: var(--text-glow-sm);
}
.poster__art-tagline {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--c-text);
  text-transform: uppercase;
  margin-top: 0.5rem;
  opacity: 0.85;
}
.poster__art-eq {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 40px;
  margin: 1.5rem 0;
}
.poster__art-eq span {
  flex: 1;
  background: linear-gradient(180deg, var(--c-blue-glow), var(--c-blue));
  box-shadow: var(--glow-sm);
  border-radius: 1px;
  animation: eq-bar 1.4s ease-in-out infinite;
}
.poster__art-eq span:nth-child(1)  { animation-delay: 0.0s; height: 30%; }
.poster__art-eq span:nth-child(2)  { animation-delay: 0.1s; height: 60%; }
.poster__art-eq span:nth-child(3)  { animation-delay: 0.2s; height: 80%; }
.poster__art-eq span:nth-child(4)  { animation-delay: 0.3s; height: 50%; }
.poster__art-eq span:nth-child(5)  { animation-delay: 0.4s; height: 90%; }
.poster__art-eq span:nth-child(6)  { animation-delay: 0.5s; height: 40%; }
.poster__art-eq span:nth-child(7)  { animation-delay: 0.6s; height: 75%; }
.poster__art-eq span:nth-child(8)  { animation-delay: 0.7s; height: 55%; }
.poster__art-eq span:nth-child(9)  { animation-delay: 0.8s; height: 85%; }
.poster__art-eq span:nth-child(10) { animation-delay: 0.9s; height: 35%; }
.poster__art-eq span:nth-child(11) { animation-delay: 1.0s; height: 65%; }
.poster__art-eq span:nth-child(12) { animation-delay: 1.1s; height: 45%; }
.poster__art-eq span:nth-child(13) { animation-delay: 1.2s; height: 78%; }
.poster__art-eq span:nth-child(14) { animation-delay: 1.3s; height: 25%; }
.poster__art-eq span:nth-child(15) { animation-delay: 1.4s; height: 70%; }
@keyframes eq-bar {
  0%, 100% { transform: scaleY(0.4); }
  50%      { transform: scaleY(1); }
}
.poster__art-footer {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--c-blue-glow);
  text-transform: uppercase;
  border-top: 1px solid var(--c-line);
  padding-top: 0.85rem;
  gap: 1rem;
}

.poster__cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-blue-glow);
  padding: 0.7rem 1.25rem;
  border: 1px solid var(--c-line);
  border-radius: 99px;
  transition: background 0.3s, color 0.3s;
}
.poster__frame:hover .poster__cta-pill {
  background: rgba(77, 168, 255, 0.15);
  color: var(--c-text);
}

/* CTA row under the event poster */
.poster__cta-row {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* About section card wrap (cards under the merged lore + intro) */
.about__cards-wrap {
  margin-top: 4rem;
}

/* ============================================================
   3. LORE
   ============================================================ */
.lore {
  padding: var(--section-py) 0;
  background: var(--c-bg-deep);
  position: relative;
}
.lore__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.lore__visual {
  position: relative;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}
.prism {
  position: relative;
  width: min(100%, 480px);
  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); }
}

.lore__text p {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--c-text-mute);
  margin: 0 0 1.25rem;
  max-width: 56ch;
}
.lore__text strong {
  color: var(--c-blue-glow);
  font-weight: 500;
}
.lore__para {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
  color: var(--c-text) !important;
  letter-spacing: 0.02em;
  margin-bottom: 2rem !important;
  line-height: 1.2;
}

/* ============================================================
   4. BELIEF
   ============================================================ */
.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;
}
.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__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: glow-pulse 4s ease-in-out infinite;
}
.pull-quote--lg {
  font-size: clamp(1.85rem, 3.6vw, 3rem);
  max-width: 28ch;
}
.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 glow-pulse {
  0%, 100% { text-shadow: var(--text-glow-sm); }
  50%      { text-shadow: var(--text-glow-md); }
}

/* ============================================================
   5. WORLD
   ============================================================ */
.world {
  padding: var(--section-py) 0;
  background: var(--c-bg-deep);
  position: relative;
  overflow: hidden;
}
.world__floor {
  position: absolute;
  bottom: 0; left: 50%;
  width: 200%;
  height: 60%;
  transform: translateX(-50%) perspective(400px) rotateX(60deg);
  background-image:
    linear-gradient(rgba(127, 212, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127, 212, 255, 0.18) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(0deg, black 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(0deg, black 0%, transparent 80%);
  animation: floor-pan 12s linear infinite;
  pointer-events: none;
  opacity: 0.6;
}
@keyframes floor-pan {
  0%   { background-position: 0 0; }
  100% { background-position: 0 60px; }
}
.world::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(77, 168, 255, 0.06));
  pointer-events: none;
}

.world__head {
  text-align: center;
  margin-bottom: 4rem;
}
.world__head .eyebrow,
.world__head .section-title { display: inline-flex; }
.world__head .section-title { display: block; }
.world__head .section-lede { margin: 0 auto; }

.world__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.card {
  position: relative;
  padding: 2.5rem 2rem;
  background:
    linear-gradient(180deg, rgba(14, 40, 81, 0.6), rgba(10, 31, 61, 0.3));
  border: 1px solid var(--c-line);
  border-radius: 4px;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
  overflow: hidden;
  isolation: isolate;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(77, 168, 255, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.card::after {
  /* corner mark */
  content: '';
  position: absolute;
  top: 1rem; right: 1rem;
  width: 14px; height: 14px;
  border-top: 1px solid var(--c-blue);
  border-right: 1px solid var(--c-blue);
  opacity: 0.5;
  transition: opacity 0.4s, top 0.4s, right 0.4s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--c-blue-glow);
  box-shadow: 0 18px 40px -10px rgba(77, 168, 255, 0.45), 0 0 0 1px rgba(127, 212, 255, 0.4) inset;
}
.card:hover::before { opacity: 1; }
.card:hover::after { opacity: 1; top: 0.6rem; right: 0.6rem; }
.card:hover .card__icon { transform: scale(1.08); color: var(--c-blue-hot); }

.card__icon {
  width: 56px; height: 56px;
  margin-bottom: 1.5rem;
  color: var(--c-blue-glow);
  filter: drop-shadow(0 0 12px rgba(127, 212, 255, 0.4));
  animation: glow-pulse 4s ease-in-out infinite;
  transition: transform 0.4s var(--ease-out), color 0.3s;
}
.card__num {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-bottom: 0.6rem;
  display: block;
}
.card__title {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--c-text);
}
.card__text {
  font-size: 0.95rem;
  color: var(--c-text-mute);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   6. RITUAL
   ============================================================ */
.ritual {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
  background: var(--c-bg-deep);
}
.ritual__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ritual__burst {
  position: absolute;
  bottom: 0; left: 50%;
  width: 120%;
  height: 100%;
  transform: translateX(-50%);
  background:
    conic-gradient(from 180deg at 50% 100%,
      transparent 0deg,
      rgba(77, 168, 255, 0.18) 5deg,
      transparent 10deg,
      rgba(127, 212, 255, 0.22) 20deg,
      transparent 30deg,
      rgba(77, 168, 255, 0.15) 50deg,
      transparent 65deg,
      rgba(127, 212, 255, 0.2) 90deg,
      transparent 105deg,
      rgba(77, 168, 255, 0.18) 130deg,
      transparent 145deg,
      rgba(127, 212, 255, 0.15) 165deg,
      transparent 180deg);
  filter: blur(2px);
  opacity: 0.7;
}
.ritual__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, transparent 0%, var(--c-bg-deep) 75%),
    linear-gradient(180deg, var(--c-bg-deep) 0%, transparent 30%);
}
.ritual__scan {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--c-blue-glow), transparent);
  box-shadow: 0 0 24px rgba(127, 212, 255, 0.7);
  animation: scan-horizontal 8s ease-in-out infinite;
}
@keyframes scan-horizontal {
  0%   { left: 0%;  opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.ritual__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}
.ritual__body {
  margin: 0 auto 2rem;
  max-width: 56ch;
}
.ritual__body p {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--c-text-mute);
  margin: 0 0 1.25rem;
  line-height: 1.65;
}
.ritual__body strong {
  color: var(--c-blue-glow);
  font-weight: 500;
}

/* ============================================================
   7. TICKETS
   ============================================================ */
.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: 1rem 0;
  background: rgba(10, 31, 61, 0.4);
}
.tickets__ticker-track {
  display: inline-flex;
  gap: 2.5rem;
  white-space: nowrap;
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-blue-glow);
  text-shadow: var(--text-glow-sm);
  animation: ticker 30s linear infinite;
  padding-left: 2.5rem;
}
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ============================================================
   8. MESSAGE
   ============================================================ */
.message {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  position: relative;
  overflow: hidden;
  background: var(--c-bg-deep);
}
.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;
}
.message__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.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);
}
.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));
}

/* ============================================================
   9. CONTACT
   ============================================================ */
.contact {
  padding: var(--section-py) 0;
  background: var(--c-bg-deep);
  position: relative;
}
.contact__inner {
  text-align: center;
  max-width: 800px;
}
.contact__inner .eyebrow,
.contact__inner .section-title { display: inline-flex; }
.contact__inner .section-title { display: block; }
.contact__inner .section-lede { margin: 0 auto 3rem; }

.contact__methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact__method {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 2rem;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  background: rgba(10, 31, 61, 0.4);
  text-align: left;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.contact__method:hover,
.contact__method:focus-visible {
  border-color: var(--c-blue-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -10px rgba(77, 168, 255, 0.4);
}
.contact__method-label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.contact__method-icon {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  font-size: 0.85rem;
  color: var(--c-blue-glow);
}
.contact__method-value {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: 0.02em;
  color: var(--c-text);
  word-break: break-all;
}
.contact__method-cue {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.25rem;
  color: var(--c-blue-glow);
  transition: transform 0.3s;
}
.contact__method:hover .contact__method-cue {
  transform: translate(4px, -4px);
}

/* ============================================================
   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 1fr;
  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__socials {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}
.footer__socials a {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  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;
}

/* ============================================================
   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
   ============================================================ */

/* Tablet */
@media (max-width: 1023px) {
  .nav__links { gap: 1.5rem; }
  .lore__grid { grid-template-columns: 1fr; }
  .lore__visual { max-width: 380px; margin: 0 auto; }
  .world__cards { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .footer__copy { text-align: center; }
  .footer__brand { align-items: center; }
}

/* Mobile */
@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%; }
  .hero__quickjump { gap: 0.4rem; padding: 0.7rem 0.85rem; max-width: 100%; }
  .hero__quickjump-label { display: none; }
  .hero__quickjump-pill { padding: 0.5rem 0.85rem; font-size: 0.65rem; letter-spacing: 0.12em; }
  .hero__scroll { display: none; }

  .section-title { font-size: clamp(2.25rem, 9vw, 3.25rem); }
  .section-marker { gap: 0.65rem; margin-bottom: 1.25rem; }
  .section-marker__line { width: 1.5rem; }
  .section-marker__num { font-size: 1rem; padding: 0.4rem 0.55rem; }
  .section-marker__label { font-size: 0.62rem; letter-spacing: 0.22em; }

  .poster__art-content { padding: 7%; }
  .poster__art-eq { height: 28px; margin: 1rem 0; }

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

  .contact__methods { grid-template-columns: 1fr; }
  .contact__method-value { font-size: 1.4rem; }

  .tickets__ticker-track { font-size: 1.4rem; gap: 1.5rem; padding-left: 1.5rem; }

  .message__final { font-size: clamp(1.85rem, 8vw, 3rem); }

  .footer__socials { gap: 0.5rem; }
  .footer__socials a { width: 38px; height: 38px; }

  /* Make CTAs full-width on mobile */
  .btn--lg, .btn--xl { width: 100%; max-width: 360px; }
}

/* Small mobile */
@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,
  .ritual__scan,
  .message__scan,
  .tickets__ticker-track,
  .world__floor,
  .belief__beams,
  .ritual__burst,
  .prism__beam,
  .prism__core,
  .prism__ring,
  .pull-quote,
  .card__icon,
  .poster__art-rays,
  .poster__art-eq span,
  .tickets__cta::before,
  .hero__fog,
  .status-pulse,
  .eyebrow__dot {
    animation: none !important;
  }
}
