:root {
  --boot-canvas: #000304;
  --boot-surface: #050d10;
  --boot-surface-raised: #091418;
  --boot-line: #142a31;
  --boot-line-strong: #254a54;
  --boot-ink: #f2fbfb;
  --boot-text: #b7c9cc;
  --boot-muted: #718b91;
  --boot-cyan: #2985a2;
  --boot-cyan-strong: #3a9fe8;
  --boot-cyan-rgb: 41 133 162;
  --boot-mint: #3ae86b;
  --boot-mint-strong: #29a24b;
  --boot-mint-rgb: 58 232 107;
  --boot-violet: #465ce8;
  --boot-violet-rgb: 70 92 232;
  --boot-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html[data-booting] {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  background: var(--boot-canvas);
}

html[data-booting] body {
  min-height: 100%;
  overflow: hidden;
  background: var(--boot-canvas);
}

html[data-booting] #root {
  visibility: hidden;
}

.boot-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-width: 320px;
  min-height: 34rem;
  overflow: hidden;
  padding: 0;
  color: var(--boot-text);
  background:
    radial-gradient(circle at 50% 44%, rgb(var(--boot-cyan-rgb) / 0.08), transparent 23rem),
    radial-gradient(circle at 82% 4%, rgb(var(--boot-violet-rgb) / 0.09), transparent 26rem),
    linear-gradient(145deg, #02080a, var(--boot-canvas) 54%, #010607);
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  opacity: 1;
  isolation: isolate;
  transition:
    opacity 560ms var(--boot-expo),
    visibility 560ms step-end;
}

.boot-screen::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgb(var(--boot-cyan-rgb) / 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgb(var(--boot-cyan-rgb) / 0.025) 1px, transparent 1px);
  background-size: 4rem 4rem;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.boot-screen::after {
  position: absolute;
  inset: 0;
  z-index: 10;
  border: 1px solid rgb(var(--boot-cyan-rgb) / 0.08);
  box-shadow: inset 0 0 8rem rgb(0 0 0 / 0.56);
  content: "";
  pointer-events: none;
}

.boot-screen.is-complete {
  visibility: hidden;
  opacity: 0;
}

