/* ==========================================================================
   AEGIS VISION — Coming Soon splash
   Royal Blue + White on Midnight Royal
   ========================================================================== */

:root {
  /* Brand */
  --navy: #283a70;          /* Midnight Royal (from logo files) */
  --navy-deep: #0a1030;
  --navy-ink: #050818;
  --royal: #2b46ff;
  --royal-bright: #5c75ff;
  --white: #ffffff;

  /* Type */
  --font-display: 'Clash Display', 'Satoshi', system-ui, sans-serif;
  --font-body: 'Satoshi', system-ui, -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html,
body {
  height: 100%;
}

body {
  background: var(--navy-ink);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ==========================================================================
   Splash shell
   ========================================================================== */

.splash {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 3.4vh, 2.9rem);
  padding: clamp(1.5rem, 4vh, 3.25rem) clamp(1.25rem, 5vw, 4rem);
  isolation: isolate;
  overflow: hidden;
}

/* ==========================================================================
   Background layers
   ========================================================================== */

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--navy-ink);
}

.bg__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  filter: saturate(1.3) contrast(1.12) blur(1.5px) brightness(0.72);
  transform: scale(1.06);
  animation: bg-drift 26s ease-in-out infinite alternate;
}

@keyframes bg-drift {
  0% {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.14) translate3d(-2%, -1.5%, 0);
  }
}

.bg__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 48% at 50% 38%, rgba(43, 70, 255, 0.28) 0%, transparent 70%),
    linear-gradient(165deg, rgba(5, 8, 24, 0.72) 0%, rgba(5, 8, 24, 0.62) 45%, rgba(5, 8, 24, 0.88) 100%);
}

/* Subtle court-line / tech grid */
.bg__grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(ellipse 62% 58% at 50% 45%, #000 15%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 62% 58% at 50% 45%, #000 15%, transparent 78%);
  animation: grid-slide 34s linear infinite;
}

@keyframes grid-slide {
  to {
    background-position: 84px 84px;
  }
}

/* Pulsing royal-blue energy orbs */
.bg__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform, opacity;
}

.bg__glow--a {
  width: min(62vw, 780px);
  aspect-ratio: 1;
  top: -18%;
  left: 50%;
  translate: -50% 0;
  background: radial-gradient(circle, rgba(43, 70, 255, 0.4) 0%, rgba(43, 70, 255, 0) 70%);
  animation: pulse-a 7s ease-in-out infinite;
}

.bg__glow--b {
  width: min(48vw, 560px);
  aspect-ratio: 1;
  bottom: -14%;
  right: -8%;
  background: radial-gradient(circle, rgba(92, 117, 255, 0.3) 0%, rgba(92, 117, 255, 0) 70%);
  animation: pulse-b 9s ease-in-out infinite;
}

@keyframes pulse-a {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.12);
  }
}

@keyframes pulse-b {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1.08);
  }
  50% {
    opacity: 0.72;
    transform: scale(0.94);
  }
}

/* Diagonal light sweep */
.bg__sweep {
  position: absolute;
  top: -60%;
  left: -40%;
  width: 55%;
  height: 220%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 45%,
    rgba(160, 180, 255, 0.11) 50%,
    rgba(255, 255, 255, 0.05) 55%,
    transparent 100%
  );
  transform: rotate(18deg);
  animation: sweep 9s ease-in-out infinite;
}

@keyframes sweep {
  0% {
    left: -50%;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  58% {
    opacity: 1;
  }
  100% {
    left: 115%;
    opacity: 0;
  }
}

.bg__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 78% 72% at 50% 48%, transparent 30%, rgba(5, 8, 24, 0.94) 100%);
}

/* ==========================================================================
   Stage — logo lockup
   ========================================================================== */

.stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(0.6rem, 1.4vh, 1.1rem);
}

