.campaign-overlay {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: start center;
  overflow-y: auto;
  padding: max(42px, 8vh) 18px 28px;
  background: rgba(16, 34, 82, 0.46);
  backdrop-filter: blur(4px);
}

.campaign-window {
  position: relative;
  width: min(100%, 560px);
  padding: clamp(28px, 6vw, 42px);
  border: 1px solid rgba(16, 34, 82, 0.13);
  border-radius: 30px;
  color: #102252;
  background: #fffdf9;
  box-shadow: 0 28px 90px rgba(16, 34, 82, 0.3);
}

.campaign-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(16, 34, 82, 0.13);
  border-radius: 50%;
  color: #102252;
  background: #fffaf3;
  cursor: pointer;
  font: 800 1.5rem/1 "Nunito", sans-serif;
}

.campaign-close:hover {
  background: #fff0e9;
}

.campaign-eyebrow {
  margin: 0 50px 8px 0;
  color: #ef765e;
  font: 1.55rem/1.2 "Patrick Hand", cursive;
}

.campaign-window h2 {
  margin: 0 52px 10px 0;
  color: #102252;
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.campaign-description {
  margin: 0;
  color: #65708b;
  font-size: 1.05rem;
  line-height: 1.6;
}

.campaign-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.campaign-form label {
  color: #102252;
  font-weight: 900;
}

.campaign-form input,
.campaign-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 17px;
  border: 2px solid rgba(16, 34, 82, 0.13);
  border-radius: 999px;
  color: #102252;
  background: white;
  font: inherit;
}

.campaign-form input:focus,
.campaign-form select:focus {
  border-color: #5f82b2;
}

.campaign-submit {
  min-height: 54px;
  margin-top: 5px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: #102252;
  cursor: pointer;
  font: 900 1rem "Nunito", sans-serif;
}

.campaign-submit:hover {
  background: #253969;
}

.campaign-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.campaign-custom-pet[hidden],
.campaign-honeypot {
  display: none;
}

.campaign-status,
.campaign-consent {
  margin: 0;
  color: #65708b;
  line-height: 1.45;
}

.campaign-status {
  min-height: 1.45em;
  font-size: 0.9rem;
  font-weight: 700;
}

.campaign-status[data-state="error"] {
  color: #a33c2d;
}

.campaign-consent {
  font-size: 0.76rem;
}

.campaign-success {
  padding: 18px 0 6px;
}

.campaign-success p {
  color: #65708b;
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 520px) {
  .campaign-overlay {
    align-items: end;
    padding: 18px 10px 10px;
  }

  .campaign-window {
    padding: 30px 22px 25px;
    border-radius: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .campaign-overlay {
    scroll-behavior: auto;
  }
}