.boot-ambient {
  position: absolute;
  z-index: -1;
  width: min(48rem, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.42;
  pointer-events: none;
}

.boot-ambient--cyan {
  top: 34%;
  left: 50%;
  background: radial-gradient(circle, rgb(var(--boot-cyan-rgb) / 0.09), transparent 63%);
  transform: translate(-50%, -50%);
  animation: boot-breathe 4.6s var(--boot-expo) infinite alternate;
}

.boot-ambient--violet {
  top: -32rem;
  right: -18rem;
  background: radial-gradient(circle, rgb(var(--boot-violet-rgb) / 0.13), transparent 64%);
  animation: boot-violet-drift 8s ease-in-out infinite alternate;
}

.boot-grid {
  position: absolute;
  right: -15%;
  bottom: -40%;
  left: -15%;
  z-index: -1;
  height: 72%;
  background-image:
    linear-gradient(rgb(var(--boot-cyan-rgb) / 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgb(var(--boot-cyan-rgb) / 0.075) 1px, transparent 1px);
  background-position: center;
  background-size: 3.6rem 3.6rem;
  opacity: 0.34;
  transform: perspective(52rem) rotateX(66deg);
  transform-origin: center top;
  mask-image: linear-gradient(to bottom, transparent, black 34%, transparent 94%);
  animation: boot-grid-drift 5s linear infinite;
}

.boot-scan {
  position: absolute;
  top: -18%;
  right: 0;
  left: 0;
  height: 18%;
  z-index: 5;
  background: linear-gradient(
    to bottom,
    transparent,
    rgb(var(--boot-cyan-rgb) / 0.015) 40%,
    rgb(var(--boot-cyan-rgb) / 0.12) 98%,
    transparent
  );
  opacity: 0.8;
  pointer-events: none;
  animation: boot-scan 4.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.boot-header,
.boot-footer {
  position: relative;
  z-index: 6;
}

.boot-header-inner,
.boot-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.boot-header {
  min-height: 4.8rem;
  padding-inline: clamp(1rem, 3vw, 2rem);
  background: rgb(1 5 7 / 0.74);
  box-shadow: inset 0 -1px 0 rgb(var(--boot-cyan-rgb) / 0.1);
  backdrop-filter: blur(24px) saturate(130%);
  animation: boot-header-enter 900ms var(--boot-expo) both;
}

.boot-header-inner {
  width: min(90rem, 100%);
  min-height: 4.8rem;
  margin: 0 auto;
}

.boot-brand,
.boot-header-meta,
.boot-footer-meta {
  display: flex;
  align-items: center;
}

.boot-brand {
  flex: 0 0 auto;
  gap: 0.78rem;
  line-height: 1.05;
}

.boot-brand-mark {
  width: 2rem;
  height: 1.7rem;
  object-fit: contain;
  filter: none;
}

.boot-brand-copy {
  display: grid;
  gap: 0.08rem;
  line-height: 1.05;
}

.boot-brand-copy strong {
  display: inline-block;
  color: var(--boot-ink);
  font-family: "Space Grotesk", "IBM Plex Sans", ui-sans-serif, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}

.boot-brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}

.boot-brand-version {
  color: var(--boot-cyan-strong);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.035em;
  line-height: 1;
}

.boot-header-meta {
  gap: 1.2rem;
  color: var(--boot-muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.boot-header-state {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  color: var(--boot-cyan);
}

.boot-header-state i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 1rem currentColor;
  animation: boot-status-pulse 1.8s ease-in-out infinite;
}

.boot-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(17rem, 1fr) minmax(20rem, 1.4fr);
  grid-template-rows: auto 1fr;
  align-items: center;
  width: min(72rem, calc(100% - clamp(2.2rem, 8vw, 8rem)));
  margin: 0 auto;
}

.boot-kicker {
  grid-column: 1 / -1;
  align-self: end;
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  padding-top: 1.5rem;
  color: var(--boot-muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: boot-copy-enter 760ms 130ms var(--boot-expo) both;
}

.boot-kicker span:first-child {
  color: var(--boot-cyan);
}

.boot-scope {
  position: relative;
  justify-self: center;
  width: clamp(17.5rem, 30vw, 25rem);
  aspect-ratio: 1;
  animation: boot-scope-enter 1.1s 80ms var(--boot-expo) both;
}

.boot-scope::before,
.boot-scope::after {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  content: "";
}

.boot-scope::before {
  border: 1px solid rgb(var(--boot-cyan-rgb) / 0.07);
  box-shadow:
    inset 0 0 3.5rem rgb(var(--boot-cyan-rgb) / 0.025),
    0 0 4rem rgb(var(--boot-cyan-rgb) / 0.025);
}

.boot-scope::after {
  background: radial-gradient(circle, rgb(var(--boot-cyan-rgb) / 0.055), transparent 54%);
  animation: boot-glow-breathe 3.4s ease-in-out infinite alternate;
}

.boot-crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  background: linear-gradient(90deg, transparent, rgb(var(--boot-cyan-rgb) / 0.22), transparent);
  transform: translate(-50%, -50%);
}

.boot-crosshair--horizontal {
  width: 116%;
  height: 1px;
}

.boot-crosshair--vertical {
  width: 116%;
  height: 1px;
  transform: translate(-50%, -50%) rotate(90deg);
}

.boot-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.boot-orbit::before,
.boot-orbit::after {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  content: "";
}

.boot-orbit--outer {
  width: 88%;
  height: 88%;
  border: 1px solid rgb(var(--boot-cyan-rgb) / 0.14);
  animation: boot-orbit-spin 12s linear infinite;
}

.boot-orbit--outer::before {
  border-top: 2px solid var(--boot-cyan);
  border-right: 1px solid transparent;
  filter: drop-shadow(0 0 0.5rem rgb(var(--boot-cyan-rgb) / 0.85));
}

.boot-orbit--outer::after {
  inset: 12%;
  border-right: 1px solid rgb(var(--boot-violet-rgb) / 0.48);
  border-left: 1px solid transparent;
}

.boot-orbit--middle {
  width: 68%;
  height: 68%;
  border: 1px dashed rgb(var(--boot-cyan-rgb) / 0.2);
  animation: boot-orbit-counter 16s linear infinite;
}

.boot-orbit--middle::before {
  inset: 7%;
  border-bottom: 2px solid rgb(var(--boot-mint-rgb) / 0.72);
  border-left: 1px solid transparent;
  filter: drop-shadow(0 0 0.45rem rgb(var(--boot-mint-rgb) / 0.48));
}

.boot-orbit--inner {
  width: 48%;
  height: 48%;
  border: 1px solid rgb(var(--boot-cyan-rgb) / 0.2);
  box-shadow:
    inset 0 0 1.5rem rgb(var(--boot-cyan-rgb) / 0.04),
    0 0 2rem rgb(var(--boot-cyan-rgb) / 0.04);
  animation: boot-orbit-spin 8s linear infinite;
}

.boot-orbit--inner::before {
  inset: -0.32rem;
  border-top: 1px solid rgb(var(--boot-violet-rgb) / 0.72);
  border-bottom: 1px solid transparent;
}

.boot-orbit-node {
  position: absolute;
  top: 50%;
  left: -0.26rem;
  width: 0.48rem;
  height: 0.48rem;
  border: 1px solid var(--boot-cyan);
  border-radius: 50%;
  background: var(--boot-canvas);
  box-shadow: 0 0 0.9rem rgb(var(--boot-cyan-rgb) / 0.7);
}

.boot-orbit-node--two {
  top: auto;
  right: 12%;
  bottom: 5%;
  left: auto;
  border-color: var(--boot-violet);
  box-shadow: 0 0 0.9rem rgb(var(--boot-violet-rgb) / 0.64);
}

.boot-radar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48%;
  height: 48%;
  overflow: hidden;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0 73%,
    rgb(var(--boot-cyan-rgb) / 0.018) 78%,
    rgb(var(--boot-cyan-rgb) / 0.2) 99.4%,
    transparent 100%
  );
  transform: translate(-50%, -50%);
  transform-origin: center;
  animation: boot-orbit-spin 3.6s linear infinite;
}

