:root {
  color-scheme: dark;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #090b10;
  color: #f5f7fb;
}

* {
  box-sizing: border-box;
}

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

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(73, 118, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 80% 80%, rgba(0, 219, 170, 0.14), transparent 26rem),
    #090b10;
}

.card {
  width: min(100%, 720px);
  padding: clamp(32px, 7vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(13, 17, 26, 0.72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.eyebrow {
  margin: 0 0 18px;
  color: #8da2ff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 9vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: #b8c0cf;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  line-height: 1.55;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(35, 197, 142, 0.12);
  color: #9ef0cc;
  font-size: 0.95rem;
  font-weight: 700;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #23c58e;
  box-shadow: 0 0 0 6px rgba(35, 197, 142, 0.16);
}
