/* ========================================
   CSS Custom Properties (Variables)
   ======================================== */

:root {
  /* -------- Colors -------- */
  /* Primary: Deep Blue / Cyan - Government-Enterprise Tech Style */
  --color-primary: #0066b3;
  --color-primary-dark: #004d8c;
  --color-primary-light: #3388cc;
  --color-primary-glow: rgba(0, 102, 179, 0.15);

  /* Secondary: Teal accent */
  --color-secondary: #00a8a8;
  --color-secondary-dark: #008686;

  /* Accent: Gold/Orange for data metrics */
  --color-accent: #e89a00;
  --color-accent-light: #ffb84d;

  /* Neutral */
  --color-white: #ffffff;
  --color-black: #000000;

  /* Backgrounds */
  --bg-primary: #0a1929;
  --bg-secondary: #081421;
  --bg-dark: #0a1929;
  --bg-dark-light: #112840;
  --bg-gradient-start: #0d1f33;
  --bg-gradient-end: #030a14;

  /* Text */
  --text-primary: #1a1a2e;
  --text-secondary: #4a5568;
  --text-muted: #8896ab;
  --text-inverse: #ffffff;

  /* Border */
  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;

  /* -------- Typography -------- */
  --font-body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --font-display: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;

  /* Font sizes */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px */
  --text-3xl: 1.875rem;  /* 30px */
  --text-4xl: 2.25rem;   /* 36px */
  --text-5xl: 3rem;      /* 48px */
  --text-6xl: 3.75rem;   /* 60px */

  /* Font weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Line heights */
  --leading-tight: 1.25;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* -------- Spacing -------- */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */

  /* -------- Layout -------- */
  --container-max: 1200px;
  --container-padding: var(--space-6);
  --navbar-height: 72px;
  --section-padding-y: var(--space-24);

  /* -------- Border Radius -------- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* -------- Shadows -------- */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 30px var(--color-primary-glow);

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

  /* -------- Z-index -------- */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-navbar: 1000;
  --z-modal: 2000;
}
