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

:root {
  --bg: #07080f;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --accent: #818cf8;
  --border: rgba(255, 255, 255, 0.08);
}

html, body {
  min-height: 100%;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(99, 102, 241, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 80%, rgba(139, 92, 246, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(59, 130, 246, 0.08), transparent 60%),
    var(--bg);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: float 14s ease-in-out infinite;
}
.orb-1 { width: 320px; height: 320px; background: #6366f1; top: -8%; left: -5%; }
.orb-2 { width: 280px; height: 280px; background: #8b5cf6; bottom: -10%; right: -5%; animation-delay: -5s; }
.orb-3 { width: 180px; height: 180px; background: #3b82f6; top: 40%; left: 55%; animation-delay: -9s; opacity: 0.25; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -18px) scale(1.04); }
  66% { transform: translate(-16px, 12px) scale(0.96); }
}

.grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.25rem 3rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: fadeUp 0.7s ease 0.05s both;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
  animation: pulse 2s ease infinite;
}
.badge-dot--soon {
  background: #fbbf24;
  box-shadow: 0 0 10px #fbbf24;
}
.badge-dot--muted {
  background: #94a3b8;
  box-shadow: none;
  animation: none;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

h1 {
  margin-top: 1.25rem;
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, #c7d2fe 45%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeUp 0.7s ease 0.12s both;
}

.tagline {
  margin-top: 0.65rem;
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  font-weight: 500;
  color: rgba(199, 210, 254, 0.85);
  letter-spacing: -0.01em;
  animation: fadeUp 0.7s ease 0.18s both;
}

.subtitle {
  margin-top: 1.25rem;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  color: var(--muted);
  max-width: 32rem;
  line-height: 1.65;
  animation: fadeUp 0.7s ease 0.24s both;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
  animation: fadeUp 0.7s ease 0.32s both;
}

.feature {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  font-size: 0.82rem;
  color: rgba(203, 213, 225, 0.9);
  backdrop-filter: blur(8px);
}

.feature-icon { font-size: 0.95rem; opacity: 0.9; }

.divider {
  width: 3rem;
  height: 1px;
  margin: 2.5rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(129,140,248,0.5), transparent);
  animation: fadeUp 0.7s ease 0.38s both;
}

.actions {
  margin-top: 2rem;
  animation: fadeUp 0.7s ease 0.36s both;
}

.btn-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(129, 140, 248, 0.35);
  background: rgba(99, 102, 241, 0.12);
  color: #e0e7ff;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.btn-home:hover {
  background: rgba(99, 102, 241, 0.22);
  border-color: rgba(129, 140, 248, 0.55);
  transform: translateY(-1px);
}

footer {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.45);
  animation: fadeUp 0.7s ease 0.5s both;
}

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

@media (prefers-reduced-motion: reduce) {
  .orb, .badge-dot, .badge, h1, .tagline, .subtitle, .features, .divider, .actions, footer {
    animation: none !important;
  }
}
