:root {
  --bg: #06080f;
  --surface: #0d1120;
  --border: #202a4a;
  --text: #f0f4ff;
  --muted: #93a1c8;
  --dim: #5d6b93;
  --brand: #8b5cf6;
  --lime: #58cc02;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Syne", var(--font);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { margin: 0; min-height: 100%; }
body {
  background: var(--bg);
  background-image:
    radial-gradient(900px 420px at 12% -160px, rgba(139, 92, 246, 0.2), transparent 65%),
    radial-gradient(700px 380px at 95% -80px, rgba(88, 204, 2, 0.08), transparent 60%);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.gate {
  max-width: 28rem;
  margin: 0 auto;
  padding: 72px 22px 80px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  text-decoration: none;
  color: inherit;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: var(--lime);
  margin: 0 0 12px;
}
h1 {
  font-family: var(--display);
  letter-spacing: -0.04em;
  line-height: 1.1;
  font-size: clamp(2.2rem, 7vw, 3.2rem);
  margin: 0 0 14px;
}
.lede { color: var(--muted); margin: 0 0 28px; }
.wait-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wait-form input:not(.hp) {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font: inherit;
}
.wait-form input:not(.hp):focus {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}
.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
}
.btn.primary {
  background: linear-gradient(135deg, #8b5cf6, #58cc02);
  border: 0;
  color: #0a0a0a;
}
.btn.primary:disabled { opacity: 0.6; cursor: wait; }
.btn.x {
  width: 100%;
  background: #0a0a0a;
  border-color: #333;
  color: #fff;
}
.or {
  text-align: center;
  color: var(--dim);
  font-size: 13px;
  margin: 16px 0;
}
.status { margin: 18px 0 0; font-weight: 600; }
.status.ok { color: var(--lime); }
.status.err { color: #f87171; }
.fine { color: var(--dim); font-size: 13px; margin-top: 22px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
