/* Governance/Regulated enquiry modal — Diffusion-Engine contact engine. */
.ge-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.55);
  overflow-y: auto;
  padding: 2rem 1rem;
}
.ge-modal.is-open { display: block; }
.ge-modal__dialog {
  background: var(--bg-card, #ffffff);
  color: var(--text-primary, #111111);
  max-width: 560px;
  margin: 0 auto;
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.ge-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: inherit;
}
.ge-modal__intro { margin: 0.5rem 0 1.25rem; opacity: 0.85; }
.ge-field { margin-bottom: 1rem; display: flex; flex-direction: column; }
.ge-field--row { flex-direction: row; gap: 1rem; }
.ge-field--row > div { flex: 1; display: flex; flex-direction: column; }
.ge-field label { font-weight: 600; margin-bottom: 0.35rem; font-size: 0.9rem; }
.ge-field input,
.ge-field select,
.ge-field textarea {
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--border, #cccccc);
  border-radius: 6px;
  font: inherit;
  background: var(--bg-input, #ffffff);
  color: inherit;
}
.ge-error {
  color: #b00020;
  background: rgba(176, 0, 32, 0.08);
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.ge-ack p { font-size: 1.05rem; line-height: 1.6; margin-bottom: 1.5rem; }
.governance-tier-section .governance-delivery-note { opacity: 0.85; margin: 0.75rem 0 1.25rem; }
