:root {
  /* Colors - Sky Blue Theme */
  --color-primary: #1e3a5f;
  --color-primary-light: #2563eb;
  --color-accent: #3b82f6;
  --color-accent-hover: #2563eb;
  --color-accent-light: #60a5fa;
  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-bg-alt: #f0f7ff;
  --color-text: #1e293b;
  --color-text-light: #64748b;
  --color-text-muted: #94a3b8;
  --color-border: #e2e8f0;

  /* Typography - Clean Modern */
  --font-primary: 'Inter', 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
  --font-logo: 'Montserrat', 'Inter', 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: 48px;
  --font-size-hero: 56px;
  --line-height-base: 1.6;
  --line-height-heading: 1.3;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-section: 80px;

  /* Layout */
  --container-max: 1200px;
  --container-padding: 20px;
  --header-height: 72px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;

  /* Shadows - Blue tinted */
  --shadow-card: 0 2px 12px rgba(37, 99, 235, 0.06);
  --shadow-card-hover: 0 8px 24px rgba(37, 99, 235, 0.12);
  --shadow-header: 0 2px 8px rgba(30, 58, 95, 0.06);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Z-index */
  --z-header: 1000;
  --z-overlay: 900;
}
