/* ═══════════════════════════════════════════
   THEME: Variante B — Anthrazit & Orange
   USD Extension Hub — BV-DigitalConsulting
   Palette: bg #1A1A1A · accent #FF7A00 · cards #404040
   ───────────────────────────────────────────
   Load AFTER styles.css to override the default
   (Variante A) token block. Repaints the whole
   UI via CSS custom properties only.
═══════════════════════════════════════════ */

:root {
  /* Anthracite surface ramp (darkest → lightest) */
  --bg-0:          #1A1A1A;   /* primary background — anthracite */
  --bg-0-rgb:      26,26,26;  /* same as --bg-0, for translucent surfaces */
  --bg-1:          #212121;   /* sections */
  --bg-2:          #2B2B2B;   /* inputs, controls, secondary surface */
  --bg-3:          #404040;   /* elevated / hover / secondary surface (cards) */
  --bg-card:       #2B2B2B;   /* cards (slightly darker than #404040 for layering) */
  --bg-footer:     #121212;   /* footer anchor */
  --light-surface: #E5E5E5;   /* optional light surface token */

  /* Brand / accent — orange */
  --accent-rgb:    255,122,0;            /* drives every accent tint & glow */
  --green:         #FF7A00;
  --green-hover:   #FF9533;
  --on-accent:     #1A1A1A;   /* dark text on orange/accent surfaces */
  /* --green-dim, --green-glow and --gradient-brand resolve from the vars
     above (defined in styles.css), so no need to restate them here. */
}
