/* Agentic Cloud Solutions — design tokens (dark theme only)
 * Single source of truth for all color values.
 * No light-mode variant: the dark theme is intentional and permanent.
 * Source: AEP product UI values (services/skills-manager-ui), reused verbatim.
 *
 * OPEN DEPENDENCY — BLOCKING: No production typeface has been chosen.
 * --font-body and --font-mono below are TEMPORARY system-font fallbacks so
 * pages remain buildable while the typeface decision is pending.
 * Do not ship to production without replacing these with the real chosen fonts.
 * See EPIC-005-S07 for context.
 */
:root {
  --bg:          #0d1117; /* page background */
  --surface:     #161b22; /* cards, panels, secondary surfaces */
  --border:      #30363d; /* structural borders — cards, buttons, dividers needing real separation */
  --border-soft: #21262d; /* quiet dividers — section rules, muted bars, placeholder lines */
  --ink:         #e6edf3; /* primary text */
  --ink-muted:   #7d8590; /* secondary text, labels, captions */
  --accent:      #2f81f7; /* primary brand blue */
  --accent-ink:  #ffffff; /* text/icon color placed on top of an --accent fill */
  --tint:        #132038; /* accent-tinted panel background — callout strips, banners, proof boxes */

  /* TEMPORARY — system-font fallbacks pending typeface decision (see OPEN DEPENDENCY above) */
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}
