/* ============================================
   Splash Page – Styles
   ============================================ */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #0b2b42;
  --color-text: #e9edf0;
  --color-accent: #6d93a2;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', Helvetica, sans-serif;
}

html {
  font-size: 16px;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--color-bg);
  background-image:
    radial-gradient(ellipse 60% 50% at 50% 45%, rgba(233, 237, 240, .06) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(33, 83, 118, .4) 0%, transparent 60%);
  font-family: var(--font-body);
  color: var(--color-text);
  overflow: hidden;
}

/* ---- Container ---- */

.splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
  padding: 2rem;
  animation: fadeUp .9s cubic-bezier(.22, 1, .36, 1) both;
  width: 50vh;
}

/* ---- Logo ---- */

.splash__logo {
  width: clamp(200px, 30vw, 300px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(233, 237, 240, .15));
  transition: transform .4s ease, filter .4s ease;
}

.splash__logo:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 60px rgba(233, 237, 240, .25));
}

/* ---- Tagline ---- */

.splash__tagline, 
a, 
a:hover {
  font-family: var(--font-body);
  font-size: clamp(.95rem, 1.6vw, 1.25rem);
  font-weight: 300;
  letter-spacing: .05em;
  color: var(--color-text);
  opacity: 0;
  animation: fadeIn 1s .45s cubic-bezier(.22, 1, .36, 1) forwards;
}

a:hover {
  text-decoration: none,;
}

/* ---- Keyframes ---- */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}