.pro-modal-backdrop {
  position: fixed;
  z-index: 150;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: #061a3d99;
  opacity: 0;
  visibility: hidden;
  transition: 0.22s;
}
.pro-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.pro-modal {
  position: relative;
  width: min(520px, 100%);
  padding: 30px;
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 30px 90px #00102b66;
}
.pro-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  font-size: 22px;
}
.pro-modal-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 15px;
  border-radius: 15px;
  background: linear-gradient(145deg, #2969e8, #061a3d);
  color: #fff;
  font-size: 22px;
}
.pro-modal h2 {
  font-size: 28px;
  line-height: 1.15;
}
.pro-modal > p:not(.eyebrow) {
  color: var(--muted);
}
.pro-modal ul {
  display: grid;
  gap: 8px;
  margin: 20px 0;
  padding-left: 22px;
}
.pro-modal li {
  display: list-item;
  padding: 0;
  border: 0;
}
.pro-modal-trial {
  margin: 0 0 14px;
  padding: 9px 12px;
  border-radius: 10px;
  background: #eaf1ff;
  color: #1760d2;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}
.pro-modal-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.pro-modal .pro-checkout {
  position: relative;
  width: 100%;
  margin-top: 4px;
}
.pro-modal-save {
  position: absolute;
  top: -10px;
  right: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #1a9e5c;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.pro-modal > small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  text-align: center;
}
@media (max-width: 520px) {
  .pro-modal-plans {
    grid-template-columns: 1fr;
  }
}
.settings-shell:before {
  content: "Profile & preferences";
  grid-column: 1/-1;
  padding: 0 2px 8px;
  color: #43516b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.settings-section {
  border-radius: 18px !important;
}
.settings-section-head {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.preference-item {
  min-height: 70px;
}
.settings-fields {
  gap: 17px !important;
}
@media (max-width: 900px) {
  .pro-modal {
    padding: 24px 18px;
  }
  .pro-modal h2 {
    font-size: 23px;
  }
  .settings-shell:before {
    display: none;
  }
}
