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

:root {
  --bg: #050505;
  --bg-soft: #101010;
  --accent: #ffffff;
  --accent-soft: #9f9f9f;
  --accent-muted: #5f5f5f;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 22px 40px rgba(0, 0, 0, 0.65);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", Roboto, sans-serif;
}

html,
body {
  height: 100%;
}

body {
  background: radial-gradient(circle at top, #1a1a1a 0, #050505 55%);
  color: var(--accent);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  justify-content: flex-start;
}

.brand__logo {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.75));
}

.content {
  max-width: 620px;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-muted);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0)
  );
  backdrop-filter: blur(18px);
}

.tagline::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, #09ffb0 0, #05a375 70%, #007a54 100%);
  box-shadow: 0 0 0 6px rgba(9, 255, 176, 0.18);
}

.title {
  margin-top: 16px;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.text {
  margin-top: 16px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--accent-soft);
}

.status {
  margin-top: 28px;
  padding: 18px 18px 20px;
  border-radius: var(--radius-lg);
  background: radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.06),
      transparent 55%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.9));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.status__label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-muted);
  margin-bottom: 10px;
}

.status__bar {
  position: relative;
  width: 100%;
  height: 8px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.status__bar-fill {
  position: absolute;
  inset: 0;
  width: 52%;
  background: linear-gradient(90deg, #ff3b8d, #ffb800);
  box-shadow: 0 0 24px rgba(255, 97, 188, 0.7);
  animation: pulse 2.4s infinite ease-in-out;
}

.status__hint {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--accent-soft);
}

.footer {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--accent-muted);
}

.footer__text {
  opacity: 0.9;
}

@keyframes pulse {
  0% {
    transform: translateX(-5%) scaleX(1);
    opacity: 0.7;
  }
  50% {
    transform: translateX(3%) scaleX(1.03);
    opacity: 1;
  }
  100% {
    transform: translateX(0) scaleX(1);
    opacity: 0.8;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 20px 16px 18px;
  }

  .brand__logo {
    height: 36px;
  }

  .status {
    padding: 16px 14px 18px;
  }
}
