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

html {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.15), transparent 35%),
    #0f172a;
  color: #f8fafc;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.hero-card {
  width: 100%;
  max-width: 760px;
  padding: 56px 40px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin-bottom: 18px;
}

h2 {
  color: #cbd5e1;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-weight: 500;
  margin-bottom: 24px;
}

.intro {
  max-width: 610px;
  margin: 0 auto;
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.75;
}

.status-box {
  margin: 34px auto 0;
  max-width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #e2e8f0;
  font-size: 0.95rem;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.12);
  animation: pulse 1.8s infinite;
}

.links {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.links a {
  text-decoration: none;
  color: #f8fafc;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.9);
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.links a:hover {
  transform: translateY(-3px);
  background: #f8fafc;
  color: #0f172a;
  border-color: #f8fafc;
}

.footer-note {
  margin-top: 38px;
  color: #64748b;
  font-size: 0.95rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

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

  .intro {
    font-size: 1rem;
  }

  .status-box {
    border-radius: 18px;
    text-align: left;
  }

  .links {
    flex-direction: column;
  }

  .links a {
    width: 100%;
  }
}
