/* High contrast accessibility override (dark mode removed) */
html[data-contrast="high"] { --gradient-hero:linear-gradient(115deg,#000 0%,#333 60%); --pink:#ff008c; --pink-dark:#ff008c; --yellow:#ffe700; }
html[data-contrast="high"] body { letter-spacing:.4px; }
html[data-contrast="high"] .header, html[data-contrast="high"] .card.highlight { filter:contrast(1.15); }
html[data-contrast="high"] a { text-decoration:underline; }

/* Animated focus outline for keyboard nav users only */
@media (prefers-reduced-motion:no-preference){
  body:not(.mouse) :focus-visible { animation:focusPulse 1.6s ease forwards; }
  @keyframes focusPulse { 0%{ box-shadow:0 0 0 3px rgba(255,216,90,.85);} 60%{ box-shadow:0 0 0 6px rgba(255,216,90,.0);} 100%{ box-shadow:0 0 0 3px rgba(255,216,90,.75);} }
}
