:root{
  --logo-width:min(680px,72vw);
  --bg:#0f172a;
  --base-opacity:0.16;
}

.preloader{
  position:fixed;
  inset:0;
  display:grid;
  place-items:center;
  background:rgba(15,35,40,.99);
  z-index:99999;
  transition:opacity .45s ease, visibility .45s ease;
}

.preloader.is-complete{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.logo-stage{
  width:var(--logo-width);
  position:relative;
  line-height:0;
}

.logo-base,
.logo-fill{
  width:100%;
}

.logo-base{
  opacity:var(--base-opacity);
}

.logo-fill-wrap{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:0%;
  overflow:hidden;
  transition:height .28s ease;
  will-change:height;
}

.logo-fill{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  width:100%;
}

.logo-stage svg{
  display:block;
  width:100%;
  height:auto;
}

.progress-meta{
  margin-top:20px;
  text-align:center;
  color:rgba(255,255,255,.8);
  font-size:14px;
  letter-spacing:.08em;
}

.progress-bar{
  width:min(320px,56vw);
  height:4px;
  margin:14px auto 0;
  background:rgba(255,255,255,.14);
  border-radius:999px;
  overflow:hidden;
}

.progress-bar-fill{
  width:0%;
  height:100%;
  background:linear-gradient(90deg, rgb(90,164,181) 0%, rgb(248,127,28) 100%);
  transition:width .28s ease;
}