/* Oversized watermark icon behind the lockup */
.stage__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -54%;
  width: clamp(240px, 30vw, 420px);
  height: auto;
  opacity: 0.06;
  z-index: -1;
  pointer-events: none;
  animation: watermark 12s ease-in-out infinite;
}

@keyframes watermark {
  0%,
  100% {
    opacity: 0.055;
    transform: scale(1);
  }
  50% {
    opacity: 0.1;
    transform: scale(1.04);
  }
}

.stage__logo {
  width: clamp(220px, 34vw, 480px);
  height: auto;
  filter: drop-shadow(0 18px 60px rgba(43, 70, 255, 0.55));
  animation: rise 1s var(--ease-out) both;
}

.stage__wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 4.6vw, 2.9rem);
  line-height: 1;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  background: linear-gradient(100deg, #ffffff 0%, #dfe5ff 40%, #8b9dff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rise 1s var(--ease-out) 0.12s both;
}

.rule {
  width: clamp(180px, 34vw, 420px);
  height: 1px;
  margin-block: clamp(0.3rem, 0.9vh, 0.7rem);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35) 20%,
    rgba(255, 255, 255, 0.35) 80%,
    transparent
  );
  position: relative;
  overflow: hidden;
  animation: rise 1s var(--ease-out) 0.2s both;
}

.rule span {
  position: absolute;
  inset-block: 0;
  width: 34%;
  background: linear-gradient(90deg, transparent, var(--royal-bright), transparent);
  box-shadow: 0 0 14px 2px rgba(92, 117, 255, 0.75);
  animation: rule-run 3.4s ease-in-out infinite;
}

@keyframes rule-run {
  0% {
    left: -34%;
  }
  100% {
    left: 100%;
  }
}

.stage__soon {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.72rem, 1.9vw, 1.05rem);
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
  animation: rise 1s var(--ease-out) 0.28s both;
}

.stage__partners {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: clamp(1rem, 3vh, 2.25rem);
  padding: 0.72rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(43, 70, 255, 0.16);
  backdrop-filter: blur(10px);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.78rem, 1.7vw, 0.95rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition:
    background 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
  animation: rise 1s var(--ease-out) 0.62s both;
}

.stage__partners:hover,
.stage__partners:focus-visible {
  background: rgba(43, 70, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -12px rgba(43, 70, 255, 0.85);
}

.stage__partners-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--royal-bright);
  box-shadow: 0 0 0 0 rgba(92, 117, 255, 0.75);
  animation: dot-ping 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes dot-ping {
  0% {
    box-shadow: 0 0 0 0 rgba(92, 117, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(92, 117, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(92, 117, 255, 0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Reels — visuals only
   ========================================================================== */

.reels {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 1.6vw, 1.25rem);
  height: clamp(130px, 23vh, 230px);
  max-width: 100%;
  animation: rise 1s var(--ease-out) 0.72s both;
}

.reel {
  position: relative;
  display: block;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  overflow: hidden;
  background: var(--navy-deep);
  cursor: pointer;
  transition:
    transform 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out);
}

.reel--landscape {
  height: 100%;
  aspect-ratio: 16 / 9;
}

.reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 24, 0.25) 0%, rgba(5, 8, 24, 0.55) 100%);
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}

.reel__play {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: clamp(40px, 4.5vw, 58px);
  height: clamp(40px, 4.5vw, 58px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--royal);
  color: var(--white);
  box-shadow: 0 10px 34px -6px rgba(43, 70, 255, 0.9);
  transition:
    transform 0.4s var(--ease-out),
    opacity 0.4s var(--ease-out);
  pointer-events: none;
}

.reel__play svg {
  width: 42%;
  height: 42%;
  margin-left: 8%;
}

.reel:hover,
.reel:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(92, 117, 255, 0.7);
  box-shadow: 0 26px 60px -22px rgba(43, 70, 255, 0.8);
}

.reel:hover .reel__play {
  transform: translate(-50%, -50%) scale(1.08);
}

.reel.is-playing .reel__scrim,
.reel.is-playing .reel__play {
  opacity: 0;
}

