:root {
  --bg: #070a13;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);

  /* Neon green accent */
  --accent: #22ff88;
  --accent2: #a8ff3e;
  --ring: rgba(34, 255, 136, 0.28);
}

* { box-sizing: border-box; }

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

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 600px at 20% 20%, rgba(34, 255, 136, 0.18), transparent 60%),
    radial-gradient(700px 500px at 80% 30%, rgba(168, 255, 62, 0.14), transparent 55%),
    radial-gradient(700px 500px at 45% 90%, rgba(34, 255, 136, 0.10), transparent 60%),
    var(--bg);
  display: grid;
  place-items: center;
  padding: 24px;
}

.wrap {
  width: min(720px, 100%);
  display: grid;
  gap: 16px;
  justify-items: center;
}

.card {
  width: 100%;
  padding: 36px 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--panel), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.55),
    0 0 0 6px rgba(124, 92, 255, 0.08);
  backdrop-filter: blur(10px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

h1 {
  margin: 16px 0 10px;
  font-size: clamp(42px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.dots {
  display: inline-flex;
  gap: 8px;
  margin-top: 18px;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
  animation: pop 1.1s ease-in-out infinite;
}

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

@keyframes pop {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50% { transform: translateY(-4px); opacity: 0.95; background: linear-gradient(90deg, var(--accent), var(--accent2)); }
}

.footer {
  width: 100%;
  height: 1px; /* keeps spacing minimal */
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .dots span { animation: none; }
}
