/* ONFIX: matte-gold honeycomb, quiet center, no animation or interaction. */
html:root:root body {
  isolation:isolate;
}
html:root:root:not([data-theme="light"]) body {
  background:#050505 !important;
}
html:root:root body::before {
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background-image:url("/assets/onfix-honeycomb-gold.svg?v=20260903-honeycomb");
  background-repeat:no-repeat;
  background-position:right top;
  background-size:clamp(380px,65vw,940px) auto;
  opacity:1;
}
/* Keep light mode functional; the same texture becomes a faint gold detail. */
html:root:root[data-theme="light"] body::before {
  opacity:.24;
}
@media(max-width:760px) {
  html:root:root body::before {
    background-size:100% auto;
  }
}
@media print {
  html:root:root body::before {display:none;}
}
