.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 15px;
  padding: 30px;
  background: var(--surface-app);
  transition: opacity 0.24s ease;
}
.splash.is-leaving {
  opacity: 0;
}
.splash-logo {
  width: min(620px, 88vw);
  height: auto;
}
.splash-copy,
.splash-version {
  color: var(--text-secondary);
}
.splash-track {
  width: min(260px, 60vw);
  height: 5px;
  border-radius: 99px;
  background: var(--border-subtle);
  overflow: hidden;
}
.splash-track span {
  display: block;
  width: 45%;
  height: 100%;
  background: var(--color-brand-500);
  animation: load 1s ease-in-out infinite;
}
@keyframes load {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(330%);
  }
}
