/* ============================================================================
   renato-launcher — shared component v001
   A floating polyhedron + dropdown panel for jumping between web rooms.
   Loaded from https://renato.design/components/launcher/launcher.css?v=NNN
   ========================================================================== */

renato-launcher {
  position: fixed;
  z-index: 2147483646;
  /* Host bbox covers the polyhedron canvas; surrounding empty space passes
     clicks through because the shadow scrim/panel manage pointer-events
     internally. We do NOT set pointer-events:none on the host — author
     rules win over :host, and that would override the shadow's intent. */
  font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-feature-settings: 'tnum' 1, 'ss01' 1;
  color: #f3f3ee;
}

renato-launcher[data-corner="top-right"]    { top: 24px;    right: 24px;   left: auto; bottom: auto; }
renato-launcher[data-corner="top-left"]     { top: 24px;    left: 24px;    right: auto; bottom: auto; }
renato-launcher[data-corner="bottom-right"] { bottom: 24px; right: 24px;   left: auto; top: auto;    }
renato-launcher[data-corner="bottom-left"]  { bottom: 24px; left: 24px;    right: auto; top: auto;    }
