/* GFXstudio brand color — THE one place to change the accent.
 *
 * Loaded by every UI surface: includes/head.php (account pages), control.php, and
 * designer.php (which map their local --cta names onto these). Everything green in
 * the app chrome derives from --gfx-accent; change it here and the buttons, links,
 * chips, loader bar, active states, and status dots all follow.
 *
 * --gfx-cta/--gfx-cta-text are aliases: app.css and several pages were written
 * against var(--gfx-cta, #4bde80), but no account-facing stylesheet ever DEFINED
 * --gfx-cta -- every one of those rules silently rendered its hardcoded fallback,
 * which is exactly why changing --gfx-accent didn't restyle the whole site. The
 * aliases wire that entire family back to this single value.
 *
 * NOT covered on purpose: the broadcast templates under /templates and /display
 * (on-air graphics, not app chrome), the marketing pages' own token set, and the
 * standalone Score app.
 */
:root {
    --gfx-accent: #4bde80;      /* the green */
    --gfx-accent-text: #0c2b16; /* text ON the green (buttons, chips) */
    --gfx-link: var(--gfx-accent);
    --gfx-cta: var(--gfx-accent);
    --gfx-cta-text: var(--gfx-accent-text);
}
