:root {
  color-scheme: dark;
  --bg: #0a0a0a;
  --fg: #f4f1ea;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
  background: var(--bg);
  color: var(--fg);
  font-family: Arial, Helvetica, sans-serif;
}

main {
  width: min(22rem, 100%);
  text-align: center;
}

.mark {
  display: block;
  width: min(16rem, 72vw);
  height: auto;
  margin: 0 auto 1.75rem;
  animation: rise 900ms ease both;
}

.status {
  margin: 0;
  color: var(--fg);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 6vw, 2.1rem);
  font-weight: 700;
  animation: rise 900ms ease 140ms both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .mark,
  .status {
    animation: none;
  }
}
