/* Shared launch / member-access waitlist gate */
.site-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: #3a3a3a;
  color: #f0f0f0;
  font-family: Inter, Arial, sans-serif;
}
.site-gate.is-hidden { display: none; }
.site-gate-inner {
  width: min(100%, 26rem);
  text-align: center;
}
.site-gate-logo {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  display: block;
  border-radius: 14px;
}
.site-gate-lede {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.site-gate-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.site-gate-form #waitlistFields {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}
.site-gate-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.22);
  color: #fbf6eb;
  font: inherit;
  font-size: 0.875rem;
  box-sizing: border-box;
}
.site-gate-input::placeholder { color: rgba(255, 255, 255, 0.38); }
.site-gate-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}
.site-gate-submit {
  padding: 1rem 2rem;
  border: none;
  border-radius: 9999px;
  background: #094a43;
  color: #fbf6eb;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 220ms ease, transform 220ms ease;
}
.site-gate-submit:hover { background: #0b5a51; transform: translateY(-1px); }
.site-gate-error {
  font-size: 0.875rem;
  color: #f0a8a0;
  text-align: center;
}
.site-gate-success {
  text-align: center;
  padding: 1rem 0;
}
.site-gate-success h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  color: #fbf6eb;
  margin: 0 0 0.75rem;
}
.site-gate-success p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  margin: 0;
}
.site-gate-back {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 10001;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font: inherit;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0.5rem;
}
.site-gate-back:hover { color: rgba(255, 255, 255, 0.9); }
.site-gate-unlock {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10001;
}
.site-gate-unlock-input {
  width: 9rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.55);
  font: inherit;
  font-size: 0.75rem;
}
.site-gate-unlock-input::placeholder { color: rgba(255, 255, 255, 0.28); }
.site-gate-unlock-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fbf6eb;
}
.site-gate-unlock-btn {
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.45);
  font: inherit;
  font-size: 0.75rem;
  cursor: pointer;
}
.site-gate-unlock-btn:hover {
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.3);
}
.site-gate-unlock-error {
  position: fixed;
  bottom: calc(1rem + 2.5rem);
  right: 1rem;
  font-size: 0.75rem;
  color: #f0a8a0;
  z-index: 10001;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
