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

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle at 50% 20%, #17213a 0, #080b12 52%);
}

.card {
  width: min(560px, 100%);
  padding: 44px;
  border: 1px solid #27304a;
  border-radius: 24px;
  background: rgb(14 18 29 / 88%);
  box-shadow: 0 24px 80px rgb(0 0 0 / 35%);
}

.brand {
  color: #8f72ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .22em;
}

h1 {
  margin: 14px 0 28px;
  font-size: clamp(32px, 8vw, 52px);
  line-height: 1;
}

.state {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
  color: #bfffe3;
  font-weight: 700;
}

.state span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #36d98a;
  box-shadow: 0 0 20px #36d98a;
}

.note {
  margin: 18px 0 0;
  color: #929bb2;
  line-height: 1.6;
}
