/* ── NMC Splash / Entry Screen ─────────────────────────────────────────────── */

#nmc-splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: nmcSplashIn 0.6s ease forwards;
}

#nmc-splash.nmc-splash--exit {
  animation: nmcSplashOut 0.7s ease forwards;
}

#nmc-splash-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nmc-splash__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 0 2rem 2rem;
}

/* ── Pendant ──────────────────────────────────────────────────────────────── */
.nmc-splash__pendant-wrap {
  position: relative;
  width: min(340px, 85vw);
  max-height: clamp(180px, 38vh, 340px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.nmc-splash__glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.25) 0%, transparent 70%);
  animation: nmcPulse 2.5s ease-in-out infinite;
}

.nmc-splash__pendant {
  width: 100%;
  height: 100%;
  max-height: clamp(180px, 38vh, 340px);
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.65));
  transform-origin: top center;
  animation: nmcSplashDropIn 0.9s cubic-bezier(0.34,1.56,0.64,1) 0.2s both;
}

.nmc-splash__fallback {
  display: none;
  width: 300px;
  height: 380px;
  animation: nmcSplashDropIn 0.9s cubic-bezier(0.34,1.56,0.64,1) 0.2s both;
}

.nmc-splash__fallback svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.4));
}

/* ── Tagline ─────────────────────────────────────────────────────────────── */
.nmc-splash__tagline {
  position: relative;
  z-index: 10;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #C9A84C;
  opacity: 0;
  animation: nmcFadeUp 0.6s ease 0.8s forwards;
  margin: 0;
}

/* ── Enter button ────────────────────────────────────────────────────────── */
.nmc-splash__enter {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0A0A0A;
  background: #C9A84C;
  border: none;
  padding: 0.9rem 2.5rem;
  cursor: pointer;
  opacity: 0;
  animation: nmcFadeUp 0.6s ease 1.1s forwards;
  transition: background 0.2s, transform 0.15s;
}

.nmc-splash__enter:hover {
  background: #e0bc5e;
  transform: translateY(-2px);
}

.nmc-splash__enter:active {
  transform: translateY(0);
}

/* ── Keyframes ───────────────────────────────────────────────────────────── */
@keyframes nmcSplashIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes nmcSplashOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(1.04); }
}

@keyframes nmcSplashDropIn {
  from { opacity: 0; transform: translateY(-40px) rotate(-6deg); }
  to   { opacity: 1; transform: translateY(0) rotate(0deg); }
}

@keyframes nmcFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes nmcPulse {
  0%, 100% { transform: scale(1);    opacity: 0.7; }
  50%       { transform: scale(1.12); opacity: 1;   }
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .nmc-splash__pendant-wrap { width: 280px; height: 320px; }
  .nmc-splash__pendant      { width: 150px; height: 150px; }
}
