:root {
  /* Pointer AI / Palantir Inspiration - Deep Industrial Slate */
  --color-background: #282828; /* Gray matching the logo text */
  --color-surface: #333333;    /* Slightly lighter card background */
  --color-card: rgba(51, 51, 51, 0.7); /* Glass card background */
  --color-border: rgba(255, 255, 255, 0.1); /* Low contrast subtle border */
  --color-border-hover: rgba(37, 99, 235, 0.4); /* Glow border on hover (blue) */
  
  --color-text: #FFFFFF;       /* Crisp white headings */
  --color-text-muted: #94A3B8; /* Slate gray body text */
  
  --color-primary: #2563eb;    /* Royal Blue Accent */
  --color-primary-hover: #1d4ed8; 
  --color-glow: rgba(37, 99, 235, 0.15); /* Soft blue glow */

  --container-width: 1280px;
  
  --radius-small: 12px;
  --radius-medium: 24px;   /* Bento grid heavily rounded corners */
  --radius-large: 32px;
  --radius-pill: 9999px;   /* Pill shaped buttons and badges */
  
  --transition-fast: 150ms ease;
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
}
