/* Extra accessibility helpers (works even if Tailwind doesn't load) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #22d3ee;
  color: #020204;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  z-index: 100000;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}