/* ============================================================
   gate.css — Password overlay and identity capture step
   ============================================================ */

.gate-overlay {
    position: fixed;
    inset: 0;
    background: var(--gate-overlay-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 1rem;
}
.gate-overlay.hidden { display: none; }

.gate {
    width: min(430px, 95vw);
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--gate-bg);
    padding: 0.9rem;
}
.gate h3 { font-size: 0.96rem; margin-bottom: 0.24rem; }
.gate p   { font-size: 0.83rem; color: var(--muted); }
