/* ==========================================================================
   SAVISKAR 2026 // AEVORIAN REVERIE // STANDALONE TEASER MICROSITE
   Zero-build, High-Fidelity Static Styling Matching Next.js Design Language
   ========================================================================== */

:root {
  --bg-black: #000000;
  --bg-deep: #030308;
  --bg-card: rgba(10, 8, 18, 0.68);
  --bg-card-hover: rgba(20, 14, 34, 0.82);

  --color-violet-glow: rgba(168, 85, 247, 0.28);
  --color-violet-core: #a855f7;
  --color-violet-light: #c084fc;
  --color-purple-deep: #581c87;
  --color-cyan: #22d3ee;
  --color-emerald: #34d399;
  --color-red: #ef4444;

  --border-glass: rgba(255, 255, 255, 0.12);
  --border-glass-bright: rgba(255, 255, 255, 0.25);
  --border-violet: rgba(168, 85, 247, 0.35);

  --font-editorial: 'Instrument Serif', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'Space Mono', SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

/* --------------------------------------------------------------------------
   RESET & SYSTEM BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  background-color: var(--bg-black);
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  height: 100%;
}

body {
  background-color: var(--bg-black);
  color: #ffffff;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  position: relative;
  selection-background-color: #ffffff;
}

::selection {
  background: #ffffff;
  color: #000000;
}

a, button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  color: inherit;
  text-decoration: none;
}

.hidden {
  display: none !important;
}

.font-editorial {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   FILM GRAIN & SCANLINES (Universal Atmospheric Overlay)
   -------------------------------------------------------------------------- */
.cinematic-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.035;
  background-image: repeating-linear-gradient(0deg, #fff, #fff 1px, transparent 1px, transparent 2px);
  background-size: 100% 2px;
}

/* ==========================================================================
   PORTED PRELOADER STYLES (Identical visual language to Main App)
   ========================================================================== */
.preloader-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: #000000;
  color: #ffffff;
  user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.preloader-overlay.is-exiting {
  opacity: 0;
  transform: scale(1.035);
  filter: blur(8px);
  pointer-events: none;
}

.preloader-backglow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 9999px;
  filter: blur(100px);
  pointer-events: none;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, rgba(59, 130, 246, 0.08) 50%, transparent 75%);
  transition: opacity 0.4s ease;
  width: 90vw;
  height: 60vh;
}

.preloader-scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: screen;
  z-index: 30;
  background-image: repeating-linear-gradient(0deg, #fff, #fff 1px, transparent 1px, transparent 2px);
  background-size: 100% 2px;
}

.preloader-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.92) 100%);
  z-index: 20;
  transition: opacity 0.3s ease;
}

/* Top HUD Bar */
.preloader-hud-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(1.25rem + var(--safe-top)) 1.5rem 1rem;
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .preloader-hud-top {
    padding: calc(2rem + var(--safe-top)) 3rem 1rem;
  }
}

.preloader-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.pulse-beacon {
  position: relative;
  display: flex;
  width: 0.5rem;
  height: 0.5rem;
}

.beacon-ping {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background-color: var(--color-violet-light);
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.beacon-dot {
  position: relative;
  display: inline-flex;
  border-radius: 9999px;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-violet-core);
}

@keyframes ping {
  75%, 100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.badge-text {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.preloader-skip-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.65);
  padding: 0.4rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.preloader-skip-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.preloader-skip-btn:active {
  transform: scale(0.96);
}

.skip-icon {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--color-violet-light);
  transition: transform 0.2s ease;
}

.preloader-skip-btn:hover .skip-icon {
  transform: translateX(2px);
}

/* Center Aperture Box */
.aperture-box {
  position: absolute;
  overflow: hidden;
  z-index: 10;
  background-color: #050509;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: width, height, border-radius, transform;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: border-radius 0.2s ease, box-shadow 0.2s ease;
}

.aperture-box.fullscreen {
  left: 0 !important;
  top: 0 !important;
  transform: none !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0px !important;
  border: none !important;
  box-shadow: none !important;
}

/* Viewfinder Camera HUD */
.viewfinder-hud {
  position: absolute;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: opacity 0.35s ease;
}

@media (min-width: 768px) {
  .viewfinder-hud {
    padding: 1.5rem 1.75rem;
  }
}

.hud-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hud-bracket-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bracket {
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
}

.bracket-tl { border-top: 2px solid rgba(255, 255, 255, 0.85); border-left: 2px solid rgba(255, 255, 255, 0.85); }
.bracket-tr { border-top: 2px solid rgba(255, 255, 255, 0.85); border-right: 2px solid rgba(255, 255, 255, 0.85); }
.bracket-bl { border-bottom: 2px solid rgba(255, 255, 255, 0.85); border-left: 2px solid rgba(255, 255, 255, 0.85); }
.bracket-br { border-bottom: 2px solid rgba(255, 255, 255, 0.85); border-right: 2px solid rgba(255, 255, 255, 0.85); }

