/* ============================================================
   COMPEO — boot loader ("Blueprint Draw")
   Full-screen boot overlay. A floor plan drafts itself onto a
   blue blueprint field, then a "FLOOR PLAN / THE BIRCHWOOD" title
   block stamps in and the overlay lifts straight into the site.
   Vanilla port of compeo-loaders-lab/src/loaders/05-blueprint-draw.
   Deliberately BLUE (not charcoal) — distinct from other loaders.
   ============================================================ */

/* lock the page while the overlay is up */
html.boot-active,
html.boot-active body { overflow: hidden; }

#boot-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(120% 90% at 50% 30%, #12202e 0%, #0a121b 60%, #070c12 100%);
  color: var(--cream);
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.55s var(--ease);
}
#boot-loader.boot--lift { opacity: 0; pointer-events: none; }
#boot-loader.boot--gone { display: none; }

/* ---------------- THE STAGE ---------------- */
#boot-loader .bp-stage {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 4vmin;
}
#boot-loader .bp-svg {
  height: 100%; width: 100%;
  max-height: 88vh;
  overflow: visible;
}

/* ---------------- MICROCOPY ---------------- */
#boot-loader .bp-copy {
  position: absolute; left: 50%; bottom: 6%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}
#boot-loader.is-revealed .bp-copy { opacity: 0; }
#boot-loader .bp-copy__label {
  font-family: var(--display);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.4em;
  color: #9db4c4;
}
#boot-loader .bp-copy__stat {
  margin-top: 0.35rem;
  font-family: var(--display);
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
  color: rgba(247, 242, 234, 0.7);
}

/* ---------------- TITLE BLOCK STAMP ---------------- */
#boot-loader .bp-title {
  position: absolute; left: 50%; bottom: 6%;
  transform: translateX(-50%) scale(1.12);
  opacity: 0;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
#boot-loader.is-revealed .bp-title {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
#boot-loader .bp-title__card {
  display: flex; align-items: center; gap: 0.75rem;
  border: 1px solid rgba(200, 116, 60, 0.5);
  background: rgba(10, 18, 27, 0.7);
  padding: 0.75rem 1.25rem;
}
#boot-loader .bp-title__mark {
  height: 30px; width: 30px; flex: 0 0 auto; display: block;
}
#boot-loader .bp-title__meta {
  border-left: 1px solid rgba(200, 116, 60, 0.3);
  padding-left: 0.75rem;
}
#boot-loader .bp-title__kicker {
  font-family: var(--display);
  font-size: 9px; text-transform: uppercase; letter-spacing: 0.3em;
  color: rgba(247, 242, 234, 0.45);
}
#boot-loader .bp-title__name {
  font-family: var(--display);
  font-size: 1rem; font-weight: 800; letter-spacing: 0.03em;
  color: var(--cream);
}

/* ---------------- reduced motion ---------------- */
@media (prefers-reduced-motion: reduce) {
  #boot-loader { transition: opacity 0.35s ease; }
  #boot-loader .bp-copy,
  #boot-loader .bp-title { transition: none; }
}
