* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 50% 0%, #1a1f3d 0%, #0a0c1b 60%, #050612 100%);
  color: #f4f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

.wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 720px;
  height: 720px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(120, 119, 255, 0.35) 0%, rgba(120, 119, 255, 0) 70%);
  filter: blur(10px);
  pointer-events: none;
}

.card {
  position: relative;
  z-index: 1;
  max-width: 560px;
  text-align: center;
  padding: 48px 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9b9de0;
  font-weight: 600;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #b9bcff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  margin: 0 auto;
  max-width: 420px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #c3c5e0;
}

.dots {
  margin-top: 32px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8b8dff;
  animation: pulse 1.4s ease-in-out infinite;
}

.dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse {
  0%, 80%, 100% {
    opacity: 0.25;
    transform: scale(0.85);
  }
  40% {
    opacity: 1;
    transform: scale(1.1);
  }
}
