/* theme-brand.css — deepIng brand overrides.
   Loaded after crm-shell.css; only touches tokens that differ. */

:root {
  --accent:       #3269B4;   /* deepIng brand blue */
  --accent-tint:  #EBF1FA;
  --accent-dark:  #255293;

  /* Tight mono spacing for code-heavy workflow YAML */
  --font-mono: 'IBM Plex Mono', 'Fira Code', 'Courier New', monospace;
}

/* Topstrip: brand blue gradient */
.topstrip {
  background: linear-gradient(90deg, #3269B4 0%, #255293 100%);
}

/* Accent links */
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
