:root {
  /* Colors — Light premium theme with green accent */
  --color-primary: #4CAF50;
  --color-primary-dark: #388E3C;
  --color-primary-light: #66BB6A;
  --color-primary-muted: rgba(76, 175, 80, 0.1);

  --color-bg: #f7f7f5;
  --color-bg-secondary: #ffffff;
  --color-bg-dark: #1a1a1a;
  --color-bg-card: #ffffff;
  --color-bg-card-hover: #f0f0ee;

  --color-text: #1a1a1a;
  --color-text-secondary: #666666;
  --color-text-muted: #999999;
  --color-text-white: #ffffff;

  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-hover: rgba(0, 0, 0, 0.18);

  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-heading: 'Unbounded', sans-serif;

  --fs-display: clamp(3rem, 8vw, 6rem);
  --fs-hero: clamp(2rem, 5vw, 3.5rem);
  --fs-h1: clamp(1.75rem, 3.5vw, 2.75rem);
  --fs-h2: clamp(1.5rem, 3vw, 2rem);
  --fs-h3: clamp(1.1rem, 2vw, 1.35rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;
  --spacing-3xl: 10rem;

  --section-padding: clamp(5rem, 12vw, 10rem) 0;

  /* Layout */
  --container-max: 1400px;
  --container-padding: 0 clamp(1.5rem, 5vw, 4rem);

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 50px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 40px rgba(76, 175, 80, 0.12);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
