:root {
  --bg: #07080d;
  --surface: #141824;
  --text: #eef0f6;
  --text-muted: #8b93a7;
  --emerald: #10b981;
  --emerald-dim: rgba(16, 185, 129, 0.15);
  --gold: #f59e0b;
  --line: rgba(255, 255, 255, 0.08);
  --font: "DM Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", monospace;
}

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

.splash-page {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  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(16, 185, 129, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.05) 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(70px);
  opacity: 0.45;
}
.splash-orb--1 {
  width: 440px;
  height: 440px;
  top: -140px;
  right: -100px;
  background: #10b981;
  animation: splash-float 14s ease-in-out infinite;
}
.splash-orb--2 {
  width: 380px;
  height: 380px;
  bottom: -120px;
  left: -80px;
  background: #6366f1;
  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(540px, 100%);
  text-align: center;
  padding: 2.5rem 2rem 2rem;
  background: rgba(20, 24, 36, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

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

.splash-badge {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
  background: var(--emerald-dim);
  border: 1px solid rgba(16, 185, 129, 0.25);
  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(--text);
}

.splash-lead {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.65;
  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(--text-muted);
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.splash-foot {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}
.splash-foot strong {
  color: var(--gold);
  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(--emerald);
  text-decoration: none;
  font-weight: 500;
}
.splash-footer a:hover { color: #34d399; }

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