/* =========================================================
   FONTS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bitcount+Prop+Single&display=swap');

/* LOG OUT FORM */

.wv-auth-link[hidden],
.wv-auth-logout-form[hidden],
[data-auth-guest][hidden],
[data-auth-user][hidden] {
  display: none !important;
}

.wv-auth-link,
.wv-auth-logout {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: inherit;
  font: inherit;
}
.wv-auth-logout {
  min-height: 42px;
  padding: .7rem 1.1rem;
  border: 1px solid rgba(126, 243, 255, .28);
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgba(126, 243, 255, .14),
      rgba(126, 243, 255, .05)
    );
  color: #dffcff;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .06);
  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease;
}

.wv-auth-logout:hover {
  transform: translateY(-1px);
  border-color: rgba(126, 243, 255, .55);
  background:
    linear-gradient(
      135deg,
      rgba(126, 243, 255, .22),
      rgba(126, 243, 255, .08)
    );
  box-shadow:
    0 10px 28px rgba(0, 0, 0, .28),
    0 0 18px rgba(126, 243, 255, .08);
}

.wv-auth-logout:active {
  transform: translateY(0);
}

.wv-auth-logout:focus-visible {
  outline: 2px solid #7ef3ff;
  outline-offset: 3px;
}

.wv-auth-logout-form {
  display: inline-flex;
  margin: 0;
}

/* AUTH PAGE */

.wv-auth-page {
  position: relative;
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  overflow-x: hidden;
  padding: 1.5rem;
  color: #edfaff;

  background:
    radial-gradient(
      circle at 16% 18%,
      rgba(126, 243, 255, .18),
      transparent 31rem
    ),
    radial-gradient(
      circle at 82% 20%,
      rgba(255, 92, 174, .13),
      transparent 28rem
    ),
    radial-gradient(
      circle at 60% 90%,
      rgba(103, 255, 210, .08),
      transparent 26rem
    ),
    linear-gradient(
      145deg,
      #02090d 0%,
      #06161d 48%,
      #071017 100%
    );

  font-family: Inter, system-ui, sans-serif;
}

.wv-auth-card {
  width: min(100%, 440px);
  padding: 2rem;
  border: 1px solid rgba(126, 243, 255, .2);
  border-radius: 22px;
  background: rgba(5, 18, 23, .9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

.wv-auth-card h1 { margin-top: 0; }
.wv-auth-card a { color: #7ef3ff; }
.wv-auth-error {
  padding: .75rem;
  border-radius: 10px;
  color: #ffd6dc;
  background: rgba(180, 30, 55, .25);
}

.wv-auth-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
}

.wv-auth-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}
/* =========================================================
   SIGNED-IN NAV ACCOUNT
   ========================================================= */

.wv-auth-user-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-height: 44px;
  padding: .45rem 1rem .45rem .55rem;
  border: 1px solid rgba(126, 243, 255, .34);
  border-radius: 999px;
  color: #effdff;
  text-decoration: none;
  background:
    linear-gradient(
      135deg,
      rgba(31, 111, 112, .5),
      rgba(15, 45, 54, .82)
    );
  box-shadow:
    0 8px 24px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 0 18px rgba(126, 243, 255, .07);
  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease;
}

.wv-auth-user-link:hover {
  transform: translateY(-1px);
  border-color: rgba(126, 243, 255, .65);
  background:
    linear-gradient(
      135deg,
      rgba(40, 142, 142, .58),
      rgba(18, 61, 71, .9)
    );
  box-shadow:
    0 10px 30px rgba(0, 0, 0, .28),
    0 0 22px rgba(126, 243, 255, .12);
}

.wv-auth-user-link:focus-visible {
  outline: 2px solid #7ef3ff;
  outline-offset: 3px;
}

.wv-auth-user-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 50%;
  color: #061014;
  background:
    linear-gradient(
      135deg,
      #9ffaff,
      #61dce8
    );
  box-shadow:
    0 0 14px rgba(126, 243, 255, .26);
}

.wv-auth-user-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}