.boot-radar::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 47%;
  height: 1px;
  background: linear-gradient(90deg, rgb(var(--boot-cyan-rgb) / 0.48), transparent);
  box-shadow: 0 0 0.55rem rgb(var(--boot-cyan-rgb) / 0.34);
  content: "";
  transform-origin: left center;
}

.boot-signal-field {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 43%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at center,
      var(--boot-ink) 0 1px,
      var(--boot-cyan) 1.5px 3px,
      rgb(var(--boot-cyan-rgb) / 0.18) 3.5px 7px,
      transparent 7.5px
    ),
    repeating-radial-gradient(
      circle at center,
      transparent 0 19%,
      rgb(var(--boot-cyan-rgb) / 0.12) 19.5% 20%,
      transparent 20.5% 39%,
      rgb(var(--boot-cyan-rgb) / 0.085) 39.5% 40%,
      transparent 40.5% 59%
    );
  box-shadow:
    inset 0 0 2.4rem rgb(var(--boot-cyan-rgb) / 0.025),
    0 0 2.8rem rgb(var(--boot-cyan-rgb) / 0.035);
  transform: translate(-50%, -50%);
}

.boot-signal-field::before {
  position: absolute;
  inset: 8%;
  border: 1px solid rgb(var(--boot-cyan-rgb) / 0.08);
  border-radius: 50%;
  content: "";
  animation: boot-signal-echo 2.8s var(--boot-expo) infinite;
}

.boot-signal-contact {
  position: absolute;
  width: 0.28rem;
  height: 0.28rem;
  border: 1px solid var(--boot-cyan);
  border-radius: 50%;
  background: var(--boot-canvas);
  box-shadow:
    0 0 0 0.14rem rgb(var(--boot-cyan-rgb) / 0.08),
    0 0 0.8rem rgb(var(--boot-cyan-rgb) / 0.54);
  animation: boot-contact-pulse 2.1s ease-in-out infinite;
}

.boot-signal-contact--one {
  top: 24%;
  left: 63%;
}

.boot-signal-contact--two {
  top: 61%;
  left: 23%;
  width: 0.22rem;
  height: 0.22rem;
  animation-delay: 620ms;
}

