/* landing5 — boot sequence: logo → content + mosaic together */

.sight-boot {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  background: var(--bg);
  transition: opacity 0.75s var(--ease-out), visibility 0.75s;
}

.sight-boot.is-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sight-boot__logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, 0.45);
}

.sight-boot__name {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.65rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

/* Backdrop stays static — opacity transitions on canvas cause visible shimmer */
.sight__backdrop {
  opacity: 1;
}

.sight__content {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out);
}

.sight.is-ready .sight__content {
  opacity: 1;
}

.sight.is-ready #hero .reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .sight-boot,
  .sight__content {
    transition: none;
  }
  .sight__content {
    opacity: 1;
  }
  .sight-boot { display: none; }
}
