/* App-level CSS on top of Tailwind.
   Kept minimal; most styling is utility-first in templates. */

:root {
  --sndk-gold: #d79129;
  --sndk-navy: #1b1c4f;
}

html { scroll-behavior: smooth; }
body { text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }

/* Focus ring consistency across form elements */
input:focus, select:focus, textarea:focus, button:focus-visible {
  outline: 2px solid var(--sndk-gold);
  outline-offset: 1px;
}
