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

html, body {
  height: 100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0f;
  color: #f5f5f7;
  overflow: hidden;
}

.backdrop {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(124, 58, 237, 0.25), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(56, 189, 248, 0.18), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(244, 114, 182, 0.12), transparent 60%);
  filter: blur(40px);
  z-index: 0;
  animation: drift 20s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translate(-2%, -1%) scale(1); }
  to { transform: translate(2%, 1%) scale(1.05); }
}

.hero {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 1.5rem;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(245, 245, 247, 0.55);
  margin-bottom: 1.5rem;
}

.title {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

.subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  font-weight: 400;
  color: rgba(245, 245, 247, 0.6);
  max-width: 32rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 24px rgba(167, 139, 250, 0.8);
  animation: pulse 2.5s ease-in-out infinite;
}

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