#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#splash.fade-out {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
#splash-content {
  display: flex;
  align-items: center;
}
#splash-loader {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}
#splash-text {
  overflow: hidden;
  max-width: 0;
  opacity: 0;
}
#splash-brand {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #021f62;
  letter-spacing: -0.03em;
  line-height: 1.1;
  white-space: nowrap;
}
#splash-tagline {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #7b8ba8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
  white-space: nowrap;
}
