:root {
  --navy: #0c1a2e;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-soft: #eff6ff;
  --text: #152033;
  --text-muted: #5a6778;
  --line: #e2e8f0;
  --white: #ffffff;
  --font: "Instrument Sans", "Inter", system-ui, sans-serif;
}

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

.splash-page {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font);
  color: var(--text);
  background: #f8fafc;
  overflow-x: hidden;
}

.splash-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.splash-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}

.splash-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.splash-orb--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: #93c5fd;
  animation: splash-float 14s ease-in-out infinite;
}
.splash-orb--2 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  left: -60px;
  background: #bfdbfe;
  animation: splash-float 18s ease-in-out infinite reverse;
}

@keyframes splash-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-12px, 16px); }
}

.splash-main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.25rem 2rem;
}

.splash-card {
  width: min(520px, 100%);
  text-align: center;
  padding: 2.5rem 2rem 2rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.splash-logo {
  margin: 0 auto 1.5rem;
  height: auto;
  max-width: min(240px, 80vw);
}

.splash-badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid #bfdbfe;
  border-radius: 999px;
}

.splash-headline {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.splash-lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.splash-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}
.splash-tags li {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  padding: 0.35rem 0.65rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.splash-foot {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}
.splash-foot strong {
  color: var(--navy);
  font-weight: 600;
}

.splash-footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.splash-footer p { margin: 0 0 0.35rem; }
.splash-footer a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}
.splash-footer a:hover { color: var(--blue-dark); }

@media (prefers-reduced-motion: reduce) {
  .splash-orb { animation: none; }
}
