/*
 * boot.css — full-screen loader shown until window.load, then faded out and
 * removed from the DOM by boot.js. Nothing else on the page depends on it.
 */

#boot-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--paper);
}

#boot-logo {
  position: relative;
  display: block;
  width: clamp(140px, 20vw, 220px);
  height: clamp(72px, 12vw, 120px);
  overflow: hidden;
}

.boot-track {
  width: clamp(130px, 16vw, 200px);
  height: 3px;
  margin-top: 30px;
  border-radius: 1.5px;
  background: rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

#boot-bar {
  width: 0%;
  height: 100%;
  border-radius: 1.5px;
  background: var(--ink);
  box-shadow:
    0 0 6px rgba(0, 0, 0, 0.45),
    0 0 14px rgba(0, 0, 0, 0.2);
  transition: width 0.4s ease-in-out;
}
