:root {
  /* Brand */
  --color-primary:       #1565C0;
  --color-primary-dark:  #0D47A1;
  --color-accent:        #00ACC1;
  --color-bg:            #FAFAFA;
  --color-surface:       #FFFFFF;
  --color-border:        #E0E0E0;
  --color-text:          #111111;
  --color-text-muted:    #757575;
  --color-success:       #2E7D32;
  --color-warning:       #E65100;
  --color-pro:           #F57F17;

  /* Spacing (8px grid) */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px;
  --sp-4: 16px; --sp-5: 24px; --sp-6: 32px;
  --sp-7: 48px; --sp-8: 64px;

  /* Typography */
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --text-xs:12px; --text-sm:14px; --text-base:16px;
  --text-lg:18px; --text-xl:20px; --text-2xl:24px;
  --text-3xl:30px; --text-4xl:36px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.16);

  /* Radius */
  --radius-sm: 6px; --radius-md: 10px; --radius-lg: 16px;

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --duration: 180ms;
}

[data-theme='dark'] {
  --color-bg:      #0D1117;
  --color-surface: #161B22;
  --color-border:  #30363D;
  --color-text:    #E6EDF3;
  --color-text-muted: #8B949E;
}
