#wp-gate {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: none;
  background: #fff;
  font-family: "Maven Pro", system-ui, sans-serif;
  color: #202020;
}
html.wp-gate-on,
html.wp-gate-on body { overflow: hidden !important; }
html.wp-gate-on #wp-gate { display: flex; flex-direction: column; }
.wp-gate-ann {
  background: #bd8fe5;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 12px;
  flex: 0 0 auto;
}
.wp-gate-head {
  background: #f9f2f5;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f0e4ea;
  flex: 0 0 auto;
}
.wp-gate-blob {
  width: 118px; height: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, #bd8fe5 0%, #e2c8f3 55%, #f3e3fb 100%);
}
.wp-gate-stage {
  position: relative;
  flex: 1;
  display: grid;
  place-items: center;
  padding: 32px 16px 48px;
  overflow: hidden;
}
.wp-gate-orb {
  position: absolute;
  border-radius: 50%;
  background: #f9f2f5;
  border: 1px solid #f3e6ee;
}
.wp-gate-orb-1 { width: 220px; height: 220px; left: -70px; bottom: -40px; }
.wp-gate-orb-2 { width: 160px; height: 160px; right: -40px; top: 40px; }
.wp-gate-orb-3 { width: 90px; height: 90px; right: 18%; bottom: 12%; background: #faf6ff; }
.wp-gate-card {
  position: relative;
  width: min(100%, 360px);
  text-align: center;
}
.wp-gate-card h1 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px;
}
.wp-rc {
  width: 304px;
  max-width: 100%;
  margin: 0 auto;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  box-shadow: 0 0 4px 1px rgba(0,0,0,.08);
  height: 78px;
  display: flex;
  align-items: center;
  padding: 0 12px 0 14px;
  text-align: left;
  cursor: pointer;
  user-select: none;
}
.wp-rc-check {
  width: 28px;
  height: 28px;
  border: 2px solid #c1c1c1;
  border-radius: 2px;
  background: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  margin-right: 14px;
  position: relative;
}
.wp-rc-check input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.wp-rc.is-load .wp-rc-check {
  border-color: transparent;
  background: conic-gradient(#bd8fe5, #e2c8f3, #bd8fe5);
  animation: wpSpin .7s linear infinite;
  border-radius: 50%;
}
.wp-rc.is-load .wp-rc-check::after {
  content: "";
  width: 18px; height: 18px;
  background: #f9f9f9;
  border-radius: 50%;
}
.wp-rc.is-ok .wp-rc-check {
  border-color: #1a7f4b;
  background: #fff;
  animation: none;
}
.wp-rc.is-ok .wp-rc-check::after {
  content: "";
  width: 8px; height: 14px;
  border: solid #1a7f4b;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg) translate(-1px, -1px);
  background: none;
}
.wp-rc-text { flex: 1; font-size: 14px; color: #202020; }
.wp-rc-side {
  width: 72px;
  flex: 0 0 72px;
  text-align: center;
  line-height: 1.15;
}
.wp-rc-side svg { display: block; margin: 0 auto 3px; }
.wp-rc-side a {
  display: block;
  font-size: 8px;
  color: #555;
  text-decoration: none;
}
.wp-rc-side a:hover { text-decoration: underline; }
@keyframes wpSpin { to { transform: rotate(360deg); } }
.wp-gate-hint { margin: 16px 0 0; font-size: 12px; color: #9aa3a8; }
