:root {
  --bg: #05060d;
  --fg: #eaf2ff;
  --muted: rgba(234, 242, 255, 0.7);
  --accent: #6cf3c5;
  --accent-2: #7aa8ff;
}

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

body {
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  z-index: 0;
  pointer-events: none;
}

.core {
  position: relative;
  z-index: 2;
  padding: 40px 44px;
  border-radius: 28px;
  background: rgba(12, 16, 26, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 60px rgba(108, 243, 197, 0.15);
  text-align: center;
  max-width: 600px;
  width: min(92vw, 680px);
  backdrop-filter: blur(10px);
  animation: rise 1s ease;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(108, 243, 197, 0.12);
  border: 1px solid rgba(108, 243, 197, 0.35);
  color: #9bf3d6;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.pill-row {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.pill {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.02em;
}

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

@media (max-width: 640px) {
  .core { padding: 32px 30px; }
  h1 { font-size: clamp(32px, 8vw, 48px); }
}