.hud-mono-text {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
}

.hud-rec-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.rec-disc {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-red);
  box-shadow: 0 0 8px var(--color-red);
  animation: pulseRec 1s ease-in-out infinite alternate;
}

@keyframes pulseRec {
  0% { opacity: 0.4; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.1); }
}

.hud-rec-text {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
}

.hud-frame-text {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.5);
}

.hud-crosshair {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.35;
  position: relative;
}

.ch-horiz {
  width: 1.5rem;
  height: 1px;
  background-color: #ffffff;
}

.ch-vert {
  height: 1.5rem;
  width: 1px;
  background-color: #ffffff;
  position: absolute;
}

/* Preloader Cinema Video */
.preloader-cinema-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.7s ease-out, transform 0.5s ease-out;
  transform: scale(1.03);
}

.video-fallback-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-cinema-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 20;
}

/* Bottom Telemetry HUD Bar */
.preloader-hud-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.25rem calc(1.5rem + var(--safe-bottom));
  pointer-events: none;
}

@media (min-width: 768px) {
  .preloader-hud-bottom {
    padding: 0 2rem calc(2rem + var(--safe-bottom));
  }
}

.telemetry-card {
  width: 100%;
  max-width: 56rem;
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 1.25rem;
  border-radius: 1.125rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75);
}

@media (min-width: 768px) {
  .telemetry-card {
    padding: 1.25rem 1.75rem;
  }
}

.telemetry-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.telemetry-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.telemetry-badges-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.equalizer-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 0.95rem;
  padding: 2px 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.eq-bar {
  width: 2px;
  border-radius: 9999px;
  background-color: var(--color-violet-core);
  animation: eqBounce 0.7s ease-in-out infinite alternate;
}

.bar-1 { height: 35%; animation-delay: 0.05s; }
.bar-2 { height: 75%; animation-delay: 0.25s; }
.bar-3 { height: 95%; animation-delay: 0.1s; }
.bar-4 { height: 50%; animation-delay: 0.35s; }
.bar-5 { height: 80%; animation-delay: 0.15s; }
.bar-6 { height: 40%; animation-delay: 0.4s; }
.bar-7 { height: 90%; animation-delay: 0.2s; }
.bar-8 { height: 60%; animation-delay: 0.3s; }

@keyframes eqBounce {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

.telemetry-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-violet-light);
  font-weight: 700;
}

.asset-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
}

.asset-pill.syncing {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.asset-pill.primed {
  color: var(--color-emerald);
  background: rgba(6, 78, 59, 0.6);
  border: 1px solid rgba(52, 211, 153, 0.4);
}

.sync-dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background-color: var(--color-violet-core);
  animation: pulseDot 1s infinite alternate;
}

.asset-pill.primed .sync-dot {
  background-color: var(--color-emerald);
  animation: none;
}

@keyframes pulseDot {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

.telemetry-status-text {
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 70vw;
}

@media (min-width: 768px) {
  .telemetry-status-text {
    font-size: 0.875rem;
    max-width: 40rem;
  }
}

.counter-display {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: var(--font-mono);
}

.counter-value {
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #ffffff;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.45);
}

@media (min-width: 768px) {
  .counter-value {
    font-size: 2.25rem;
  }
}

.counter-unit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.progress-track {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #7c3aed 0%, #ffffff 70%, #c084fc 100%);
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.95);
  border-radius: 9999px;
  transition: width 0.06s linear;
}

.telemetry-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   MAIN HERO & REVEAL OVERLAY (Hype Page)
   ========================================================================== */
.hero-container {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  background-color: var(--bg-black);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Hero Media Wrapper (Full Bleed Background Video) */
.hero-media-wrapper {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background-color: #000000;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: opacity 0.5s ease;
}

.hero-static-poster {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reduced Motion Poster Fallback */
.reduced-motion-poster {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/poster.webp');
  background-size: cover;
  background-position: center;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none !important;
  }
  .reduced-motion-poster {
    display: block !important;
  }
}

/* Ambient Stage Overlays */
.stage-haze-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 48%, rgba(168, 85, 247, 0.22) 0%, rgba(124, 58, 237, 0.08) 50%, transparent 75%);
  filter: blur(90px);
  opacity: 0.9;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(3, 3, 8, 0.45) 0%, rgba(0, 0, 0, 0.82) 75%, #000000 100%),
              linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, transparent 35%, rgba(0, 0, 0, 0.85) 100%);
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.08) 0%, rgba(168, 85, 247, 0.12) 30%, transparent 70%);
}

/* --------------------------------------------------------------------------
   HERO CONTENT SHELL (Z-Index 10, Safe Areas)
   -------------------------------------------------------------------------- */
