.mx-wa-gate-open { overflow: hidden; }
.mx-wa-gate[hidden] { display: none !important; }
.mx-wa-gate {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(8, 10, 16, 0.72);
  backdrop-filter: blur(16px);
}
.mx-wa-gate__panel {
  width: min(100%, 520px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(18,24,35,0.98), rgba(10,15,24,0.98));
  box-shadow: 0 28px 80px rgba(0,0,0,0.36);
  overflow: hidden;
}
.mx-wa-gate__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.4rem 0.8rem;
}
.mx-wa-gate__eyebrow {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0,168,107,0.10);
  color: #9cf6d1;
  border: 1px solid rgba(0,168,107,0.20);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.mx-wa-gate__title { margin: 0; color: #f5f7fb; font-size: 1.45rem; line-height: 1.15; }
.mx-wa-gate__hint { margin: 0.65rem 0 0; color: rgba(255,255,255,0.72); font-size: 0.92rem; line-height: 1.65; }
.mx-wa-gate__close {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #fff;
  cursor: pointer;
}
.mx-wa-gate__body { padding: 0.6rem 1.4rem 1.4rem; }
.mx-wa-gate__field { margin-bottom: 0.95rem; }
.mx-wa-gate__field label { display:block; margin-bottom:0.45rem; color:#f5f7fb; font-size:0.86rem; font-weight:600; }
.mx-wa-gate__input, .mx-wa-gate__select {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font: inherit;
}
.mx-wa-gate__select option { background: #101521; color: #fff; }
.mx-wa-gate__input:focus, .mx-wa-gate__select:focus {
  outline: none;
  border-color: rgba(0,168,107,0.45);
  box-shadow: 0 0 0 4px rgba(0,168,107,0.12);
}
.mx-wa-gate__footnote {
  margin: 0.35rem 0 1rem;
  color: rgba(255,255,255,0.56);
  font-size: 0.78rem;
  line-height: 1.6;
}
.mx-wa-gate__error {
  margin: 0 0 0.9rem;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  background: rgba(239,68,68,0.12);
  color: #fecaca;
  border: 1px solid rgba(239,68,68,0.24);
  font-size: 0.84rem;
}
.mx-wa-gate__actions { display:flex; flex-direction:column; gap:0.75rem; }
.mx-wa-gate__submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg,#006847,#00a86b);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.mx-wa-gate__submit[disabled] { opacity: 0.72; cursor: wait; }
.mx-wa-gate__secondary {
  display: inline-flex;
  justify-content: center;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.84rem;
}
@media (max-width: 640px) {
  .mx-wa-gate { padding: 0.9rem; align-items: end; }
  .mx-wa-gate__panel { width: 100%; border-radius: 22px 22px 18px 18px; }
  .mx-wa-gate__title { font-size: 1.24rem; }
}
