/*
 * Video Production brand source of truth.
 *
 * Change only --brand-accent to recolour every public/admin surface. All
 * lighter, darker and translucent variants are derived by the browser, while
 * BrandColor reads this same token for email, PDFs and generation prompts.
 */
:root {
    --brand-accent: #ff7900;
    --brand-accent-hover: color-mix(in srgb, var(--brand-accent) 74%, white);
    /* Never darken Orange with black: that creates the brown/copper cast the
       brand deliberately avoids. Text links stay neutral and every coloured
       accent remains the exact Orange token above. */
    --brand-accent-link: #1d1d1f;
    --brand-accent-deep: var(--brand-accent);
    --brand-accent-faint: color-mix(in srgb, var(--brand-accent) 10%, transparent);
    --brand-accent-soft: color-mix(in srgb, var(--brand-accent) 16%, transparent);
    --brand-accent-focus: color-mix(in srgb, var(--brand-accent) 24%, transparent);
    --brand-accent-glow: color-mix(in srgb, var(--brand-accent) 42%, transparent);
    --brand-accent-strong-glow: color-mix(in srgb, var(--brand-accent) 65%, transparent);
}
