:root {
  --bg-1: #042f2e;
  --bg-2: #0f766e;
  --bg-3: #14b8a6;
  --card: rgba(255, 255, 255, 0.92);
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, 0.12);
  --accent: #0f766e;
  --accent-soft: rgba(20, 184, 166, 0.14);
  --shadow: 0 26px 80px rgba(2, 6, 23, 0.28);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.55), transparent 34%),
    radial-gradient(circle at bottom right, rgba(45, 212, 191, 0.35), transparent 32%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2) 55%, var(--bg-3));
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(6px);
  pointer-events: none;
}

body::before {
  top: -130px;
  right: -90px;
}

body::after {
  left: -160px;
  bottom: -160px;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.card {
  width: min(100%, 760px);
  position: relative;
  z-index: 1;
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 32px;
  background: var(--card);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(18px);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 999px;
  background: var(--accent-soft);
  color: #0f766e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo {
  width: 96px;
  height: 96px;
  margin: 28px auto 22px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  color: white;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent),
    linear-gradient(135deg, #0f766e, #14b8a6);
  box-shadow: 0 18px 36px rgba(15, 118, 110, 0.32);
}

.logo span {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 7vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.lead {
  width: min(100%, 610px);
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 2.5vw, 21px);
  line-height: 1.65;
}

.sub {
  width: min(100%, 560px);
  margin: 12px auto 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.status {
  margin: 28px auto 0;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid var(--line);
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #14b8a6;
  box-shadow: 0 0 0 7px rgba(20, 184, 166, 0.14);
  animation: pulse 1.6s ease-in-out infinite;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 34px 0 20px;
}

footer {
  color: #64748b;
  font-size: 13px;
}

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

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

@media (max-width: 520px) {
  .page {
    padding: 18px 12px;
  }

  .card {
    border-radius: 24px;
  }

  .logo {
    width: 80px;
    height: 80px;
    border-radius: 23px;
  }

  .logo span {
    font-size: 28px;
  }
}
