/* makers_sigil.css — subtle maker's-sigil layer (MAKERS-SIGIL-LAYER, Leo go 2026-09-13)
   Additive + engraved. Footer colophon (hover-reveal) + gateway threshold mark.
   Console signature lives in makers_sigil.js. Glyphs = themeable data (window.MYSQUAD_SIGILS).
   Doctrine: no nav/header chrome; a glimpse, not a banner. Reveals reward attention. */

:root{
  --msq-sig-gold:#d4af6a;
  --msq-sig-gold-dim:#8a7442;
}

/* ---------- footer colophon ---------- */
.msq-colophon{
  position:fixed;
  left:14px;
  bottom:12px;
  z-index:9000;               /* under modals (100000+) and tsb, above page body */
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:4px;
  pointer-events:none;         /* never intercept clicks except the strip itself */
  user-select:none;
  font-family:"JetBrains Mono","Cascadia Code",ui-monospace,monospace;
}
.msq-colophon__row{
  pointer-events:auto;
  display:flex;
  align-items:center;
  gap:11px;
  padding:3px 4px;
  cursor:default;
}
.msq-colophon__g{
  font-size:14px;
  line-height:1;
  color:var(--msq-sig-gold);
  opacity:.15;
  transition:opacity .38s ease, text-shadow .38s ease, transform .38s ease;
}
.msq-colophon__row:hover .msq-colophon__g{
  opacity:.6;
  text-shadow:0 0 9px rgba(212,175,106,.4);
}
.msq-colophon__row:hover .msq-colophon__g:hover{
  opacity:1;
  transform:translateY(-2px);
}
.msq-colophon__reveal{
  pointer-events:none;
  font-size:9.5px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--msq-sig-gold-dim);
  opacity:0;
  max-height:0;
  overflow:hidden;
  transition:opacity .4s ease;
  padding-left:4px;
}
.msq-colophon:hover .msq-colophon__reveal{
  opacity:.9;
  max-height:20px;
}

/* Keep clear of the bottom-center route nav on small screens by fading further */
@media (max-width:640px){
  .msq-colophon{ left:8px; bottom:8px; }
  .msq-colophon__g{ font-size:12px; }
}

/* ---------- gateway threshold mark ---------- */
.msq-threshold{
  position:fixed;
  left:50%;
  bottom:26px;
  transform:translateX(-50%);
  z-index:8000;
  pointer-events:none;
  user-select:none;
  font-family:"JetBrains Mono","Cascadia Code",ui-monospace,monospace;
  font-size:34px;
  color:var(--msq-sig-gold);
  opacity:.2;
  animation:msqBreathe 6s ease-in-out infinite;
}
@keyframes msqBreathe{
  0%,100%{ opacity:.14; text-shadow:0 0 12px rgba(212,175,106,.15); }
  50%{ opacity:.4; text-shadow:0 0 26px rgba(212,175,106,.45); }
}
@media (prefers-reduced-motion:reduce){
  .msq-threshold{ animation:none; opacity:.3; }
}

/* ---------- deploy build chip (colophon) ---------- */
.msq-build-chip{
  pointer-events:auto;
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:2px;
  padding:0 4px;
  text-decoration:none;
  color:var(--msq-sig-gold-dim);
  font-size:9px;
  letter-spacing:.08em;
  opacity:.35;
  transition:opacity .35s ease, color .35s ease;
}
.msq-build-chip:hover{ opacity:.75; }
.msq-build-chip__label{ line-height:1; }
.msq-build-chip__refresh{
  font:inherit;
  font-size:10px;
  line-height:1;
  padding:0 2px;
  border:none;
  background:transparent;
  color:var(--msq-sig-gold);
  cursor:pointer;
  opacity:.85;
}
.msq-build-chip--stale{
  opacity:1;
  color:#f59e0b;
}
.msq-build-chip--stale .msq-build-chip__label{
  text-shadow:0 0 8px rgba(245,158,11,.35);
}

/* ---------- decorative MS mark (colophon; no Page Fairy / no API) ---------- */
.msq-ms-orb{
  pointer-events:none;
  width:30px;
  height:30px;
  margin-top:2px;
  padding:3px;
  border-radius:8px;
  border:1px solid rgba(34,211,238,.22);
  background:rgba(6,10,15,.55);
  box-sizing:border-box;
  opacity:.18;
  transition:opacity .35s ease, box-shadow .35s ease;
}
.msq-ms-orb svg{
  width:100%;
  height:100%;
  display:block;
}
.msq-colophon:hover .msq-ms-orb{
  opacity:.5;
  box-shadow:0 0 14px rgba(34,211,238,.2);
}
@media (prefers-reduced-motion:reduce){
  .msq-ms-orb{ transition:none; }
}
@media (max-width:640px){
  .msq-ms-orb{ width:26px; height:26px; }
}
