/* AI-first blackout: humans see mark only; agents still read full DOM */
html, body {
  margin: 0;
  height: 100%;
  overflow: hidden; /* no scrollbar giving away page length */
  background: #000;
  color: #000;
  font-family: system-ui, sans-serif;
  line-height: 1.5;
}
body, body * {
  color: #000 !important;
  background-color: #000 !important;
  background-image: none !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  caret-color: #000 !important;
  text-shadow: none !important;
  accent-color: #000 !important;
  -webkit-tap-highlight-color: transparent !important;
  filter: none !important;
}
a { text-decoration: none !important; }
::selection { background: #000 !important; color: #000 !important; }
::-webkit-scrollbar { width: 0 !important; height: 0 !important; }
input, textarea, select, button, fieldset, hr, option {
  border: 0 !important;
  outline: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background: #000 !important;
  color: #000 !important;
  -webkit-text-fill-color: #000 !important;
  opacity: 1;
}
input:focus, textarea:focus, select:focus, button:focus {
  outline: 0 !important;
  box-shadow: none !important;
}
/* Sole visible mark: text wordmark + small dot before AI */
.site-mark {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  pointer-events: none;
  z-index: 9999;
  background: transparent !important;
  overflow: visible !important;
}
.site-mark, .site-mark * {
  color: #fff !important;
  background: transparent !important;
  background-color: transparent !important;
  -webkit-text-fill-color: #fff !important;
  border: none !important;
  filter: none !important;
}
.site-mark .word {
  margin: 0;
  font-family: "Avenir Next", "Futura", "Century Gothic", "Gill Sans", "Trebuchet MS", system-ui, sans-serif !important;
  font-weight: 400;
  font-size: clamp(1.15rem, 3.6vw, 1.85rem);
  letter-spacing: 0.28em;
  text-indent: 0.28em; /* optically balance trailing tracking */
  text-transform: none;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.site-mark .dot {
  display: inline-block;
  width: 0.22em;
  height: 0.22em;
  margin: 0 0.42em 0 0.22em;
  border-radius: 50%;
  background: #fff !important;
  background-color: #fff !important;
  flex-shrink: 0;
  vertical-align: middle;
  position: relative;
  top: -0.02em;
}
