/* Pre-launch access gate — deliberately blank: white page, one centered field, no branding. */
html, body { height: 100%; margin: 0; }
body {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#gate-form { width: min(320px, 80vw); }
#gate-code {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  border: 1px solid #d6d9e2;
  border-radius: 10px;
  background: #ffffff;
  color: #14151a;
  font: 400 16px system-ui, -apple-system, sans-serif;
  text-align: center;
  letter-spacing: 0.06em;
  outline: none;
  box-sizing: border-box;
}
#gate-code:focus {
  border-color: #7a5cff;
  box-shadow: 0 0 0 3px rgba(122, 92, 255, 0.18);
}
#gate-code.error {
  border-color: #e0563a;
  box-shadow: 0 0 0 3px rgba(224, 86, 58, 0.16);
}