.hero-content-shell {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  padding-left: max(1.25rem, var(--safe-left));
  padding-right: max(1.25rem, var(--safe-right));
  padding-top: max(1rem, var(--safe-top));
  padding-bottom: max(1rem, var(--safe-bottom));
}

@media (min-width: 768px) {
  .hero-content-shell {
    padding-left: max(2.5rem, var(--safe-left));
    padding-right: max(2.5rem, var(--safe-right));
    padding-top: max(1.5rem, var(--safe-top));
    padding-bottom: max(1.5rem, var(--safe-bottom));
  }
}

/* --------------------------------------------------------------------------
   TOP NAVIGATION BAR
   -------------------------------------------------------------------------- */
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-emblem {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.4));
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-institution {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.brand-location {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.5);
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.intel-badge {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: rgba(10, 8, 20, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 640px) {
  .intel-badge {
    display: inline-flex;
  }
}

.intel-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: var(--color-cyan);
  box-shadow: 0 0 8px var(--color-cyan);
}

.nav-audio-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  background: rgba(10, 8, 20, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.nav-audio-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-audio-btn:active {
  transform: translateY(0);
}

.audio-svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--color-violet-light);
}

/* --------------------------------------------------------------------------
   CENTER REVEAL BLOCK: Grand Theme & Date Presentation
   -------------------------------------------------------------------------- */
.reveal-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: auto 0;
  padding: 1.5rem 0;
  max-width: 58rem;
  align-self: center;
  width: 100%;
}

.eyebrow-container {
  margin-bottom: 0.85rem;
}

.glow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1.15rem;
  border-radius: 9999px;
  background: rgba(168, 85, 247, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.35);
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.pill-sparkle {
  color: var(--color-violet-light);
  font-size: 0.75rem;
}

.pill-text {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 768px) {
  .pill-text {
    font-size: 0.6875rem;
    letter-spacing: 0.3em;
  }
}

/* Festival Main Brand Logo Centerpiece */
.hero-logo-centerpiece {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0 0.85rem;
  width: 100%;
}

.hero-logo-halo {
  position: absolute;
  width: clamp(260px, 45vw, 420px);
  height: 90px;
  border-radius: 9999px;
  background: radial-gradient(ellipse, rgba(168, 85, 247, 0.45) 0%, rgba(124, 58, 237, 0.18) 50%, transparent 75%);
  filter: blur(28px);
  pointer-events: none;
  animation: pulseLogoHalo 3.5s ease-in-out infinite alternate;
}

@keyframes pulseLogoHalo {
  0% { transform: scale(0.92); opacity: 0.55; }
  100% { transform: scale(1.1); opacity: 0.95; }
}

.main-center-logo {
  position: relative;
  z-index: 2;
  width: clamp(220px, 36vw, 380px);
  height: auto;
  max-height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(168, 85, 247, 0.85)) drop-shadow(0 0 45px rgba(255, 255, 255, 0.3));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-center-logo:hover {
  transform: scale(1.035);
}

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

/* Theme Block */
.theme-wrapper {
  margin: 0.75rem 0 1.25rem;
  position: relative;
  max-width: 44rem;
}

.theme-frame-flair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.flair-line {
  height: 1px;
  width: clamp(2rem, 8vw, 5rem);
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.8), transparent);
}

.flair-node {
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  background-color: var(--color-violet-core);
  box-shadow: 0 0 8px var(--color-violet-core);
}

