:root.prae-exit-lock {
  overflow: hidden !important;
}

.prae-exit,
.prae-exit * {
  box-sizing: border-box;
}

.prae-exit[hidden] {
  display: none !important;
}

.prae-exit {
  --prae-bg-1: #0c212a;
  --prae-bg-2: #12323b;
  --prae-bg-3: #21555c;
  --prae-teal: #59a3a7;
  --prae-teal-dark: #3c6e71;
  --prae-teal-light: #9fe0e1;
  --prae-ink: #062934;
  --prae-muted: rgba(6, 41, 52, 0.65);
  --prae-border-soft: rgba(8, 42, 52, 0.12);
  --prae-white: #ffffff;

  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  padding: 22px;
  font-family: inherit;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.prae-exit.is-open {
  opacity: 1;
  visibility: visible;
}

.prae-exit__backdrop {
  position: absolute;
  inset: 0;
  cursor: default;
  background: rgba(4, 20, 27, 0.74);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.prae-exit__dialog {
  position: relative;
  z-index: 2;
  width: min(960px, calc(100vw - 44px));
  max-height: calc(100vh - 44px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.24fr);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 30px;
  background: #fff;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transform: translateY(18px) scale(0.985);
  opacity: 0;
  outline: none;
  transition: transform 0.26s ease, opacity 0.22s ease;
}

.prae-exit.is-open .prae-exit__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.prae-exit__close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 8;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(6, 41, 52, 0.1);
  border-radius: 999px;
  color: var(--prae-ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(6, 41, 52, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.prae-exit__close:hover {
  transform: translateY(-1px) scale(1.03);
  background: #fff;
  box-shadow: 0 14px 28px rgba(6, 41, 52, 0.16);
}

.prae-exit__close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.prae-exit__brand {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 28px 26px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 10%, rgba(159, 224, 225, 0.22), transparent 35%),
    radial-gradient(circle at 88% 76%, rgba(89, 163, 167, 0.24), transparent 36%),
    linear-gradient(152deg, var(--prae-bg-1) 0%, var(--prae-bg-2) 52%, var(--prae-bg-3) 140%);
}

.prae-exit__brand::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 42%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 18px);
  opacity: 0.52;
}

.prae-exit__brand::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -52px;
  z-index: -1;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 46px;
  transform: rotate(20deg);
}

.prae-exit__brand-glow {
  position: absolute;
  z-index: -1;
  left: -72px;
  top: 30%;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(89, 163, 167, 0.26), transparent 70%);
  filter: blur(18px);
}

.prae-exit__brand-top {
  display: grid;
  gap: 18px;
}

.prae-exit__logo-card {
  width: min(272px, 100%);
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,250,0.96));
  border: 1px solid rgba(255,255,255,0.62);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.prae-exit__logo {
  display: block;
  width: 100%;
  height: auto;
  filter: none;
}

.prae-exit__brand-copy {
  display: grid;
  gap: 12px;
  padding: 16px 17px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.prae-exit__eyebrow,
.prae-exit__kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  font-size: 10.5px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.prae-exit__eyebrow {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(234, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.prae-exit__brand-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.58;
}

.prae-exit__benefits {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.prae-exit__benefits li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13.4px;
  line-height: 1.35;
  font-weight: 620;
}

.prae-exit__benefits span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--prae-bg-1);
  background: rgba(234, 255, 255, 0.96);
  font-size: 12px;
  font-weight: 900;
}

.prae-exit__content {
  position: relative;
  min-width: 0;
  padding: 38px 40px 30px;
  color: var(--prae-ink);
  background:
    radial-gradient(circle at 12% 9%, rgba(89, 163, 167, 0.11), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.995), rgba(247, 251, 250, 0.97));
}

.prae-exit__content::before {
  content: "";
  position: absolute;
  left: 40px;
  right: 58px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  opacity: 0.9;
  background: linear-gradient(90deg, transparent, rgba(60,110,113,0.72), rgba(143,198,200,0.72), transparent);
}

.prae-exit[data-context="prices"] .prae-exit__content::before {
  background: linear-gradient(90deg, transparent, rgba(89,163,167,0.66), rgba(6,41,52,0.24), transparent);
}

.prae-exit__form-view[hidden],
.prae-exit__success[hidden] {
  display: none !important;
}

.prae-exit__kicker {
  color: var(--prae-teal-dark);
}

.prae-exit__kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--prae-teal-dark);
  box-shadow: 0 0 0 5px rgba(60, 110, 113, 0.1);
}

.prae-exit h2 {
  margin: 14px 0 0;
  max-width: 540px;
  color: var(--prae-ink);
  font-size: clamp(27px, 3vw, 41px);
  font-weight: 430;
  line-height: 1.08;
  letter-spacing: -0.048em;
  text-wrap: balance;
}

.prae-exit__lead {
  margin: 15px 0 24px;
  max-width: 560px;
  color: var(--prae-muted);
  font-size: 14.8px;
  line-height: 1.58;
}

.prae-exit__form {
  display: grid;
}

.prae-exit__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.prae-exit__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.prae-exit__field {
  display: grid;
  gap: 7px;
}

.prae-exit__field--wide {
  grid-column: 1 / -1;
}

.prae-exit__field > span {
  color: rgba(6, 41, 52, 0.82);
  font-size: 12.8px;
  line-height: 1.25;
  font-weight: 700;
}

