.ds-boot-shell {
  box-sizing: border-box;
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding:
    max(32px, env(safe-area-inset-top))
    max(24px, env(safe-area-inset-right))
    max(32px, env(safe-area-inset-bottom))
    max(24px, env(safe-area-inset-left));
  background:
    radial-gradient(circle at 50% 42%, rgb(249 115 22 / 10%), transparent 42%),
    #fcfcfa;
  color: #202125;
  font-family:
    'Public Sans',
    ui-sans-serif,
    system-ui,
    -apple-system,
    'Segoe UI',
    sans-serif;
  text-align: center;
}

.ds-boot-shell__content {
  width: min(100%, 560px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ds-boot-shell__mark {
  width: clamp(196px, 56vw, 232px);
  height: clamp(196px, 56vw, 232px);
  display: block;
}

.ds-boot-shell__eyebrow {
  margin: 24px 0 0;
  color: #c2410c;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ds-boot-shell__title {
  max-width: 19ch;
  margin: 12px 0 0;
  font-size: clamp(30px, 8vw, 38px);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.ds-boot-shell__message {
  max-width: 32ch;
  margin: 12px 0 0;
  color: #5c5c5c;
  font-size: clamp(16px, 4.3vw, 18px);
  line-height: 1.55;
  font-weight: 500;
}

.ds-boot-shell__progress {
  width: min(232px, 70vw);
  height: 6px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 999px;
  background: #ebe5dd;
}

.ds-boot-shell__progress::after {
  content: '';
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: #c2410c;
  transform-origin: left center;
  animation: ds-boot-progress 1.4s ease-in-out infinite alternate;
}

@keyframes ds-boot-progress {
  from {
    transform: translateX(-12%) scaleX(0.72);
  }

  to {
    transform: translateX(150%) scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ds-boot-shell__progress::after {
    width: 62%;
    animation: none;
  }
}
