:root {
  /* Colors */
  --clr-primary:       #1565C0;
  --clr-primary-hover: #0D47A1;
  --clr-primary-pale:  #E3F2FD;
  --clr-green:         #388E3C;
  --clr-green-light:   #43A047;
  --clr-green-pale:    #E8F5E9;
  --clr-white:         #FFFFFF;
  --clr-bg:            #F7FAFF;
  --clr-bg-section:    #EEF4FF;
  --clr-text:          #1C2B3A;
  --clr-text-muted:    #5A6A7A;
  --clr-border:        #D6E4F7;
  --clr-shadow:        rgba(21, 101, 192, 0.12);

  /* Typography */
  --font-base: 'Inter', 'Segoe UI', Arial, sans-serif;
  --fz-xs:   0.75rem;   /* 12px */
  --fz-sm:   0.875rem;  /* 14px */
  --fz-md:   1rem;      /* 16px */
  --fz-lg:   1.125rem;  /* 18px */
  --fz-xl:   1.25rem;   /* 20px */
  --fz-2xl:  1.5rem;    /* 24px */
  --fz-3xl:  1.875rem;  /* 30px */
  --fz-4xl:  2.25rem;   /* 36px */

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;

  /* Radius */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-full: 9999px;

  /* Transitions */
  --tr-fast:   150ms ease;
  --tr-normal: 250ms ease;
  --tr-slow:   400ms ease;

  /* Container */
  --container-max: 1200px;
  --container-px:  1rem;

  /* Header height */
  --header-h: 70px;
}

@media (min-width: 768px) {
  :root {
    --container-px: 2rem;
    --header-h: 80px;
  }
}
