/* THE PRESSED, the ring (arsenal instrument, 2026-07-12).
 * The settle ring wears the control's own radius; everything else is written
 * as CSS translate and scale so host hover transforms stay untouched. */
.g28-pressed-ring{
  position:fixed; pointer-events:none; z-index:9996;
  border:1.5px solid var(--pressed-ring, var(--accent, #9fe0d0));
  opacity:0.8;
  animation:g28-pressed-settle 600ms cubic-bezier(0.16,1,0.30,1) forwards;
}
@keyframes g28-pressed-settle{
  from{ scale:1; opacity:0.8 }
  to{ scale:1.28; opacity:0 }
}
