:root {
  --blue: #0796f6;
  --blue-dark: #0878c6;
  --text: #25282c;
  --muted: #707983;
  --surface: rgba(255, 255, 255, 0.84);
  --line: rgba(10, 34, 57, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 22%, rgba(7, 150, 246, 0.11), transparent 26%),
    radial-gradient(circle at 83% 75%, rgba(7, 150, 246, 0.08), transparent 24%),
    linear-gradient(135deg, #fbfdff 0%, #f3f8fc 100%);
  overflow: hidden;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px 74px;
  isolation: isolate;
}

.card {
  width: min(680px, 100%);
  position: relative;
  z-index: 2;
  padding: 54px 50px 48px;
  text-align: center;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 32px;
  box-shadow:
    0 30px 80px rgba(22, 65, 104, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: rise .9s cubic-bezier(.2,.8,.2,1) both;
}

.logo-wrap {
  width: min(330px, 80vw);
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background: white;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-dark);
  background: rgba(7, 150, 246, 0.08);
  border: 1px solid rgba(7, 150, 246, 0.12);
  border-radius: 999px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(7, 150, 246, 0.11);
  animation: pulse 1.8s ease-in-out infinite;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 700;
}

.subtitle {
  max-width: 530px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.loader {
  height: 36px;
  margin: 28px auto 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.loader span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: bounce 1.15s ease-in-out infinite;
}

.loader span:nth-child(2) { animation-delay: .15s; }
.loader span:nth-child(3) { animation-delay: .30s; }

.note {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #929aa3;
}

footer {
  position: absolute;
  bottom: 26px;
  left: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #8d969f;
  font-size: 12px;
}

.glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .7;
  pointer-events: none;
}

.glow-one {
  width: 240px;
  height: 240px;
  top: -70px;
  right: 8%;
  background: rgba(7, 150, 246, .08);
}

.glow-two {
  width: 180px;
  height: 180px;
  bottom: 4%;
  left: 5%;
  background: rgba(27, 46, 62, .035);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 6px rgba(7, 150, 246, 0.11); }
  50% { transform: scale(.9); box-shadow: 0 0 0 10px rgba(7, 150, 246, 0.04); }
}

@keyframes bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: .45; }
  30% { transform: translateY(-7px); opacity: 1; }
}

@media (max-width: 640px) {
  .page-shell { padding: 20px 16px 68px; }
  .card { padding: 42px 22px 38px; border-radius: 24px; }
  .logo-wrap { width: min(270px, 78vw); margin-bottom: 24px; }
  .subtitle { font-size: 15px; line-height: 1.65; }
  footer { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
