#app-boot {
  display: none;
}
html[data-app-boot="pending"] #root {
  visibility: hidden;
}
html[data-app-boot="pending"] #app-boot,
#app-boot[data-failed="true"] {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #f5f7fa;
  color: #192d50;
  padding: 20px max(16px, calc((100vw - 1600px) / 2));
  box-sizing: border-box;
}
html[data-theme="dark"] #app-boot {
  background: #0b111b;
  color: #dce5f2;
}
.boot-brand {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.boot-brand span,
.boot-workspace i {
  display: block;
  background: currentColor;
  opacity: 0.07;
  border-radius: 10px;
}
.boot-brand span {
  height: 18px;
  width: 80px;
}
.boot-workspace {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}
.boot-workspace i:first-child {
  grid-column: 1/-1;
  height: 44px;
}
.boot-workspace i:not(:first-child) {
  height: min(64vh, 540px);
}
#app-boot a {
  display: none;
}
#app-boot[data-failed="true"] a {
  display: block;
  color: inherit;
  margin-top: 24px;
  font: 16px system-ui;
}
#app-boot[data-failed="true"] .boot-workspace {
  display: none;
}
@media (prefers-reduced-motion: no-preference) {
  html[data-app-boot="pending"] .boot-workspace {
    animation: boot-breathe 1.4s ease-in-out infinite alternate;
  }
  @keyframes boot-breathe {
    to {
      opacity: 0.45;
    }
  }
}
@media (max-width: 600px) {
  .boot-workspace {
    grid-template-columns: 1fr;
  }
  .boot-workspace i:last-child {
    display: none;
  }
}
