/* Soft password gate overlay for /macro (client-side, pre-launch only).
   House look — matches the jasonfurman.org edge gate (teal on charcoal). */
.__gate_overlay {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: #1F2A30;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
.__gate_form {
  width: 340px; max-width: calc(100vw - 48px);
  display: flex; flex-direction: column; gap: 10px;
  padding: 32px 28px; background: #FBF8F1;
  border: 1px solid #DDD9CF; border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.__gate_title {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 22px; font-weight: 600; letter-spacing: -.01em; color: #1F2A30;
}
.__gate_subtitle { font-size: 14px; color: #435058; margin-bottom: 6px; }
.__gate_input {
  font: inherit; font-size: 15px; padding: 11px 13px;
  border: 1px solid #DDD9CF; border-radius: 8px;
  background: #fff; color: #1F2A30; outline: none;
}
.__gate_input:focus { border-color: #0E7C7B; }
.__gate_button {
  font: inherit; font-size: 15px; font-weight: 600; cursor: pointer;
  padding: 11px 14px; border: none; border-radius: 8px;
  background: #0E7C7B; color: #fff; transition: background .12s ease;
}
.__gate_button:hover { background: #0a6564; }
.__gate_error { font-size: 13px; color: #A43B2E; min-height: 18px; }
