/* trustwall/accent.css — TrustWall, "Trust indigo" accent + Sora/Inter fonts.
   This is the ONLY place TrustWall overrides the shared Atlas system. */
:root {
  --font-product-display: "Sora";
  --font-product-body: "Inter";
}

:root, [data-theme="light"] {
  --accent:          #4f46e5;   /* indigo-600 */
  --accent-rgb:      79 70 229;
  --accent-hover:    #4338ca;   /* indigo-700 */
  --accent-soft:     #eef2ff;   /* indigo-50  */
  --accent-text:     #4338ca;   /* darker step — AA link text on white */
  --accent-contrast: #ffffff;   /* white button text passes AA on indigo */
}

[data-theme="dark"] {
  --accent:          #818cf8;   /* indigo-400 */
  --accent-rgb:      129 140 248;
  --accent-hover:    #a5b4fc;   /* indigo-300 */
  --accent-soft:     #1e2547;   /* deep slate-indigo */
  --accent-text:     #a5b4fc;
  --accent-contrast: #0b1120;
}
