/* Coming-soon gate overlay */
html:not(.access-granted),
html:not(.access-granted) body {
  overflow: hidden;
  height: 100%;
}

#gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--clr-bg, #F3E7DA);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
}

html.access-granted #gate-overlay {
  display: none;
}

.gate-content {
  text-align: center;
  width: 100%;
  max-width: 360px;
  margin: auto;
  animation: gate-fade-in 0.8s ease-out;
}

@keyframes gate-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.gate-logo {
  width: clamp(72px, 14vw, 96px);
  height: auto;
  display: block;
  margin: 0 auto 1.25rem;
}

.gate-poster {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto 2rem;
}

.gate-form {
  margin: 0 auto;
  max-width: 220px;
}

.gate-form input {
  width: 100%;
  padding: 0.5rem 0;
  border: none;
  border-bottom: 1px solid rgba(26, 26, 26, 0.25);
  border-radius: 0;
  background: transparent;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  color: var(--clr-ink, #1A1A1A);
  outline: none;
  text-align: center;
  letter-spacing: 0.08em;
  transition: border-color 0.2s ease;
}

.gate-form input:focus {
  border-bottom-color: var(--clr-ink, #1A1A1A);
}

.gate-form input::placeholder {
  color: rgba(26, 26, 26, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
}

.gate-error {
  color: var(--clr-accent, #C8531C);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.8125rem;
  margin: 0.75rem 0 0;
  min-height: 1.1rem;
  text-align: center;
}