.prae-exit__field em,
.prae-exit__privacy em {
  color: var(--prae-teal-dark);
  font-style: normal;
  font-weight: 800;
}

.prae-exit__field small {
  color: rgba(6, 41, 52, 0.48);
  font-size: 11px;
  font-weight: 600;
}

.prae-exit__field input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(60, 110, 113, 0.17);
  border-radius: 14px;
  outline: none;
  color: var(--prae-ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 25px rgba(6, 41, 52, 0.035);
  font: inherit;
  font-size: 14.5px;
  line-height: 1.35;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.prae-exit__field input::placeholder {
  color: rgba(6, 41, 52, 0.42);
}

.prae-exit__field input:focus {
  border-color: rgba(60, 110, 113, 0.52);
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(143, 198, 200, 0.18),
    0 14px 32px rgba(6, 41, 52, 0.06);
}

.prae-exit__privacy {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  margin-top: 16px;
  color: rgba(6, 41, 52, 0.65);
  font-size: 11.5px;
  line-height: 1.46;
}

.prae-exit__privacy input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--prae-teal-dark);
}

.prae-exit__privacy a {
  color: var(--prae-teal-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.prae-exit__submit {
  width: 100%;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
  padding: 12px 18px;
  border: 1px solid rgba(143, 198, 200, 0.45);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #4f8588 0%, var(--prae-teal-dark) 52%, #0f383b 100%);
  box-shadow:
    0 14px 28px rgba(8, 39, 43, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font: inherit;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 760;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.prae-exit__submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow:
    0 18px 34px rgba(8, 39, 43, 0.24),
    0 0 24px rgba(89, 163, 167, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.prae-exit__submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.prae-exit__microcopy {
  margin: 10px 0 0;
  color: rgba(6, 41, 52, 0.5);
  font-size: 10.9px;
  line-height: 1.42;
  text-align: center;
}

.prae-exit__status {
  min-height: 18px;
  margin: 8px 0 0;
  color: var(--prae-teal-dark);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.prae-exit__status.is-error {
  color: #9d2d2d;
}

.prae-exit__decline {
  display: block;
  margin: 4px auto 0;
  padding: 7px 8px;
  border: 0;
  color: rgba(6, 41, 52, 0.48);
  background: transparent;
  font: inherit;
  font-size: 11.6px;
  line-height: 1.3;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: pointer;
}

.prae-exit__success {
  min-height: 100%;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 25px 4px;
}

.prae-exit__success-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--prae-teal), var(--prae-teal-dark));
  box-shadow: 0 16px 34px rgba(60, 110, 113, 0.22);
  font-size: 24px;
  font-weight: 900;
}

.prae-exit__success p:not(.prae-exit__kicker) {
  margin: 14px 0 0;
  color: var(--prae-muted);
  font-size: 15px;
  line-height: 1.55;
}

.prae-exit button:focus-visible,
.prae-exit a:focus-visible,
.prae-exit input:focus-visible,
.prae-exit__dialog:focus-visible {
  outline: 3px solid rgba(159, 224, 225, 0.9);
  outline-offset: 3px;
}

@media (max-width: 820px) {
  .prae-exit {
    padding: 14px;
  }

  .prae-exit__dialog {
    width: min(640px, calc(100vw - 28px));
    max-height: calc(100vh - 28px);
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .prae-exit__brand {
    min-height: auto;
    gap: 16px;
    padding: 22px 24px 20px;
  }

  .prae-exit__brand-top {
    gap: 14px;
  }

  .prae-exit__logo-card {
    width: min(250px, 100%);
    padding: 16px 16px 14px;
  }

  .prae-exit__brand-copy {
    padding: 14px 15px;
  }

  .prae-exit__benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .prae-exit__benefits li {
    grid-template-columns: 23px minmax(0, 1fr);
    gap: 7px;
    padding: 8px 9px;
    font-size: 11.4px;
  }

  .prae-exit__benefits span {
    width: 23px;
    height: 23px;
    font-size: 10px;
  }

  .prae-exit__content {
    padding: 28px 24px 22px;
  }

  .prae-exit__content::before {
    left: 24px;
    right: 54px;
  }

  .prae-exit__close {
    top: 11px;
    right: 11px;
  }
}

@media (max-width: 560px) {
  .prae-exit__brand {
    padding: 18px 20px;
  }

  .prae-exit__logo-card {
    width: min(220px, 100%);
  }

  .prae-exit__brand-copy p {
    font-size: 13.5px;
  }

  .prae-exit__benefits {
    display: none;
  }

  .prae-exit__content {
    padding: 25px 20px 18px;
  }

  .prae-exit__content::before {
    left: 20px;
    right: 52px;
  }

  .prae-exit h2 {
    font-size: clamp(25px, 8vw, 33px);
  }

  .prae-exit__lead {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .prae-exit__fields {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .prae-exit__field--wide {
    grid-column: auto;
  }

  .prae-exit__privacy {
    font-size: 10.8px;
  }
}

@media (max-height: 720px) and (min-width: 821px) {
  .prae-exit__brand {
    padding: 24px 26px 22px;
  }

  .prae-exit__content {
    padding: 28px 36px 22px;
  }

  .prae-exit__content::before {
    left: 36px;
    right: 52px;
  }

  .prae-exit__lead {
    margin-bottom: 17px;
  }

  .prae-exit__field input {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .prae-exit,
  .prae-exit *,
  .prae-exit::before,
  .prae-exit::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
