/* ---- Base ---- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

:root {
  --bg1: #070a12;
  --bg2: #0b132b;
  --bg3: #1c2541;
  --accent: #3b92fe;
  --accent2: #8a5cff;
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --card: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.12);
}

body {
  min-height: 100vh;
  background: radial-gradient(1200px circle at 20% 15%, rgba(59,146,254,0.25), transparent 60%),
              radial-gradient(900px circle at 80% 70%, rgba(138,92,255,0.25), transparent 55%),
              linear-gradient(135deg, var(--bg1), var(--bg2), var(--bg3));
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* ---- Overlay + subtle noise ---- */
.bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.08), transparent 55%),
    radial-gradient(circle at bottom, rgba(255,255,255,0.04), transparent 55%);
  pointer-events: none;
  z-index: 1;
}

/* ---- Animated Blobs ---- */
.blob {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(55px);
  opacity: 0.45;
  z-index: 0;
  transform: translate3d(0,0,0);
  animation: blobFloat 12s ease-in-out infinite;
}

.blob-1 {
  top: -200px;
  left: -180px;
  background: radial-gradient(circle at 30% 30%, rgba(59,146,254,0.95), rgba(59,146,254,0.05));
  animation-delay: 0s;
}

.blob-2 {
  bottom: -220px;
  right: -200px;
  background: radial-gradient(circle at 30% 30%, rgba(138,92,255,0.95), rgba(138,92,255,0.05));
  animation-delay: -3s;
}

.blob-3 {
  top: 30%;
  right: -260px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle at 30% 30%, rgba(0,255,180,0.55), rgba(0,255,180,0.02));
  animation-delay: -6s;
}

@keyframes blobFloat {
  0%   { transform: translate(0px, 0px) scale(1); }
  33%  { transform: translate(35px, -25px) scale(1.05); }
  66%  { transform: translate(-25px, 35px) scale(0.98); }
  100% { transform: translate(0px, 0px) scale(1); }
}

/* ---- Particles ---- */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

.particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
  box-shadow: 0 0 16px rgba(59,146,254,0.15);
  animation: drift 10s linear infinite;
}

/* Hand-placed particles for a nice spread */
.particles span:nth-child(1)  { left: 10%; top: 70%; animation-duration: 12s; }
.particles span:nth-child(2)  { left: 20%; top: 20%; animation-duration: 14s; width: 4px; height: 4px; }
.particles span:nth-child(3)  { left: 30%; top: 60%; animation-duration: 9s;  }
.particles span:nth-child(4)  { left: 40%; top: 30%; animation-duration: 16s; width: 3px; height: 3px; }
.particles span:nth-child(5)  { left: 55%; top: 75%; animation-duration: 11s; }
.particles span:nth-child(6)  { left: 65%; top: 22%; animation-duration: 13s; width: 4px; height: 4px; }
.particles span:nth-child(7)  { left: 72%; top: 52%; animation-duration: 10s; }
.particles span:nth-child(8)  { left: 82%; top: 35%; animation-duration: 15s; width: 3px; height: 3px; }
.particles span:nth-child(9)  { left: 88%; top: 68%; animation-duration: 12s; }
.particles span:nth-child(10) { left: 15%; top: 45%; animation-duration: 10s; width: 3px; height: 3px; }
.particles span:nth-child(11) { left: 50%; top: 12%; animation-duration: 18s; width: 4px; height: 4px; }
.particles span:nth-child(12) { left: 92%; top: 18%; animation-duration: 14s; width: 3px; height: 3px; }

@keyframes drift {
  0%   { transform: translateY(0px); opacity: 0.20; }
  20%  { opacity: 0.55; }
  100% { transform: translateY(-120px); opacity: 0.10; }
}

/* ---- Layout ---- */
.container {
  text-align: center;
  padding: 2rem;
  max-width: 680px;
  width: 100%;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
  backdrop-filter: blur(12px);
}

h1 {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  letter-spacing: 1px;
  margin: 1rem 0 0.65rem;
}

.glow {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(59,146,254,0.25);
}

.tagline {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

/* ---- Card ---- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

/* Animated sheen */
.card::before {
  content: "";
  position: absolute;
  inset: -120px;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.10), transparent 65%);
  transform: translateX(-35%);
  animation: sheen 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sheen {
  0%   { transform: translateX(-45%) rotate(8deg); opacity: 0.0; }
  35%  { opacity: 0.55; }
  60%  { opacity: 0.20; }
  100% { transform: translateX(55%) rotate(8deg); opacity: 0.0; }
}

.card h2 {
  font-size: 1.45rem;
  margin-bottom: 0.9rem;
}

.status-row {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(59,146,254,0.6);
  animation: pulse 1.4s ease-in-out infinite;
}

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

.divider {
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 1.2rem auto;
  width: min(420px, 100%);
}

.actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(10px);
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.btn.primary {
  border: none;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 18px 40px rgba(59,146,254,0.18);
}

.btn.primary:hover {
  box-shadow: 0 22px 55px rgba(138,92,255,0.20);
}

.small {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

/* ---- Footer ---- */
footer {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ---- Entrance animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(6px);
  animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s cubic-bezier(.2,.9,.2,1) forwards;
}

.delay-1 { animation-delay: 0.10s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.48s; }
.delay-5 { animation-delay: 0.62s; }

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .blob, .particles span, .dot, .card::before,
  .fade-in, .fade-in-up {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
