:root {
  /* Colors */
  --color-text: #333333;
  --color-text-soft: #666666;
  --color-title: #2c324d;

  --color-bg: #ffffff;
  --color-bg-alt: #f6f6f6;
  --color-bg-soft: #fafafa;
  --color-border: rgba(0, 0, 0, 0.12);

  --color-primary: #2c324d;
  --color-primary-contrast: #ffffff;

  --color-accent: #7abc61;
  --color-accent-contrast: #ffffff;

  --color-success: #2e7d32;
  --color-warning: #d38b00;
  --color-danger: #b3261e;

  /* Typography */
  --font-body: inter-variable, sans-serif;
  --font-heading: "dm-sans", sans-serif;

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

  --text-xs: 0.75rem;
  --text-md: 1.145rem; /* 18px */
  --text-lg: 1.25rem;  /* 20px */
  --text-xl: 1.5rem;   /* 24px */
  --text-2xl: clamp(1.25rem, 1.5vw, 1.75em);
  --text-3xl: clamp(2.25rem, 4vw, 4rem);
  --text-4xl: clamp(2.75rem, 6vw, 5.5rem);

  --line-tight: 1;
  --line-title: 1.15;
  --line-body: 1.6;

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

  /* Radius */
  --radius-xs: 0.375rem;
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);

  /* Layout */
  --container-sm: 760px;
  --container-md: 980px;
  --container-lg: 1240px;
  --container-xl: 1440px;
  --container-padding: 1.25rem;

  /* Header */
  --header-height: 84px;

  /* Motion */
  --ease: 220ms ease;
  --ease-slow: 320ms ease;
}