.app-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: rgba(9, 10, 11, .94);
  opacity: 1;
  visibility: visible;
  transition: opacity .2s ease, visibility .2s ease;
}

.app-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.brand-loader {
  display: grid;
  justify-items: center;
  gap: 18px;
  color: #bfc2c5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.brand-loader-orbit {
  position: relative;
  width: 178px;
  height: 178px;
  display: grid;
  place-items: center;
}

.brand-loader-logo {
  width: 142px;
  height: 142px;
  object-fit: contain;
}

.brand-loader-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 11px;
  offset-path: circle(84px at 89px 89px);
  offset-rotate: 0deg;
  animation: loader-orbit 1.15s linear infinite;
}

.brand-loader-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ffc928;
  box-shadow: 0 0 0 4px rgba(255, 201, 40, .12), 0 0 18px rgba(255, 201, 40, .85);
}

@keyframes loader-orbit { to { offset-distance: 100%; } }

@media (prefers-reduced-motion: reduce) {
  .brand-loader-dot { animation-duration: 2.4s; }
}
