/* CSS Custom Properties - Design System */
:root {
  /* Colors - Sisyphean Gridworks palette (teal/blue gradient from logo) */
  --color-primary: #1C4855;        /* Deep teal (from logo dark section) */
  --color-secondary: #2D6A7A;      /* Mid teal-blue */
  --color-accent: #5FCCDB;         /* Bright teal (from logo gradient) */
  --color-background: #F0F9FA;     /* Very light teal tint */
  --color-text: #1A202C;           /* Near-black */
  --color-text-muted: #4A6C74;     /* Teal-gray for secondary text */
  --color-border: #D4E8EB;         /* Light teal border */
  --color-white: #FFFFFF;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, rgba(28, 72, 85, 0.5) 0%, rgba(45, 106, 122, 0.5) 100%);
  --gradient-accent: linear-gradient(135deg, #45B8AC 0%, var(--color-accent) 100%);

  /* Typography */
  --font-heading: 'Crimson Pro', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Courier New', monospace;

  /* 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 */

  /* 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-width: 1200px;
  --container-narrow: 800px;
  --border-radius: 8px;
  --border-radius-lg: 12px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');
