html,
body,
#shop {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

/* Главная тёмная и только тёмная — слово владельца 10 сентября: белую тему
   вырезать совсем. Фон задаётся здесь, до загрузки приложения, иначе первый
   кадр остаётся белым. */
html,
html body {
  background: #040b18;
  color-scheme: dark;
}

.shop-boot {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  grid-template-rows: 76px 1fr;
  padding-inline: max(24px, calc((100vw - 1200px) / 2));
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 8%, rgba(25, 214, 232, .16), transparent 28rem),
    #e7f2fd;
  color: #071022;
  opacity: 1;
  transition: opacity .18s ease;
}

html[data-cyanore-theme="dark"] .shop-boot {
  background:
    radial-gradient(circle at 78% 8%, rgba(25, 214, 232, .09), transparent 28rem),
    #040b18;
  color: #eef6ff;
}

.shop-boot.is-ready {
  opacity: 0;
}

.shop-boot-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.shop-boot-brand > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #070c16;
}

.shop-boot-brand svg {
  width: 32px;
  stroke: #19d6e8;
  stroke-linecap: round;
  stroke-width: 2;
}

.shop-boot-brand b {
  font: 700 18px/1 "Segoe UI Variable Display", "Segoe UI", sans-serif;
  letter-spacing: .14em;
}

.shop-boot-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  max-width: 620px;
  padding-bottom: 9vh;
}

.shop-boot-copy small {
  color: #087a9b;
  font: 700 10px/1 "Cascadia Mono", Consolas, monospace;
  letter-spacing: .18em;
}

.shop-boot-copy strong {
  font: 560 clamp(48px, 6vw, 74px)/1 "Segoe UI Variable Display", "Segoe UI", sans-serif;
  letter-spacing: -.05em;
}

.shop-boot-copy i {
  width: min(360px, 78vw);
  height: 3px;
  background: linear-gradient(90deg, #19d6e8 0 58%, #1b3be0 58% 78%, transparent 78%);
}

@media (max-width: 680px) {
  .shop-boot {
    grid-template-rows: 64px 1fr;
    padding-inline: 20px;
  }

  .shop-boot-copy {
    gap: 14px;
    padding-bottom: 5vh;
  }

  .shop-boot-copy strong {
    font-size: clamp(42px, 14vw, 60px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-boot {
    transition: none;
  }
}
