:root {
  --bg0: #0b0f1a;
  --bg1: #0e1630;
  --card: rgba(255, 255, 255, 0.08);
  --stroke: rgba(255, 255, 255, 0.14);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.65);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.40);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 15% 20%, rgba(88, 101, 242, 0.25), transparent 55%),
    radial-gradient(900px 650px at 85% 30%, rgba(16, 185, 129, 0.18), transparent 55%),
    radial-gradient(800px 650px at 60% 95%, rgba(236, 72, 153, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow: hidden;
}

.wrap {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 28px 16px;
  position: relative;
}

.wrap::before,
.wrap::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.35;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  animation: float 10s ease-in-out infinite;
}

.wrap::before {
  background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.75), transparent 60%);
  left: -140px;
  top: -160px;
}

.wrap::after {
  background: radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.65), transparent 60%);
  right: -160px;
  bottom: -190px;
  animation-delay: -3s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0px, 0px) scale(1);
  }

  50% {
    transform: translate(20px, 14px) scale(1.03);
  }
}

.card {
  width: min(720px, 92vw);
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 22px 22px 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

.logo svg {
  width: 28px;
  height: 28px;
}

.brand-text .eyebrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

h1 {
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.15;
  margin: 0;
  font-weight: 600;
}

.lead {
  margin: 14px 0 16px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.status {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.06);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.95);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.15);
}

.dots {
  display: inline-flex;
  gap: 4px;
  margin-left: 2px;
}

.dots i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  display: inline-block;
  animation: bounce 1.2s infinite ease-in-out;
}

.dots i:nth-child(2) {
  animation-delay: 0.15s;
  opacity: 0.9;
}

.dots i:nth-child(3) {
  animation-delay: 0.30s;
  opacity: 0.8;
}

@keyframes bounce {

  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }

  40% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.hint {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 16px 0 14px;
}

.footer {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}

.meta {
  display: grid;
  gap: 4px;
}

.meta strong {
  font-weight: 600;
  font-size: 13.5px;
}

.muted {
  color: rgba(255, 255, 255, 0.65);
}

.tiny {
  margin: 12px 0 0;
  font-size: 12px;
  text-align: center;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
}

.link:hover {
  border-bottom-color: rgba(255, 255, 255, 0.75);
}

@media (prefers-reduced-motion: reduce) {

  .wrap::before,
  .wrap::after,
  .dots i {
    animation: none !important;
  }
}