/* Accessibility baseline — load after page <style> so it overrides */

/* Visible focus ring for keyboard users — works on buttons, links, inputs */
:focus-visible {
  outline: 3px solid #a855f7 !important;
  outline-offset: 2px !important;
  border-radius:0;
}

/* Don't show the ugly default outline on click — only on Tab */
:focus:not(:focus-visible) { outline: none; }

/* Respect users who ask for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Skip-to-content link for screen-reader / keyboard users */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: #0f172a;
  color: white;
  padding: 12px 16px;
  border-radius:0;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
}
.skip-to-content:focus {
  left: 0;
}

/* Hidden visually but readable by screen readers */
.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;
}
