/* ============================================
   DATA CREEK System — Design Tokens
   Professional Blue Color Scheme
   ============================================ */

:root {
  /* Colors */
  --primary: #1B3A5C;
  --secondary: #2E86DE;
  --accent: #F39C12;
  --light: #F0F4F8;
  --dark: #0D1B2A;
  --text: #333333;
  --white: #FFFFFF;

  /* Derived Colors */
  --primary-light: #24497a;
  --secondary-light: #5a9fe6;
  --accent-light: #f5b041;
  --border: #e0e6ed;
  --shadow: rgba(13, 27, 42, 0.08);
  --shadow-lg: rgba(13, 27, 42, 0.15);

  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-2xl: 32px;
  --font-size-3xl: 42px;
  --font-size-4xl: 52px;
  --line-height: 1.7;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 60px;
  --space-2xl: 80px;
  --space-3xl: 100px;

  /* Layout */
  --max-width: 1200px;
  --header-height: 70px;
  --border-radius: 8px;
  --border-radius-lg: 12px;

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}
