body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: var(--hero-glow);
  z-index: -1;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

::selection {
  background: rgb(124 107 255 / 0.35);
  color: var(--text);
}

html[data-theme="light"] ::selection {
  background: rgb(79 70 229 / 0.22);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.92em;
}

.text-muted {
  color: var(--text-muted);
}

.link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgb(124 107 255 / 0.45);
}

html[data-theme="light"] .link {
  text-decoration-color: rgb(79 70 229 / 0.45);
}

.link:hover {
  text-decoration-thickness: 2px;
}
