/* ============================================================
   COMING-SOON GATE — temporary, site-wide.
   A full-screen overlay dropped on top of every live page so the real
   content isn't visible to anyone landing on the site before launch.
   Added 2026-08-24 (Michael still employed at McKinsey until 2026-08-28).

   TO GO LIVE: uncomment the single rule at the bottom of this file. That
   removes the gate from every page at once — no need to touch the HTML.
   ============================================================ */

.mk-coming-soon-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mk-paper);
  padding: var(--mk-gutter-sm);
}

.mk-coming-soon-overlay__inner {
  text-align: center;
  max-width: 26rem;
}

.mk-coming-soon-overlay svg {
  height: 26px;
  width: auto;
  display: block;
  margin: 0 auto var(--mk-6);
  color: var(--mk-ink);
}

.mk-coming-soon-overlay h1 {
  margin: 0 0 var(--mk-3);
}

.mk-coming-soon-overlay p {
  color: var(--mk-ink-60);
  margin-inline: auto;
}

/* ── LAUNCH SWITCH ──
   Uncomment this rule to hide the gate on every page at once. */
.mk-coming-soon-overlay { display: none !important; }
