:root {
  --splash-ink: #111819;
  --splash-teal: #08766f;
  --splash-gold: #c88734;
  --splash-coral: #d95545;
}

.app-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #f7f6f2;
  opacity: 1;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.app-splash.is-hiding {
  visibility: hidden;
  opacity: 0;
}

.splash-logo {
  width: min(42vw, 176px);
  min-width: 118px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.splash-logo svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

.login-logo {
  width: 84px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}

.login-logo svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

@media (max-width: 520px) {
  .splash-logo {
    width: min(46vw, 158px);
  }

  .login-logo {
    width: 78px;
    margin-bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-splash {
    transition-duration: 120ms;
  }
}