.wv-auth-user-label {
  color: rgba(221, 250, 255, .62);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wv-auth-user-name {
  color: #ffffff;
  font-size: .92rem;
  font-weight: 800;
  white-space: nowrap;
}


/* =========================================================
   QUIET NAV SIGN OUT
   ========================================================= */

.wv-auth-logout-form--nav {
  display: inline-flex;
  margin: 0;
}

.wv-auth-logout--nav {
  min-height: auto;
  padding: .3rem .2rem;
  border: 0;
  border-radius: 0;
  color: rgba(237, 250, 255, .58);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(237, 250, 255, .2);
  text-underline-offset: .22rem;
  background: transparent;
  box-shadow: none;
}

.wv-auth-logout--nav:hover {
  transform: none;
  border-color: transparent;
  color: rgba(255, 255, 255, .9);
  background: transparent;
  box-shadow: none;
  text-decoration-color: rgba(126, 243, 255, .65);
}

.wv-auth-logout--nav:active {
  transform: none;
}

.wv-auth-logout--nav:focus-visible {
  outline: 2px solid #7ef3ff;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Quiet account-page sign out */

.wv-auth-logout--account {
  min-height: auto;
  padding: .35rem .2rem;
  border: 0;
  border-radius: 0;
  color: rgba(237, 250, 255, .48);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(237, 250, 255, .18);
  text-underline-offset: .22rem;
  background: transparent;
  box-shadow: none;
}

.wv-auth-logout--account:hover {
  transform: none;
  border-color: transparent;
  color: rgba(255, 255, 255, .78);
  background: transparent;
  box-shadow: none;
  text-decoration-color: rgba(126, 243, 255, .55);
}

.wv-auth-logout--account:active {
  transform: none;
}

.wv-auth-logout--account:focus-visible {
  outline: 2px solid #7ef3ff;
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   SCANDALOUS BACK TO WILDVERSE
   ========================================================= */

.wv-auth-card .wv-auth-back-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .65rem 1rem;
  border: 1px solid rgba(126, 243, 255, .42);
  border-radius: 999px;
  color: #061014;
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  background:
    linear-gradient(
      110deg,
      #7ef3ff,
      #67ffd2 42%,
      #b6ff70 72%,
      #7ef3ff
    );
  background-size: 220% 100%;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, .28),
    0 0 22px rgba(126, 243, 255, .18);
  animation: wv-auth-back-shimmer 4s linear infinite;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

.wv-auth-card .wv-auth-back-link:hover {
  transform: translateY(-2px) rotate(-1deg) scale(1.02);
  filter: saturate(1.15);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, .34),
    0 0 30px rgba(126, 243, 255, .3);
}

.wv-auth-card .wv-auth-back-link:active {
  transform: translateY(0) scale(.99);
}

.wv-auth-card .wv-auth-back-link:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
}

@keyframes wv-auth-back-shimmer {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 220% 50%;
  }
}


/* =========================================================
   FUNKY PURCHASES CARD
   ========================================================= */

.wv-auth-purchases-wrap {
  margin: 1.4rem 0 1.15rem;
}

.wv-auth-card .wv-auth-purchases-link {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .85rem;
  width: 100%;
  box-sizing: border-box;
  padding: 1rem 1.05rem;
  overflow: hidden;
  border: 1px solid rgba(126, 243, 255, .28);
  border-radius: 18px;
  color: #effdff;
  text-decoration: none;
  background:
    linear-gradient(
      135deg,
      rgba(126, 243, 255, .15),
      rgba(174, 91, 255, .13) 52%,
      rgba(255, 92, 174, .1)
    );
  box-shadow:
    0 14px 34px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255, 255, 255, .07);
  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.wv-auth-card .wv-auth-purchases-link::before {
  content: "";
  position: absolute;
  inset: -70%;
  pointer-events: none;
  background:
    conic-gradient(
      from 90deg,
      transparent,
      rgba(126, 243, 255, .18),
      transparent 30%,
      rgba(255, 92, 174, .13),
      transparent 65%
    );
  animation: wv-auth-purchases-spin 9s linear infinite;
}

.wv-auth-card .wv-auth-purchases-link > * {
  position: relative;
  z-index: 1;
}

.wv-auth-purchases-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #061014;
  font-size: 1.2rem;
  background:
    linear-gradient(
      135deg,
      #7ef3ff,
      #ff7bd5
    );
  box-shadow:
    0 0 20px rgba(126, 243, 255, .22);
}

.wv-auth-purchases-link strong {
  display: block;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 900;
}

