/* AURORA · LIFTED tokens — sitewide readability overrides.
   Loaded last in <head> so these cascade over each page's inline :root.
   Performance-first: tokens only. No aurora washes or glass blur sitewide
   (those live on the homepage only — they're GPU-expensive). */
:root{
  --bg:#06060c;
  --bg-surface:#0a0a14;
  --text:#ecedf3;
  --text-secondary:#b8bacf;
  --text-dim:#9da0bd;
  --border:rgba(255,255,255,0.07);
  --cyan-dim:rgba(0,255,170,0.1);
  --cyan-glow:rgba(0,255,170,0.3);
  --cyan-border:rgba(0,255,170,0.22);
  --amber:#ffc944;
}
/* Respect reduced motion globally. Per-page hover transitions still work; only
   the heavier transform/blur transitions get disabled. */
@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}
}
