#site-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: #071018;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
#site-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#matrix-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .3;
}
.loader-box {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100vw - 32px));
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(89,245,215,.15);
  background: rgba(5, 13, 19, 0.84);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.loader-title {
  margin: 0 0 10px;
  color: #eff5ff;
  font-size: clamp(28px, 8vw, 52px);
  letter-spacing: -.06em;
}
.loader-status,
.loader-percent {
  margin: 0;
  color: #9fd9cf;
  font: 13px/1.7 "IBM Plex Mono", ui-monospace, monospace;
}
.loader-progress {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  margin: 18px 0 10px;
  background: rgba(255,255,255,.07);
  overflow: hidden;
}
.loader-progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f766e 0%, #59f5d7 100%);
  transition: width .14s linear;
}
