/* Design Tokens */
:root {
  /* Primary Colors */
  --primary-dark: #1a3d3d;
  --primary-teal: #1a4d4d;
  
  /* Accent Colors */
  --accent-pink: #f4c4d0;
  --accent-purple: #e8e3f5;
  --accent-beige: #f5f1eb;
  --accent-purple-light: #c8bfe8;
  
  /* Testimonial Brand Colors */
  --testimonial-purple: #b9bbfa;
  --testimonial-gold: #c5b358; /* Adjusted for better contrast/match */
  --testimonial-ink: #0b161a;
  
  /* Status Colors */
  --status-progress-bg: #f5e6d3;
  --status-progress-text: #8b6914;
  --status-complete-bg: #d4f4dd;
  --status-complete-text: #2d7738;
  
  /* Neutral Colors */
  --gray-50: #fafafa;
  --gray-100: #f7f7f7;
  --gray-200: #e0e0e0;
  --gray-300: #d1d1d1;
  --gray-400: #a8a8a8;
  --gray-600: #6b6b6b;
  --gray-800: #2d2d2d;
  --gray-900: #1a1a1a;
  --white: #ffffff;
  --black: #000000;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 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.5rem;       /* 24px */
  --text-2xl: 2rem;        /* 32px */
  --text-3xl: 3rem;        /* 48px */
  --text-hero: 4rem;       /* 64px */
  
  /* Font Weights */
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  
  /* 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 */
  
  /* Border Radius */
  --radius-sm: 0.25rem;    /* 4px */
  --radius-md: 0.375rem;   /* 6px */
  --radius-lg: 0.5rem;     /* 8px */
  --radius-xl: 0.75rem;    /* 12px */
  --radius-2xl: 1rem;      /* 16px */
  --radius-pill: 1.5rem;   /* 24px */
  --radius-full: 9999px;
  
  /* 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);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  /* Breakpoints (for reference in media queries) */
  --breakpoint-sm: 768px;
  --breakpoint-md: 1024px;
  --breakpoint-lg: 1280px;
  
  /* Layout */
  --sidebar-width: 240px;
  --header-height: 72px;
  --max-content-width: 1280px;
}
