:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #080b16;
  color: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding: 24px;
  position: relative;
}

.glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.glow-a {
  top: -140px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: rgba(79, 70, 229, 0.35);
}

.glow-b {
  bottom: -160px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: rgba(217, 70, 239, 0.25);
}

.wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #a5b4fc;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.dot-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #818cf8;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

.wordmark {
  margin: 28px 0 0;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.accent {
  background: linear-gradient(90deg, #6366f1, #d946ef);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  margin: 24px 0 0;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #f8fafc;
}

.subtitle {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #94a3b8;
}

.pill {
  display: inline-block;
  margin-top: 32px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #e2e8f0;
}

.foot {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  font-size: 12px;
  color: #475569;
  text-align: center;
}

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