.rs-brand-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1812;
  opacity: 1;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.rs-brand-loader.is-hiding {
  opacity: 0;
  transform: scale(1.03);
  pointer-events: none;
}

.rs-brand-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  animation: rsSplashOut 0.6s 3.6s ease forwards;
}

.rs-brand-loader__qr-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 32px;
}

.rs-brand-loader__qr-svg {
  width: 120px;
  height: 120px;
  display: block;
}

.rs-brand-loader__qr-cell {
  opacity: 0;
  transform-origin: center;
  animation: rsQcPop 0.3s ease forwards;
}

.rs-brand-loader__wordmark {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 8px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(10px);
  animation: rsFadeUp 0.55s 1s ease forwards;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
}

.rs-brand-loader__tagline {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 3.5px;
  color: #e8c97a;
  opacity: 0;
  transform: translateY(8px);
  animation: rsFadeUp 0.5s 1.2s ease forwards;
  text-transform: uppercase;
  margin-bottom: 32px;
  text-align: center;
}

.rs-brand-loader__line {
  width: 0;
  height: 1px;
  background: rgba(232, 201, 122, 0.35);
  animation: rsLineGrow 0.5s 1.4s ease forwards;
  margin-bottom: 18px;
}

.rs-brand-loader__bar-wrap {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: rsFadeUp 0.4s 1.5s ease forwards;
}

.rs-brand-loader__bar-fill {
  height: 100%;
  width: 0%;
  background: #e8c97a;
  border-radius: 2px;
  animation: rsBarLoad 1.6s 1.6s cubic-bezier(.4, 0, .2, 1) forwards;
}

body.rs-loader-lock {
  overflow: hidden !important;
}

@keyframes rsQcPop {
  to {
    opacity: 1;
  }
}

@keyframes rsLineGrow {
  to {
    width: 320px;
  }
}

@keyframes rsFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rsBarLoad {
  0% { width: 0%; }
  30% { width: 45%; }
  60% { width: 72%; }
  85% { width: 90%; }
  100% { width: 100%; }
}

@keyframes rsSplashOut {
  to {
    opacity: 0;
    transform: scale(1.03);
  }
}

@media (max-width: 640px) {
  .rs-brand-loader__wordmark {
    font-size: 22px;
    letter-spacing: 5px;
  }

  .rs-brand-loader__tagline {
    font-size: 9px;
    letter-spacing: 2.4px;
    margin-bottom: 24px;
  }

  .rs-brand-loader__line {
    max-width: 240px;
  }

  .rs-brand-loader__bar-wrap {
    width: 160px;
  }
}