/* ---- Feature reel: autoplaying teaser ---- */

.reel--feature {
  height: 100%;
  aspect-ratio: 16 / 9;
  max-width: min(92vw, 640px);
  box-shadow: 0 26px 60px -22px rgba(43, 70, 255, 0.5);
}

.reel--feature .reel__scrim {
  background: linear-gradient(180deg, rgba(5, 8, 24, 0.06) 0%, rgba(5, 8, 24, 0.32) 100%);
}

/* Subtle expand affordance — the reel is already playing, so no play button */
.reel__expand {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  width: clamp(22px, 2vw, 28px);
  height: clamp(22px, 2vw, 28px);
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(5, 8, 24, 0.55);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.85);
  opacity: 0.75;
  transition:
    opacity 0.35s var(--ease-out),
    background 0.35s var(--ease-out);
  pointer-events: none;
}

.reel__expand svg {
  width: 58%;
  height: 58%;
}

.reel--feature:hover .reel__expand,
.reel--feature:focus-visible .reel__expand {
  opacity: 1;
  background: var(--royal);
}

/* ==========================================================================
   Taglines
   ========================================================================== */

.taglines {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(0.85rem, 2.6vw, 2.4rem);
  margin: clamp(1rem, 2.6vh, 1.7rem) 0 0;
  padding: 0;
  list-style: none;
  max-width: min(56rem, 92vw);
  animation: rise 1s var(--ease-out) 0.36s both;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.76rem, 1.55vw, 0.98rem);
  letter-spacing: 0.02em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 1px 14px rgba(5, 8, 24, 0.6);
}

.tagline__mark {
  position: relative;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--royal-bright) 0%, var(--royal) 100%);
  transform: rotate(45deg);
  box-shadow: 0 0 12px 1px rgba(92, 117, 255, 0.85);
  animation: mark-glow 3s ease-in-out infinite;
}

.tagline:nth-child(2) .tagline__mark {
  animation-delay: 1.5s;
}

@keyframes mark-glow {
  0%,
  100% {
    box-shadow: 0 0 10px 0 rgba(92, 117, 255, 0.6);
    opacity: 0.85;
  }
  50% {
    box-shadow: 0 0 18px 3px rgba(92, 117, 255, 1);
    opacity: 1;
  }
}

/* ---- Invitation line + cue ---- */

.stage__invite {
  margin: clamp(1.15rem, 3vh, 2rem) 0 0;
  max-width: min(34rem, 88vw);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.02rem, 2.5vw, 1.5rem);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.92);
  text-wrap: balance;
  animation: rise 1s var(--ease-out) 0.46s both;
}

.stage__invite-brand {
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}

.stage__cue {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: clamp(0.55rem, 1.4vh, 0.85rem) 0 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.6rem, 1.1vw, 0.7rem);
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  animation: rise 1s var(--ease-out) 0.54s both;
}

.stage__cue-arrow {
  display: block;
  width: 13px;
  height: 13px;
  color: var(--royal-bright);
  animation: cue-bob 1.9s ease-in-out infinite;
}

.stage__cue-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes cue-bob {
  0%,
  100% {
    transform: translateY(-2px);
    opacity: 0.65;
  }
  50% {
    transform: translateY(2px);
    opacity: 1;
  }
}

