body {
  font-family: system-ui, sans-serif;
  margin: 0;
  color: #f2f4ff;
  background: radial-gradient(circle at top left, #222a44, #0c101c);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}
.hero {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
}
.pill {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.title {
  font-size: 2rem;
  background: linear-gradient(90deg, #6ee7ff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.muted {
  color: #b9c2e1;
  margin-top: 1rem;
}
.footer {
  color: #aab5d1;
  font-size: 0.9rem;
  margin-top: 2rem;
}

