:root {
  color-scheme: dark;
  --bg: #0d0d0d;
  --text: #f1f0eb;
  --muted: #c6c8c3;
  --soft: #8e948e;
  --accent: #00ff9d;
  --accent-soft: #35c77c;
  --line: rgba(0, 255, 157, 0.24);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 26%, rgba(0, 255, 157, 0.14), transparent 28%),
    radial-gradient(circle at 80% 82%, rgba(53, 199, 124, 0.1), transparent 24%),
    var(--bg);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(0, 255, 157, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 157, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at center, black 0 48%, transparent 78%);
}

.page-shell {
  width: min(960px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 48px 0;
}

.construction {
  width: 100%;
  display: grid;
  justify-items: center;
  text-align: center;
}

.kicker {
  margin: 0 0 10px;
  color: var(--accent-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead,
.note {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.note {
  max-width: 640px;
  margin-top: 18px;
  color: var(--soft);
  font-size: 16px;
}

.status-row {
  min-width: min(100%, 340px);
  margin-top: 34px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 255, 157, 0.04);
}

.status-row span {
  color: var(--soft);
}

.status-row strong {
  color: var(--accent);
}

@media (max-width: 640px) {
  .lead {
    font-size: 18px;
  }
}