/* ==========================================================================
   Request information modal
   ========================================================================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(0.9rem, 4vw, 2.5rem);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s var(--ease-out),
    visibility 0.4s var(--ease-out);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 40%, rgba(24, 36, 110, 0.6) 0%, rgba(5, 8, 24, 0.92) 62%),
    rgba(5, 8, 24, 0.88);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  cursor: pointer;
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  margin: auto;
  padding: clamp(1.75rem, 4vw, 2.6rem) clamp(1.35rem, 3.5vw, 2.4rem) clamp(1.6rem, 3.5vw, 2.2rem);
  border: 1px solid rgba(122, 146, 255, 0.34);
  border-radius: 22px;
  background:
    linear-gradient(170deg, rgba(40, 58, 112, 0.62) 0%, rgba(10, 16, 48, 0.92) 55%),
    var(--navy-ink);
  box-shadow:
    0 48px 130px -34px rgba(43, 70, 255, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transform: scale(0.94) translateY(16px);
  transition: transform 0.48s var(--ease-out);
  text-align: center;
}

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

.modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(5, 8, 24, 0.5);
  color: var(--white);
  cursor: pointer;
  transition:
    background 0.3s var(--ease-out),
    transform 0.3s var(--ease-out);
}

.modal__close svg {
  width: 46%;
  height: 46%;
}

.modal__close:hover,
.modal__close:focus-visible {
  background: var(--royal);
  transform: rotate(90deg);
}

.modal__logo {
  width: clamp(96px, 26vw, 132px);
  height: auto;
  margin: 0 auto;
  display: block;
}

.modal__title {
  margin: clamp(0.9rem, 2.2vw, 1.3rem) 0 clamp(1.15rem, 3vw, 1.7rem);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.66rem, 1.35vw, 0.78rem);
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ---- Form ---- */

[hidden] {
  display: none !important;
}

.form {
  display: grid;
  gap: clamp(0.7rem, 1.8vw, 0.95rem);
  text-align: left;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.field input {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  background: rgba(5, 8, 24, 0.55);
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--white);
  transition:
    border-color 0.28s var(--ease-out),
    background 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.field input:focus {
  outline: none;
  border-color: rgba(122, 146, 255, 0.85);
  background: rgba(5, 8, 24, 0.78);
  box-shadow: 0 0 0 3px rgba(43, 70, 255, 0.24);
}

.field.has-error input {
  border-color: rgba(255, 122, 138, 0.85);
  box-shadow: 0 0 0 3px rgba(255, 90, 110, 0.18);
}

.form__error {
  margin: 0.1rem 0 0;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #ff9aa8;
}

.form__submit {
  margin-top: clamp(0.35rem, 1.2vw, 0.6rem);
  padding: 0.9rem 1.5rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--royal) 0%, var(--royal-bright) 100%);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 16px 42px -14px rgba(43, 70, 255, 0.95);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    opacity 0.3s var(--ease-out);
}

.form__submit:hover:not(:disabled),
.form__submit:focus-visible:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px -16px rgba(43, 70, 255, 1);
}

.form__submit:disabled {
  opacity: 0.62;
  cursor: progress;
  transform: none;
}

/* ---- Success state ---- */

.form__done {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  padding: clamp(0.6rem, 2vw, 1.1rem) 0 clamp(0.3rem, 1.5vw, 0.7rem);
  animation: rise 0.7s var(--ease-out) both;
}

.form__done-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 0.35rem;
  border-radius: 50%;
  background: rgba(43, 70, 255, 0.2);
  border: 1px solid rgba(122, 146, 255, 0.65);
  color: var(--royal-bright);
}

.form__done-mark svg {
  width: 48%;
  height: 48%;
}

.form__done-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--white);
}

.form__done-copy {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
}

/* ---- Manual fallback ---- */

.form__fallback {
  display: grid;
  gap: 0.7rem;
  text-align: left;
  animation: rise 0.7s var(--ease-out) both;
}

.form__fallback-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--white);
  text-align: center;
}

.form__fallback-copy {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
}

