/* Inline splash — removed when React mounts (see dismissPwaSplash). */
.ev-pwa-splash {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #000000;
  color: #fafafa;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.ev-pwa-splash--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ev-pwa-splash__lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.ev-pwa-splash__lockup img {
  width: min(112px, 30vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 26px rgba(45, 212, 191, 0.4));
  animation: ev-splash-breathe 3.4s ease-in-out infinite;
}

.ev-pwa-splash__word {
  font-family: Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: #f5f8fc;
}
.ev-pwa-splash__word b {
  font-weight: 700;
  color: #5eead4;
}
.ev-pwa-splash__word i {
  font-style: normal;
  font-weight: 600;
  color: #99f6e4;
  opacity: 0.85;
}

@keyframes ev-splash-breathe {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 6px 26px rgba(45, 212, 191, 0.34)); }
  50% { transform: scale(1.04); filter: drop-shadow(0 8px 34px rgba(45, 212, 191, 0.55)); }
}

@media (prefers-reduced-motion: reduce) {
  .ev-pwa-splash__lockup img { animation: none; }
}

.ev-pwa-splash__tagline {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
}
