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

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(74, 144, 226, 0.22), transparent 34rem),
    linear-gradient(135deg, #111317 0%, #1e2328 48%, #283329 100%);
}

.page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.panel {
  width: min(720px, 100%);
  border: 1px solid rgba(246, 243, 235, 0.16);
  border-radius: 8px;
  padding: clamp(32px, 7vw, 72px);
  background: rgba(17, 19, 23, 0.72);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.eyebrow {
  margin: 0 0 16px;
  color: #9ac8ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 36rem;
  margin: 24px 0 0;
  color: rgba(246, 243, 235, 0.78);
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  line-height: 1.6;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  color: #c9f7d4;
  font-weight: 700;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #45d483;
  box-shadow: 0 0 0 8px rgba(69, 212, 131, 0.12);
}
