/* Minimal first-paint shell. Route bundles replace #root, so none of these
   elements survive once the marketing site or workspace has mounted. */
.rp-boot {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  box-sizing: border-box;
  min-height: 100dvh;
  padding: 32px;
  background: #f5f6f3;
  color: #10251d;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.rp-boot-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.rp-boot-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
}

.rp-boot-mark img {
  display: block;
  width: 34px;
  height: 34px;
}

.rp-boot-progress {
  width: min(220px, 58vw);
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 37, 29, 0.1);
}

.rp-boot-progress i {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: #16a765;
  animation: rp-boot-slide 1.15s ease-in-out infinite;
}

.rp-boot-copy {
  color: #5f716a;
  font-size: 13px;
}

html.dark .rp-boot {
  background: #0b1010;
  color: #eefaf4;
}

html.dark .rp-boot-progress {
  background: rgba(238, 250, 244, 0.11);
}

html.dark .rp-boot-copy {
  color: #8da59b;
}

@keyframes rp-boot-slide {
  from { transform: translateX(-115%); }
  55% { transform: translateX(95%); }
  to { transform: translateX(230%); }
}

@media (prefers-reduced-motion: reduce) {
  .rp-boot-progress i {
    width: 100%;
    animation: none;
  }
}
