/* ============================================================
   bm-hud.css — custom cursor + live HUD overlay
   ============================================================ */

/* ---------- custom cursor ---------- */
.cursor{position:fixed;top:0;left:0;z-index:9999;pointer-events:none;mix-blend-mode:difference}
.cursor__dot{position:absolute;top:0;left:0;width:6px;height:6px;border-radius:50%;background:#fff;transform:translate(-50%,-50%)}
.cursor__ring{position:absolute;top:0;left:0;width:34px;height:34px;border:1px solid rgba(255,255,255,.6);border-radius:50%;transform:translate(-50%,-50%);transition:width .25s var(--ease),height .25s var(--ease),opacity .25s}
.cursor.is-hover .cursor__ring{width:56px;height:56px;background:rgba(255,255,255,.08)}
.cursor.is-hidden{opacity:0}
/* hide native cursor only when custom is active */
html.cursor-on,html.cursor-on *{cursor:none!important}
@media (hover:none),(pointer:coarse){.cursor{display:none}html.cursor-on,html.cursor-on *{cursor:auto!important}}

/* ---------- HUD ---------- */
.hud{position:fixed;inset:0;z-index:80;pointer-events:none}
.hud__row{position:fixed;padding:14px 18px;color:var(--fg-mute)}
/* top rows sit BELOW the header (header is 72px) so they never overlap
   the logo or the nav */
.hud__tl{top:84px;left:0}
.hud__tr{top:84px;right:0;text-align:right}
.hud__bl{bottom:0;left:0}
.hud__br{bottom:0;right:0;text-align:right}
.hud__row .mono-sm{color:var(--gray-500);display:inline-flex;align-items:center;gap:8px}
.hud__swatch{display:inline-block;width:9px;height:9px;border-radius:1px;background:var(--accent);box-shadow:0 0 8px var(--blue-glow)}

/* hide the corner HUD on small screens to avoid clutter (keep it desktop-flavour) */
@media(max-width:760px){
  .hud__tl,.hud__tr{display:none}
  .hud__bl,.hud__br{opacity:.6}
  .hud__row{padding:10px 14px}
}