.wv-auth-purchases-link small {
  display: block;
  margin-top: .18rem;
  color: rgba(237, 250, 255, .62);
  font-size: .73rem;
  font-weight: 600;
}

.wv-auth-purchases-arrow {
  color: #9ffaff;
  font-size: 1.35rem;
  font-weight: 900;
  transition: transform .2s ease;
}

.wv-auth-purchases-link:hover .wv-auth-purchases-arrow {
  transform: translateX(4px);
}

.wv-auth-purchases-link:focus-visible {
  outline: 2px solid #7ef3ff;
  outline-offset: 4px;
}

.wv-auth-card .wv-auth-purchases-link::before {
  content: "";
  position: absolute;
  top: -45%;
  left: -25%;
  width: 42%;
  height: 190%;
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(126, 243, 255, .2) 0%,
      rgba(255, 92, 174, .11) 38%,
      transparent 72%
    );
  filter: blur(18px);
  animation: wv-auth-purchases-glow 6s ease-in-out infinite alternate;
}

@keyframes wv-auth-purchases-glow {
  from {
    transform: translateX(0) scale(.9);
    opacity: .65;
  }

  to {
    transform: translateX(430%) scale(1.15);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wv-auth-card .wv-auth-back-link,
  .wv-auth-card .wv-auth-purchases-link::before {
    animation: none;
  }
}

/* Mobile signed-in account */

.wv-auth-mobile-user-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .8rem;
  border-color: rgba(126, 243, 255, .42);
  background:
    linear-gradient(
      135deg,
      rgba(52, 141, 143, .42),
      rgba(24, 54, 64, .84)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .07),
    0 10px 28px rgba(0, 0, 0, .22),
    0 0 20px rgba(126, 243, 255, .07);
}

.wv-auth-mobile-user-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #061014;
  background: linear-gradient(135deg, #9ffaff, #67ffd2);
  box-shadow: 0 0 16px rgba(126, 243, 255, .24);
}

.wv-auth-mobile-user-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  line-height: 1.1;
}

.wv-auth-mobile-user-content small {
  margin-bottom: .18rem;
  color: rgba(237, 250, 255, .58);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.wv-auth-mobile-user-content strong {
  max-width: 100%;
  overflow: hidden;
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* Quiet mobile sign out */

.wv-auth-logout-form--mobile {
  display: inline-flex;
  margin: 0;
}

.wv-auth-logout--mobile {
  min-height: auto;
  padding: .45rem .3rem;
  border: 0;
  border-radius: 0;
  color: rgba(237, 250, 255, .48);
  font-size: .78rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(237, 250, 255, .16);
  text-underline-offset: .22rem;
  background: transparent;
  box-shadow: none;
}

.wv-auth-logout--mobile:hover {
  transform: none;
  color: rgba(255, 255, 255, .78);
  background: transparent;
  box-shadow: none;
  text-decoration-color: rgba(126, 243, 255, .55);
}

/* Mobile sign-in invitation */

.wv-auth-mobile-signin {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .85rem;
  border-color: rgba(126, 243, 255, .5);
  background:
    linear-gradient(
      135deg,
      rgba(126, 243, 255, .16),
      rgba(80, 96, 255, .14) 55%,
      rgba(255, 92, 174, .1)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 12px 30px rgba(0, 0, 0, .22),
    0 0 22px rgba(126, 243, 255, .08);
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.wv-auth-mobile-signin:hover {
  transform: translateY(-2px);
  border-color: rgba(126, 243, 255, .75);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .1),
    0 16px 36px rgba(0, 0, 0, .28),
    0 0 28px rgba(126, 243, 255, .14);
}

.wv-auth-mobile-signin-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #061014;
  background:
    linear-gradient(
      135deg,
      #8ff8ff,
      #8cffc7
    );
  box-shadow:
    0 0 18px rgba(126, 243, 255, .24);
}

.wv-auth-mobile-signin-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  line-height: 1.15;
}

.wv-auth-mobile-signin-content strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 850;
}

.wv-auth-mobile-signin-content small {
  margin-top: .2rem;
  color: rgba(237, 250, 255, .62);
  font-size: .7rem;
  font-weight: 600;
}

.wv-auth-mobile-signin .arrow {
  color: #9ffaff;
  font-size: 1.35rem;
  font-weight: 900;
  transition: transform .18s ease;
}