.boot-signal-contact--three {
  top: 72%;
  left: 69%;
  border-color: var(--boot-violet);
  box-shadow:
    0 0 0 0.14rem rgb(var(--boot-violet-rgb) / 0.08),
    0 0 0.8rem rgb(var(--boot-violet-rgb) / 0.5);
  animation-delay: 1.1s;
}

.boot-coordinate {
  position: absolute;
  color: rgb(113 139 145 / 0.68);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.boot-coordinate--north {
  top: 5%;
  left: 58%;
}

.boot-coordinate--east {
  top: 47%;
  right: -4%;
}

.boot-coordinate--south {
  bottom: 4%;
  left: 47%;
  color: rgb(var(--boot-cyan-rgb) / 0.58);
}

.boot-copy {
  position: relative;
  z-index: 3;
  max-width: 34rem;
  padding: 1rem 0 1rem clamp(1rem, 4vw, 4rem);
  animation: boot-copy-enter 900ms 180ms var(--boot-expo) both;
}

.boot-eyebrow {
  margin: 0 0 0.9rem;
  color: var(--boot-cyan);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(0.58rem, 0.75vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.boot-copy h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--boot-ink);
  font-family: "Space Grotesk", "IBM Plex Sans", ui-sans-serif, sans-serif;
  font-size: clamp(2.35rem, 5vw, 5.35rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-wrap: balance;
}

.boot-status-copy {
  position: relative;
  height: 1.6rem;
  margin-top: 1.4rem;
  overflow: hidden;
  color: var(--boot-muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: clamp(0.67rem, 0.95vw, 0.78rem);
  letter-spacing: 0.035em;
}

.boot-status-message {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  opacity: 0;
  transform: translateY(0.8rem);
  animation: boot-status-cycle 7.2s var(--boot-expo) infinite;
}

.boot-status-message::before {
  width: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--boot-cyan), transparent);
  box-shadow: 0 0 0.5rem rgb(var(--boot-cyan-rgb) / 0.52);
  content: "";
}

.boot-status-message--two {
  animation-delay: 2.4s;
}

.boot-status-message--three {
  animation-delay: 4.8s;
}

.boot-assistive-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  border: 0;
  margin: -1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.boot-footer {
  align-items: flex-end;
  padding: 0 clamp(1.15rem, 4vw, 4rem) clamp(1.15rem, 2.8vw, 2.4rem);
  animation: boot-footer-enter 780ms 260ms var(--boot-expo) both;
}

.boot-progress {
  display: grid;
  grid-template-columns: repeat(12, minmax(0.3rem, 1fr));
  gap: 0.25rem;
  width: min(25rem, 48vw);
}

.boot-progress span {
  height: 0.18rem;
  background: var(--boot-line-strong);
  transform: scaleX(0.72);
  transform-origin: left;
  animation: boot-segment 1.5s var(--boot-expo) infinite;
}

.boot-progress span:nth-child(2) { animation-delay: 70ms; }
.boot-progress span:nth-child(3) { animation-delay: 140ms; }
.boot-progress span:nth-child(4) { animation-delay: 210ms; }
.boot-progress span:nth-child(5) { animation-delay: 280ms; }
.boot-progress span:nth-child(6) { animation-delay: 350ms; }
.boot-progress span:nth-child(7) { animation-delay: 420ms; }
.boot-progress span:nth-child(8) { animation-delay: 490ms; }
.boot-progress span:nth-child(9) { animation-delay: 560ms; }
.boot-progress span:nth-child(10) { animation-delay: 630ms; }
.boot-progress span:nth-child(11) { animation-delay: 700ms; }
.boot-progress span:nth-child(12) { animation-delay: 770ms; }

.boot-footer-meta {
  justify-content: flex-end;
  gap: 0.55rem;
  color: var(--boot-muted);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.boot-footer-meta i {
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 50%;
  background: var(--boot-line-strong);
}

@keyframes boot-header-enter {
  from {
    opacity: 0;
    transform: translateY(-0.7rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes boot-footer-enter {
  from {
    opacity: 0;
    transform: translateY(0.8rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes boot-scope-enter {
  0% {
    opacity: 0;
    filter: blur(0.5rem);
    transform: scale(0.86);
  }
  68% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.025);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes boot-copy-enter {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes boot-orbit-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes boot-orbit-counter {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes boot-breathe {
  from {
    opacity: 0.35;
    transform: translate(-50%, -50%) scale(0.92);
  }
  to {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes boot-glow-breathe {
  from {
    opacity: 0.35;
    transform: scale(0.92);
  }
  to {
    opacity: 0.72;
    transform: scale(1.08);
  }
}

@keyframes boot-violet-drift {
  from {
    transform: translate3d(0, 0, 0) scale(0.94);
  }
  to {
    transform: translate3d(-3rem, 3rem, 0) scale(1.08);
  }
}

@keyframes boot-grid-drift {
  to {
    background-position: center 3.6rem;
  }
}

@keyframes boot-scan {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  16% {
    opacity: 0.78;
  }
  68% {
    opacity: 0.22;
  }
  100% {
    opacity: 0;
    transform: translateY(740%);
  }
}

@keyframes boot-status-pulse {
  0%,
  100% {
    opacity: 0.46;
    transform: scale(0.82);
  }
  48% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes boot-signal-echo {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  32% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: scale(1.14);
  }
}

@keyframes boot-contact-pulse {
  0%,
  100% {
    opacity: 0.32;
  }
  45% {
    opacity: 1;
  }
}

@keyframes boot-status-cycle {
  0% {
    opacity: 0;
    transform: translateY(0.8rem);
  }
  8%,
  26% {
    opacity: 1;
    transform: translateY(0);
  }
  33%,
  100% {
    opacity: 0;
    transform: translateY(-0.7rem);
  }
}

@keyframes boot-segment {
  0%,
  100% {
    background: var(--boot-line-strong);
    box-shadow: none;
    opacity: 0.42;
    transform: scaleX(0.7);
  }
  36% {
    background: var(--boot-cyan);
    box-shadow: 0 0 0.7rem rgb(var(--boot-cyan-rgb) / 0.62);
    opacity: 1;
    transform: scaleX(1);
  }
  68% {
    background: var(--boot-mint);
    box-shadow: 0 0 0.5rem rgb(var(--boot-mint-rgb) / 0.3);
    opacity: 0.68;
    transform: scaleX(0.86);
  }
}

@media (max-width: 760px) {
  .boot-screen {
    min-height: 31rem;
    padding: 0;
  }

  .boot-header,
  .boot-header-inner {
    min-height: 4.2rem;
  }

  .boot-header-meta > span:first-child,
  .boot-footer-meta {
    display: none;
  }

  .boot-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(14rem, 1fr) auto;
    align-content: center;
  }

  .boot-kicker {
    align-self: center;
    padding-top: 0.5rem;
  }

  .boot-scope {
    width: clamp(15rem, 67vw, 19.5rem);
    margin: -0.5rem auto -1.2rem;
  }

  .boot-copy {
    max-width: 27rem;
    padding: 0;
    text-align: center;
  }

  .boot-copy h1 {
    max-width: 12ch;
    margin: 0 auto;
    font-size: clamp(2.25rem, 10.4vw, 3.6rem);
  }

  .boot-status-copy {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }

  .boot-status-message {
    right: 0;
    justify-content: center;
  }

  .boot-status-message::before {
    display: none;
  }

  .boot-progress {
    width: 100%;
  }

  .boot-footer {
    padding: 0 1.1rem 1.1rem;
  }

  .boot-coordinate--east {
    right: 0;
  }
}

@media (max-height: 640px) and (min-width: 761px) {
  .boot-screen {
    min-height: 30rem;
  }

  .boot-stage {
    width: min(62rem, 92%);
  }

  .boot-scope {
    width: min(43vh, 18.5rem);
  }

  .boot-copy h1 {
    font-size: clamp(2.25rem, 6vh, 4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .boot-screen *,
  .boot-screen *::before,
  .boot-screen *::after {
    animation: none !important;
  }

  .boot-header,
  .boot-footer,
  .boot-kicker,
  .boot-scope,
  .boot-copy {
    opacity: 1;
    transform: none;
  }

  .boot-status-message {
    display: none;
    opacity: 1;
    transform: none;
  }

  .boot-status-message--one {
    display: flex;
  }

  .boot-progress span:nth-child(3n + 1) {
    background: var(--boot-cyan);
    opacity: 0.9;
  }
}
