/* Content protection styles. Applied to landing, deck, slideshow. */

/* Disable all text selection by default */
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

/* Keep form inputs selectable */
input, textarea, [contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Disable image drag */
img, video {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}

/* Hide content from print; replace with a notice */
@media print {
  html, body { background: white !important; color: black !important; }
  body > * { display: none !important; }
  body::before {
    content: "HuntJacq Labs · ARIA · Technical Briefing · Confidential. Printing disabled.";
    display: block !important;
    padding: 40px;
    font-family: -apple-system, sans-serif;
    font-size: 14px;
    color: #333;
  }
}