.wv-auth-mobile-signin:hover .arrow {
  transform: translateX(4px);
}

/* Desktop sign-in invitation */

.wv-auth-desktop-signin {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: .65rem;
  min-height: 44px;
  padding: .45rem 1rem .45rem .55rem;
  border: 1px solid rgba(126, 243, 255, .46);
  border-radius: 999px;
  color: #effdff;
  text-decoration: none;
  background:
    linear-gradient(
      135deg,
      rgba(126, 243, 255, .15),
      rgba(87, 101, 255, .13) 55%,
      rgba(255, 92, 174, .08)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 8px 24px rgba(0, 0, 0, .22),
    0 0 18px rgba(126, 243, 255, .08);
  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease;
}

.wv-auth-desktop-signin:hover {
  transform: translateY(-1px);
  border-color: rgba(126, 243, 255, .72);
  background:
    linear-gradient(
      135deg,
      rgba(126, 243, 255, .22),
      rgba(87, 101, 255, .18) 55%,
      rgba(255, 92, 174, .12)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .1),
    0 12px 30px rgba(0, 0, 0, .28),
    0 0 24px rgba(126, 243, 255, .14);
}

.wv-auth-desktop-signin:focus-visible {
  outline: 2px solid #7ef3ff;
  outline-offset: 3px;
}

.wv-auth-desktop-signin-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #061014;
  background:
    linear-gradient(
      135deg,
      #8ff8ff,
      #8cffc7
    );
  box-shadow:
    0 0 15px rgba(126, 243, 255, .24);
}

.wv-auth-desktop-signin-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}

.wv-auth-desktop-signin-label {
  color: rgba(237, 250, 255, .6);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wv-auth-desktop-signin-content strong {
  color: #ffffff;
  font-size: .9rem;
  font-weight: 850;
}
/* =========================================================
   WILDVERSE FULL SIGN-IN PAGE
   Large brand panel + login panel + minimal footer
   ========================================================= */

.wv-auth-page.wv-signin-page {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: stretch;
  min-height: 100vh;
  box-sizing: border-box;
  overflow-x: hidden;
  padding: 0;
  color: #edfaff;
  background:
    radial-gradient(
      circle at 16% 18%,
      rgba(126, 243, 255, .18),
      transparent 31rem
    ),
    radial-gradient(
      circle at 82% 20%,
      rgba(255, 92, 174, .13),
      transparent 28rem
    ),
    radial-gradient(
      circle at 60% 90%,
      rgba(103, 255, 210, .08),
      transparent 26rem
    ),
    linear-gradient(
      145deg,
      #02090d 0%,
      #06161d 48%,
      #071017 100%
    );
}

.wv-auth-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .24;
  background-image:
    linear-gradient(
      rgba(126, 243, 255, .08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(126, 243, 255, .08) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
  mask-image:
    radial-gradient(
      circle at center,
      #000 0%,
      transparent 76%
    );
  -webkit-mask-image:
    radial-gradient(
      circle at center,
      #000 0%,
      transparent 76%
    );
}
.wv-auth-page > * {
  position: relative;
  z-index: 1;
}
/* =========================================================
   SIGN-IN MAIN LAYOUT
   ========================================================= */

.wv-signin-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(340px, 520px);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 8rem);
  width: min(1180px, calc(100% - 3rem));
  min-height: calc(100vh - 118px);
  margin: 0 auto;
  padding: clamp(3rem, 7vh, 6rem) 0;
  box-sizing: border-box;
}

/* =========================================================
   LARGE WILDVERSE BRAND PANEL
   ========================================================= */

.wv-signin-brand {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 2rem;
  min-width: 0;
  text-align: center;
}

.wv-signin-brand::before {
  content: "";
  position: absolute;
  width: min(34rem, 85vw);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(
      circle,
      rgba(126, 243, 255, .16),
      rgba(103, 255, 210, .06) 38%,
      transparent 70%
    );
  filter: blur(10px);
  animation: wv-signin-brand-breathe 6s ease-in-out infinite alternate;
}

.wv-signin-brand__home {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  color: inherit;
  text-decoration: none;
}

