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

:root {
  --bg-1: #0f172a;
  --bg-2: #172554;
  --card: rgba(15, 23, 42, 0.76);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --accent: #38bdf8;
  --accent-2: #818cf8;
  --success: #22c55e;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.18), transparent 32%),
    radial-gradient(circle at 80% 15%, rgba(129, 140, 248, 0.16), transparent 30%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2));
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  z-index: 0;
}

body::before {
  background: var(--accent);
  top: -120px;
  left: -100px;
}

body::after {
  background: var(--accent-2);
  right: -120px;
  bottom: -130px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 32px 20px;
  position: relative;
  z-index: 1;
}

.card {
  width: min(720px, 100%);
  text-align: center;
  padding: 56px 42px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  margin-bottom: 28px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.08);
  color: #bae6fd;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.icon {
  width: 82px;
  height: 82px;
  margin: 0 auto 26px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.22), rgba(129, 140, 248, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(56, 189, 248, 0.1);
}

.icon span {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  color: #e0f2fe;
}

.eyebrow {
  margin-bottom: 12px;
  color: #7dd3fc;
  font-size: 0.95rem;
  font-weight: 700;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.lead {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.lead strong {
  color: var(--text);
}

.divider {
  width: 72px;
  height: 2px;
  margin: 30px auto;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dbeafe;
  font-size: 0.95rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.1);
  animation: pulse 1.8s infinite;
}

footer {
  color: rgba(226, 232, 240, 0.6);
  font-size: 0.86rem;
}

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

  50% {
    transform: scale(1.18);
    opacity: 0.72;
  }
}

@media (max-width: 640px) {
  .card {
    padding: 42px 24px;
    border-radius: 22px;
  }

  .icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot {
    animation: none;
  }
}
