/* ────────────────────────────────────────────────
   Reset & base
───────────────────────────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #f0f7fa;
  color: #1a1a1a;
  line-height: 1.5;
}

/* ────────────────────────────────────────────────
   Splash page only
───────────────────────────────────────────────── */
body.splash {
  background: linear-gradient(145deg, #a1d4e8 0%, #e0f2f7 100%);
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 2rem;
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.splash-logo {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  transition: opacity 0.25s ease;
}

.splash-logo:hover,
.splash-logo:focus-visible {
  opacity: 0.88;
}

.splash-message {
  font-size: 1.9rem;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  letter-spacing: -0.01em;
}

/* Slightly larger + more breathing room on bigger screens */
@media (min-width: 640px) {
  .splash-message {
    font-size: 2.25rem;
  }
  .splash-content {
    gap: 4rem;
  }
}

/* Mobile — make sure text stays comfortable */
@media (max-width: 480px) {
  .splash-message {
    font-size: 1.65rem;
    padding: 0 1rem;
  }
  .splash-content {
    gap: 2.5rem;
  }
}