/* ============================================
   Modern Blinds — Back-Compat Token Aliases
   ============================================
   Legacy CSS in style.css/lp.css uses old var names.
   This file maps them onto the new primitive/semantic tier so
   existing code keeps working unchanged.

   DEPRECATED — do not reference these in NEW code.
   Stylelint's custom-property-pattern blocks new declarations matching
   old names. Follow-up session will migrate usages to new names and
   delete this file.
   ============================================ */

@layer tokens {
  :root {
    --primary:       var(--color-brand-primary);
    --primary-dark:  var(--color-brand-primary-dark);
    --primary-light: var(--color-brand-primary-light);
    --accent:        var(--color-brand-accent);
    --accent-light:  var(--color-brand-accent-light);
    --dark:          var(--color-black);
    --white:         var(--color-white);
    --radius:        var(--radius-md);
    --max-width:     var(--layout-max-width);
  }
}