.form__fallback-copy a {
  color: var(--royal-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__fallback-details {
  margin: 0;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 11px;
  background: rgba(5, 8, 24, 0.6);
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  white-space: pre-wrap;
  word-break: break-word;
}

.form__fallback-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.form__fallback-btn {
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(5, 8, 24, 0.5);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-indent: 0.12em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  cursor: pointer;
  transition:
    background 0.28s var(--ease-out),
    transform 0.28s var(--ease-out);
}

.form__fallback-btn:hover,
.form__fallback-btn:focus-visible {
  background: rgba(43, 70, 255, 0.35);
  transform: translateY(-1px);
}

.form__fallback-btn--solid {
  border-color: transparent;
  background: linear-gradient(120deg, var(--royal) 0%, var(--royal-bright) 100%);
  box-shadow: 0 14px 34px -14px rgba(43, 70, 255, 0.9);
}

.form__fallback-btn--solid:hover,
.form__fallback-btn--solid:focus-visible {
  background: linear-gradient(120deg, var(--royal-bright) 0%, var(--royal) 100%);
}

/* ==========================================================================
   Lightbox — expanded video view
   ========================================================================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.42s var(--ease-out),
    visibility 0.42s var(--ease-out);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 45%, rgba(24, 36, 110, 0.62) 0%, rgba(5, 8, 24, 0.9) 62%),
    rgba(5, 8, 24, 0.86);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  cursor: pointer;
}

.lightbox__frame {
  position: relative;
  z-index: 1;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(122, 146, 255, 0.42);
  background: var(--navy-ink);
  box-shadow:
    0 48px 130px -34px rgba(43, 70, 255, 0.85),
    0 0 0 1px rgba(255, 255, 255, 0.07) inset;
  transform: scale(0.92) translateY(14px);
  transition: transform 0.5s var(--ease-out);
}

.lightbox.is-open .lightbox__frame {
  transform: scale(1) translateY(0);
}

.lightbox__video {
  display: block;
  max-width: min(86vw, 1180px);
  max-height: 80vh;
  width: auto;
  height: auto;
  background: var(--navy-ink);
}

.lightbox__close {
  position: absolute;
  top: clamp(0.75rem, 2.4vw, 1.75rem);
  right: clamp(0.75rem, 2.4vw, 1.75rem);
  z-index: 2;
  width: clamp(40px, 4vw, 50px);
  height: clamp(40px, 4vw, 50px);
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(5, 8, 24, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  cursor: pointer;
  transition:
    background 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out),
    transform 0.3s var(--ease-out);
}

.lightbox__close svg {
  width: 46%;
  height: 46%;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  background: var(--royal);
  border-color: rgba(255, 255, 255, 0.55);
  transform: rotate(90deg) scale(1.06);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 700px) {
  .splash {
    gap: clamp(2rem, 6vh, 3.25rem);
  }

  .stage__wordmark {
    letter-spacing: 0.3em;
    text-indent: 0.3em;
  }

  .stage__soon {
    letter-spacing: 0.34em;
    text-indent: 0.34em;
  }

  /* Stack the taglines and align them to a shared left edge */
  .taglines {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: clamp(0.9rem, 2.2vh, 1.3rem);
    max-width: 86vw;
  }

  .tagline {
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.86rem;
    text-align: left;
  }

  .tagline__mark {
    margin-top: 0.4rem;
  }

  .stage__invite {
    margin-top: clamp(1rem, 2.4vh, 1.4rem);
    font-size: 1.08rem;
    max-width: 86vw;
  }

  .reels {
    height: clamp(115px, 19vh, 175px);
  }

  .lightbox {
    padding: 0.75rem;
  }

  .lightbox__video {
    max-width: 94vw;
    max-height: 76vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg__video,
  .bg__grid,
  .bg__glow,
  .bg__sweep,
  .stage__icon,
  .stage__logo,
  .stage__wordmark,
  .rule,
  .rule span,
  .stage__soon,
  .taglines,
  .tagline__mark,
  .stage__invite,
  .stage__cue,
  .stage__cue-arrow,
  .stage__partners,
  .stage__partners-dot,
  .reels {
    animation: none !important;
  }

  .lightbox,
  .lightbox__frame {
    transition: none !important;
  }

  .lightbox__frame {
    transform: none !important;
  }
}

/* Prevent background scroll while the expanded view is open */
body.is-locked {
  overflow: hidden;
}
