/* Minimal splash styles */
:root {
  --bg: #000;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.splash {
  min-height: 100svh; /* mobile safe viewport */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
}

.logo {
  max-width: min(100vw, 520px);
  width: 100%;
  height: auto;
  /* animation: pulse 2.4s ease-in-out infinite; */
}

/* Gentle breathing effect */
@keyframes pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
  50% { transform: scale(1.02); filter: drop-shadow(0 0 8px rgba(255,255,255,0.14)); }
}

/* Respect users that prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .logo { animation: none; }
}
