/* Phase 2: overlay + skip-link only. Splash visual restyle is phase 4. */

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 2000;
  background: #E4007C;
  color: #fff;
  padding: 8px 12px;
  font-family: Inter, Helvetica, Arial, sans-serif;
  font-size: 13px;
}
.skip-link:focus { top: 12px; }

:focus { outline: none; }
:focus-visible {
  outline: 2px solid #E4007C;
  outline-offset: 3px;
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0A0A0A;
  color: #F1E4FB;
  touch-action: none;
  transition: opacity .4s ease, visibility .4s ease, transform .4s ease;
}
.splash.is-dragging {
  transition: none;
}
.splash[hidden],
html.splash-done .splash { display: none; }
.splash.is-leaving {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-24%);
}
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 24px;
}
.splash-word {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(64px, 14vw, 160px);
  line-height: .85;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.splash-line {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(18px, 3vw, 28px);
  color: #E4007C;
}
.splash-gesture {
  position: absolute;
  bottom: clamp(36px, 8vh, 72px);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.splash-arrow {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1;
  color: #E4007C;
  animation: splash-cue-up 1.6s ease-in-out infinite;
}
.splash-hint {
  margin: 0;
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(241, 228, 251, .6);
}
@keyframes splash-cue-up {
  0%, 100% { transform: translateY(8px); opacity: .45; }
  50% { transform: translateY(-10px); opacity: 1; }
}

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}


.form-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 13px;
  letter-spacing: .04em;
  color: rgba(241, 228, 251, .7);
}
.form-status.is-ok { color: #E4007C; }
.form-status.is-error { color: #ff8ab8; }

@media (prefers-reduced-motion: reduce) {
  .splash { transition: none; }
  .splash-arrow { animation: none !important; }
}

.page-404 {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(96px, 15vh, 160px) clamp(18px, 4vw, 54px);
  background: #0A0A0A;
  color: #F1E4FB;
}
.page-404 h1 {
  margin: 0 0 16px;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(42px, 8vw, 96px);
  line-height: .9;
}
.page-404 p {
  margin: 0 0 12px;
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(241, 228, 251, .7);
}
