/*
 * site.css — small companion stylesheet for the placeholder.
 *
 * Tailwind (loaded via the CDN in base.html) covers ~all styling. This file
 * carries the few details that benefit from real CSS: font-feature settings,
 * focus-visible smoothing, and a respect for reduced-motion.
 *
 * In production the Tailwind v4 compiler will replace the CDN; we keep this
 * file because the rules below survive the swap unchanged.
 */

:root {
  color-scheme: light;
}

html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  font-feature-settings: "cv02", "cv03", "cv04", "cv11", "ss01";
  font-variant-ligatures: contextual;
}

a, button, input {
  outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #2563EB;
  outline-offset: 2px;
  border-radius: 10px;
}

@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;
  }
}