.theme-heading {
  font-size: clamp(2.5rem, 8.5vw, 5.8rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #ffffff 15%, #e9d5ff 55%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.45));
}

.theme-cryptic-motto {
  margin-top: 0.5rem;
  font-size: clamp(0.85rem, 2.2vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  font-style: italic;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* --------------------------------------------------------------------------
   DATES DISPLAY: Illuminated Prominent Banner
   -------------------------------------------------------------------------- */
.dates-banner-wrapper {
  margin: 0.5rem 0 1.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.dates-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  padding: 0.85rem 1.6rem;
  border-radius: 1.125rem;
  background: rgba(14, 10, 26, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(168, 85, 247, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8),
              0 0 35px rgba(168, 85, 247, 0.25),
              inset 0 1px 1px rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .dates-card {
    padding: 1rem 2.25rem;
    gap: 1.5rem;
  }
}

.dates-halo {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent 40%, rgba(168, 85, 247, 0.4) 100%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.dates-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid rgba(168, 85, 247, 0.45);
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.35);
  z-index: 1;
}

.calendar-icon {
  width: 1.35rem;
  height: 1.35rem;
  color: #ffffff;
}

.dates-text-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}

.dates-tag {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.25em;
  color: var(--color-violet-light);
  font-weight: 700;
  text-transform: uppercase;
}

.dates-range {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.dates-campus-badge {
  display: none;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.75);
  z-index: 1;
}

@media (min-width: 640px) {
  .dates-campus-badge {
    display: flex;
  }
}

/* --------------------------------------------------------------------------
   COUNTDOWN TIMER SECTION
   -------------------------------------------------------------------------- */
.countdown-section {
  width: 100%;
  max-width: 36rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-header-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin-bottom: 0.85rem;
}

.line-segment {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.countdown-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  white-space: nowrap;
}

.countdown-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

@media (min-width: 480px) {
  .countdown-grid {
    gap: 0.85rem;
  }
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.time-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3.75rem;
  height: 3.6rem;
  padding: 0 0.5rem;
  border-radius: 0.75rem;
  background: rgba(12, 10, 22, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6),
              inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

@media (min-width: 480px) {
  .time-box {
    min-width: 4.5rem;
    height: 4.25rem;
    padding: 0 0.75rem;
  }
}

.time-value {
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 4.5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 0 14px rgba(168, 85, 247, 0.65);
}

.time-label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.time-colon {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--color-violet-core);
  opacity: 0.7;
  margin-top: -1rem;
}

/* --------------------------------------------------------------------------
   BOTTOM FOOTER BAR
   -------------------------------------------------------------------------- */
.bottom-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-left {
  display: none;
}

@media (min-width: 1024px) {
  .footer-left {
    display: flex;
    flex: 1;
  }
}

.realm-alert {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.4);
}

.footer-center {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .footer-center {
    flex: 2;
  }
}

.stay-tuned-text {
  font-size: clamp(0.7rem, 2vw, 0.8125rem);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
}

.suspense-pulse-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0.95rem;
  border-radius: 9999px;
  background: rgba(14, 10, 26, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.25);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.suspense-beacon {
  position: relative;
  display: inline-flex;
  width: 0.45rem;
  height: 0.45rem;
}

.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  flex: 1;
}

.suspense-classified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.32);
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  color: var(--color-violet-light);
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.2);
}

.lock-svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--color-violet-light);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-link-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: rgba(10, 8, 20, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-link-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(168, 85, 247, 0.5);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.25);
}

.social-svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--color-violet-light);
}

/* --------------------------------------------------------------------------
   RESPONSIVE HARDENING (375px, 414px Mobile Viewports)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .hidden-xs {
    display: none !important;
  }

  .hero-content-shell {
    padding-left: max(0.85rem, var(--safe-left));
    padding-right: max(0.85rem, var(--safe-right));
    padding-top: max(0.5rem, var(--safe-top));
    padding-bottom: max(0.65rem, var(--safe-bottom));
  }

  .reveal-center {
    padding: 0.35rem 0;
  }

  .glow-pill {
    padding: 0.25rem 0.85rem;
  }

  .eyebrow-container {
    margin-bottom: 0.35rem;
  }

  .hero-logo-centerpiece {
    margin: 0.35rem 0 0.65rem;
  }

  .main-center-logo {
    width: clamp(190px, 62vw, 260px);
    max-height: 65px;
  }

  .theme-wrapper {
    margin: 0.35rem 0 0.75rem;
  }

  .theme-frame-flair {
    margin-bottom: 0.25rem;
  }

  .dates-banner-wrapper {
    margin: 0.25rem 0 0.85rem;
  }

  .dates-card {
    padding: 0.6rem 1rem;
    gap: 0.75rem;
  }

  .dates-icon-box {
    width: 2.1rem;
    height: 2.1rem;
  }

  .calendar-icon {
    width: 1.15rem;
    height: 1.15rem;
  }

  .countdown-header-line {
    margin-bottom: 0.45rem;
  }

  .countdown-grid {
    gap: 0.35rem;
  }

  .time-box {
    min-width: 3.25rem;
    height: 3.1rem;
    padding: 0 0.35rem;
    border-radius: 0.6rem;
  }

  .time-value {
    font-size: 1.45rem;
  }

  .time-colon {
    font-size: 1.25rem;
    margin-top: -0.75rem;
  }

  .bottom-footer {
    padding-top: 0.5rem;
    flex-direction: column;
    text-align: center;
    gap: 0.45rem;
  }

  .footer-center {
    order: 1;
  }

  .footer-right {
    order: 2;
    justify-content: center;
  }

  .social-link-pill {
    padding: 0.28rem 0.65rem;
    font-size: 0.5rem;
  }
}

@media (max-height: 700px) and (max-width: 480px) {
  .theme-heading {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
  .theme-cryptic-motto {
    font-size: 0.8rem;
    margin-top: 0.25rem;
  }
  .main-center-logo {
    width: clamp(170px, 55vw, 220px);
    max-height: 52px;
  }
}

/* Prevent accidental iOS rubberbanding on preloader */
body.preloader-active {
  overflow: hidden !important;
  height: 100vh !important;
  height: 100dvh !important;
}
