.mfs-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(25, 21, 22, 0.58);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.mfs-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.mfs-modal {
  position: relative;
  width: min(520px, 100%);
  padding: 38px 34px 30px;
  border-radius: 18px;
  background: #fffaf4;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  text-align: center;
  color: #30282a;
}

.mfs-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: transparent;
  color: #6d6264;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.mfs-eyebrow {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.mfs-modal h2 {
  margin: 0 0 12px;
  font-size: clamp(27px, 6vw, 40px);
  line-height: 1.05;
}

.mfs-copy {
  margin: 0 auto 22px;
  max-width: 430px;
  font-size: 16px;
  line-height: 1.55;
}

#mfs-form {
  display: grid;
  gap: 10px;
}

#mfs-form input[type="email"] {
  box-sizing: border-box;
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid #cfc4c5;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
}

#mfs-form button[type="submit"] {
  min-height: 48px;
  padding: 11px 18px;
  border: 0;
  border-radius: 8px;
  background: #30282a;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
}

#mfs-form button[disabled] {
  opacity: .65;
  cursor: wait;
}

.mfs-fineprint {
  margin: 14px auto 0;
  max-width: 430px;
  color: #74696b;
  font-size: 11px;
  line-height: 1.45;
}

.mfs-message {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.mfs-message.is-success { color: #245f38; }
.mfs-message.is-info { color: #59496b; }
.mfs-message.is-error { color: #8f2f2f; }

@media (max-width: 520px) {
  .mfs-modal { padding: 34px 20px 25px; }
}
