:root {
  /* Brand (from palette) */
  --color-brand-600: #2d6a98; /* primary blue */
  --color-brand-700: #1b4e73; /* deep blue */
  --color-brand-800: #163b57; /* darker blue */
  --color-accent-600: #325926; /* green accent */

  /* Light theme (default) */
  --color-bg: #fdfefe;
  --color-panel: #ffffff;
  --color-elev-1: #f7fbfd;
  --color-elev-2: #eef5fa;
  --color-text: #0b1220;
  --color-muted: #5a6b7a;
  --color-border: #e4edf4;

  /* Supporting */
  --color-danger: #ef4444;
  --color-warning: #f59e0b;
  --color-success: #22c55e;

  /* Typography */
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --font-size-xs: 0.75rem;    /* 12 */
  --font-size-sm: 0.875rem;   /* 14 */
  --font-size-base: 1rem;     /* 16 */
  --font-size-md: 1.125rem;   /* 18 */
  --font-size-lg: 1.25rem;    /* 20 */
  --font-size-xl: 1.5rem;     /* 24 */
  --font-size-2xl: 1.875rem;  /* 30 */
  --font-size-3xl: 2.25rem;   /* 36 */
  --font-size-4xl: 3rem;      /* 48 */

  /* Spacing */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space: 1rem;
  --space-md: 1.25rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radii */
  --radius-sm: 0.375rem;
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(2, 8, 23, 0.12);
  --shadow: 0 10px 40px rgba(2, 8, 23, 0.12);
  --shadow-lg: 0 20px 60px rgba(2, 8, 23, 0.14);

  /* Layout */
  --container-w: 1200px;
  --header-h: 88px;
  --z-header: 50;
  --z-dropdown: 60;
  --z-overlay: 70;
}

[data-theme="dark"] {
  --color-bg: #0b0f14;
  --color-panel: #0f151c;
  --color-elev-1: #131a22;
  --color-elev-2: #18212b;
  --color-text: #e6edf3;
  --color-muted: #b7c2cc;
  --color-border: #233041;

  /* Shadows (darker) */
  --shadow-sm: 0 4px 16px rgba(2, 8, 23, 0.4);
  --shadow: 0 10px 40px rgba(2, 8, 23, 0.5);
  --shadow-lg: 0 20px 60px rgba(2, 8, 23, 0.6);
}

@media (min-width: 768px) {
  :root {
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3.5rem;
    --header-h: 112px;
  }
}


