:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(circle at top, #1f2937 0%, #0f172a 45%),
    #020617;

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;

  color: #f8fafc;
}

.container {
  width: 100%;
  padding: 24px;
}

.card {
  max-width: 640px;
  margin: 0 auto;

  padding: 48px;

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;

  background: rgba(15, 23, 42, 0.72);

  backdrop-filter: blur(12px);

  text-align: center;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.35);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.05;
}

.description {
  margin: 24px auto 0;
  max-width: 520px;

  font-size: 1.1rem;
  line-height: 1.7;

  color: #cbd5e1;
}

.status {
  margin-top: 18px;
  color: #94a3b8;
}

.button {
  display: inline-block;

  margin-top: 32px;
  padding: 14px 24px;

  border-radius: 999px;

  background: white;
  color: #020617;

  text-decoration: none;
  font-weight: 600;

  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

