html[data-mobi-js="true"] [data-mobi-static-fallback] {
  display: none !important;
}

html[data-static-fallback-active="true"] [data-mobi-static-fallback] {
  display: block !important;
}

[data-mobi-boot-overlay] {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 20%, rgb(92 43 235 / 0.17), transparent 34%),
    radial-gradient(circle at 78% 76%, rgb(242 111 53 / 0.11), transparent 30%),
    #101320;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  opacity: 1;
  visibility: visible;
  transition: opacity 180ms ease, visibility 180ms ease;
}

[data-mobi-boot-overlay][data-state="leaving"] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

html[data-static-fallback-active="true"] [data-mobi-boot-overlay] {
  display: none !important;
}

.mobi-boot-shell {
  display: flex;
  width: min(78vw, 280px);
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.mobi-boot-wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.1em;
}

.mobi-boot-wordmark span:nth-child(1) { color: #17bdcc; }
.mobi-boot-wordmark span:nth-child(2) { color: #5c2beb; }
.mobi-boot-wordmark span:nth-child(3) { color: #e70b84; }
.mobi-boot-wordmark span:nth-child(4) { color: #f26f35; }

.mobi-boot-caption {
  color: rgb(255 255 255 / 0.62);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobi-boot-progress {
  position: relative;
  width: min(180px, 62vw);
  height: 2px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.1);
}

.mobi-boot-progress::after {
  content: "";
  position: absolute;
  inset-block: 0;
  left: -42%;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, #17bdcc, #5c2beb, #e70b84, #f26f35);
  animation: mobi-boot-progress 1.05s ease-in-out infinite;
}

@keyframes mobi-boot-progress {
  0% { transform: translateX(0); }
  100% { transform: translateX(340%); }
}

@media (prefers-reduced-motion: reduce) {
  [data-mobi-boot-overlay] {
    transition: none;
  }

  .mobi-boot-progress::after {
    width: 100%;
    left: 0;
    animation: none;
    opacity: 0.7;
  }
}
