:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050608;
  color: #f7f7f8;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 85% 15%, rgba(226, 51, 51, 0.18), transparent 34rem),
    #050608;
}

.card {
  width: min(100%, 620px);
  padding: clamp(28px, 7vw, 56px);
  border: 1px solid #292b31;
  border-radius: 24px;
  background: rgba(17, 18, 22, 0.92);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.eyebrow {
  margin: 0 0 20px;
  color: #ff5959;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.2em;
}

h1 {
  max-width: 15ch;
  margin: 0 0 18px;
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

p {
  color: #b9bbc2;
  line-height: 1.65;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: #ececef;
  font-size: 0.9rem;
}

.status span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ff5959;
  box-shadow: 0 0 18px rgba(255, 89, 89, 0.9);
}