.wv-signin-brand__logo {
  display: block;
  width: min(440px, 78vw);
  max-height: 360px;
  object-fit: contain;
  filter:
    drop-shadow(0 24px 36px rgba(0, 0, 0, .48))
    drop-shadow(0 0 30px rgba(126, 243, 255, .16));
  transition:
    transform .3s ease,
    filter .3s ease;
}

.wv-signin-brand__home:hover .wv-signin-brand__logo {
  transform: translateY(-4px) scale(1.015);
  filter:
    drop-shadow(0 28px 42px rgba(0, 0, 0, .55))
    drop-shadow(0 0 38px rgba(126, 243, 255, .24));
}

.wv-signin-brand__home:focus-visible {
  border-radius: 24px;
  outline: 3px solid #7ef3ff;
  outline-offset: 8px;
}

.wv-signin-brand__copy {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

.wv-signin-brand__eyebrow {
  display: block;
  margin-bottom: .4rem;
  color: rgba(215, 250, 255, .56);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.wv-signin-brand__copy strong {
    display: block;
    color: #ffffff;
    font-family: 'Bitcount Prop Single', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4.3rem);
    font-weight: 950;
    letter-spacing: 0.13em;
    line-height: .96;
    text-shadow: 0 0 22px rgba(126, 243, 255, .18),
    0 12px 34px rgba(0, 0, 0, .45);
}

.wv-signin-brand__copy p {
  max-width: 470px;
  margin: 1rem auto 0;
  color: rgba(225, 246, 250, .67);
  font-size: .96rem;
  font-weight: 550;
  line-height: 1.7;
}

/* =========================================================
   SIGN-IN FROSTED PANEL
   ========================================================= */

.wv-auth-card.wv-signin-panel {
  position: relative;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  overflow: hidden;
  padding: clamp(1.7rem, 4vw, 2.6rem);
  border: 1px solid rgba(126, 243, 255, .25);
  border-radius: 30px;
  background:
    linear-gradient(
      145deg,
      rgba(16, 40, 49, .83),
      rgba(4, 17, 23, .88)
    );
  box-shadow:
    0 32px 90px rgba(0, 0, 0, .52),
    0 0 42px rgba(126, 243, 255, .09),
    inset 0 1px 0 rgba(255, 255, 255, .11),
    inset 0 -1px 0 rgba(0, 0, 0, .42);
  backdrop-filter: blur(24px) saturate(1.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
}

.wv-auth-card.wv-signin-panel::before {
  content: "";
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 23rem;
  height: 23rem;
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(126, 243, 255, .18),
      transparent 68%
    );
}

.wv-auth-card.wv-signin-panel > * {
  position: relative;
  z-index: 1;
}

.wv-signin-panel .wv-auth-back-link {
  margin-bottom: clamp(2rem, 6vh, 4rem);
}

.wv-signin-panel__heading {
  margin-bottom: 1.7rem;
}

.wv-signin-panel__kicker {
  display: block;
  margin-bottom: .55rem;
  color: #87f8ff;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.wv-auth-card.wv-signin-panel h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 950;
  letter-spacing: -.045em;
  line-height: 1;
}

.wv-signin-panel__heading p {
  margin: .85rem 0 0;
  color: rgba(225, 246, 250, .64);
  font-size: .95rem;
  line-height: 1.65;
}

.wv-signin-google {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: flex-start;
  margin: 1.3rem 0;
}

.wv-signin-google .g_id_signin {
  min-height: 44px;
}

.wv-signin-panel__note {
  margin: 1.25rem 0 0;
  color: rgba(225, 246, 250, .46);
  font-size: .73rem;
  line-height: 1.55;
}

.wv-signin-panel .wv-auth-error {
  margin: 1.25rem 0;
  border: 1px solid rgba(255, 110, 134, .28);
}

/* =========================================================
   ACCOUNT MINI FOOTER
   ========================================================= */

.wv-auth-mini-footer {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: .55rem;
  width: 100%;
  box-sizing: border-box;
  padding: 1.15rem clamp(1rem, 4vw, 3rem) 1.35rem;
  border-top: 1px solid rgba(126, 243, 255, .12);
  color: rgba(224, 244, 249, .52);
  background:
    linear-gradient(
      180deg,
      rgba(3, 13, 18, .64),
      rgba(2, 8, 12, .9)
    );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.wv-auth-mini-footer__primary,
.wv-auth-mini-footer__socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .25rem .55rem;
  max-width: 1250px;
  text-align: center;
}

.wv-auth-mini-footer__primary a,
.wv-auth-mini-footer__socials a {
  color: rgba(225, 248, 252, .67);
  font-size: .7rem;
  font-weight: 650;
  line-height: 1.5;
  text-decoration: none;
  transition:
    color .18s ease,
    text-shadow .18s ease;
}

.wv-auth-mini-footer__primary a {
  color: rgba(231, 252, 255, .82);
  font-weight: 800;
}

.wv-auth-mini-footer__primary a:hover,
.wv-auth-mini-footer__socials a:hover {
  color: #8ff8ff;
  text-shadow: 0 0 12px rgba(126, 243, 255, .25);
}

.wv-auth-mini-footer__primary a:focus-visible,
.wv-auth-mini-footer__socials a:focus-visible {
  border-radius: 4px;
  outline: 2px solid #7ef3ff;
  outline-offset: 3px;
}

.wv-auth-mini-footer__separator {
  color: rgba(126, 243, 255, .3);
  font-weight: 900;
}

.wv-auth-mini-footer__copyright {
  margin: 0;
  color: rgba(224, 244, 249, .42);
  font-size: .67rem;
  font-weight: 550;
  line-height: 1.6;
  text-align: center;
}

/* =========================================================
   SIGN-IN ANIMATION
   ========================================================= */

@keyframes wv-signin-brand-breathe {
  from {
    transform: scale(.94);
    opacity: .68;
  }

  to {
    transform: scale(1.06);
    opacity: 1;
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
  .wv-signin-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    width: min(620px, calc(100% - 2rem));
    min-height: auto;
    padding: 2.5rem 0 3rem;
  }

  .wv-signin-brand {
    gap: 1rem;
  }

  .wv-signin-brand__logo {
    width: min(290px, 72vw);
    max-height: 220px;
  }

  .wv-signin-brand__copy strong {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }

  .wv-signin-brand__copy p {
    max-width: 430px;
  }

  .wv-signin-panel .wv-auth-back-link {
    margin-bottom: 2.2rem;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 560px) {
  .wv-signin-layout {
    width: calc(100% - 1.2rem);
    gap: 1.5rem;
    padding: 1.25rem 0 2rem;
  }

  .wv-signin-brand__copy p {
    display: none;
  }

  .wv-signin-brand__logo {
    width: min(220px, 64vw);
    max-height: 165px;
  }

  .wv-signin-brand__eyebrow {
    font-size: .62rem;
  }

  .wv-signin-brand__copy strong {
    font-size: clamp(2rem, 14vw, 3rem);
  }

  .wv-auth-card.wv-signin-panel {
    padding: 1.35rem;
    border-radius: 23px;
  }

  .wv-signin-panel .wv-auth-back-link {
    margin-bottom: 1.8rem;
    padding: .58rem .82rem;
    font-size: .76rem;
  }

  .wv-auth-card.wv-signin-panel h1 {
    font-size: 2rem;
  }

  .wv-signin-google {
    justify-content: center;
  }

  .wv-auth-mini-footer {
    gap: .65rem;
    padding: 1rem .75rem 1.2rem;
  }

  .wv-auth-mini-footer__socials {
    max-height: 4.7rem;
    overflow-y: auto;
    padding: .15rem .35rem;
  }

  .wv-auth-mini-footer__primary a,
  .wv-auth-mini-footer__socials a {
    font-size: .65rem;
  }

  .wv-auth-mini-footer__copyright {
    font-size: .61rem;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .wv-signin-brand::before {
    animation: none;
  }

  .wv-signin-brand__logo,
  .wv-signin-brand__home:hover .wv-signin-brand__logo {
    transform: none;
  }
}

/* =========================================================
   STANDARD ACCOUNT PAGES WITH SHARED FOOTER
   ========================================================= */

.wv-auth-page:not(.wv-signin-page) {
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: stretch;
  padding: 0;
}

.wv-auth-page:not(.wv-signin-page) > .wv-auth-card {
  align-self: center;
  justify-self: center;
  margin: 1.5rem;
}

.wv-auth-page:not(.wv-signin-page) > .wv-auth-mini-footer {
  align-self: end;
  width: 100%;
}