/*
 * 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.
 * Rollback accents: vivid rose #ff3158; electric iris #7c5cff.
 */
:root {
    --brand-accent: #d6506c;
    --brand-accent-hover: color-mix(in srgb, var(--brand-accent) 74%, white);
    /* Capture Rose is an action colour, not body-copy colour. Text links stay
       neutral and the accent is reserved for recording/capture moments and
       primary actions, always paired with shape or text rather than colour alone. */
    --brand-accent-link: #1d1d1f;
    /* The darker expression keeps small accent copy readable on white while
       remaining derived from the single editable brand token above. */
    --brand-accent-deep: color-mix(in srgb, var(--brand-accent) 76%, black);
    --brand-accent-faint: color-mix(in srgb, var(--brand-accent) 8%, transparent);
    --brand-accent-soft: color-mix(in srgb, var(--brand-accent) 13%, transparent);
    --brand-accent-focus: color-mix(in srgb, var(--brand-accent) 20%, transparent);
    --brand-accent-glow: color-mix(in srgb, var(--brand-accent) 30%, transparent);
    --brand-accent-strong-glow: color-mix(in srgb, var(--brand-accent) 45%, transparent);
}
