:root {
  --font-sans: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --text-xs: clamp(0.75rem, 0.72rem + 0.12vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.18vw, 1rem);
  --text-base: clamp(1rem, 0.97rem + 0.2vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.04rem + 0.45vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.18rem + 1vw, 2.125rem);
  --text-2xl: clamp(2.25rem, 1.7rem + 2vw, 3.75rem);
  --text-hero: clamp(3rem, 2.1rem + 3vw, 5.5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --color-bg: #f6f4ef;
  --color-surface: #fbfaf7;
  --color-surface-2: #f0ede7;
  --color-card: #ffffff;
  --color-border: rgba(32, 33, 36, 0.1);
  --color-border-strong: rgba(32, 33, 36, 0.16);

  --color-text: #171717;
  --color-text-muted: #5f5f5f;
  --color-text-faint: #8d8d8d;
  --color-inverse: #ffffff;

  --color-accent: #1e3a5f;
  --color-accent-hover: #142842;
  --color-accent-soft: rgba(30, 58, 95, 0.08);

  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-2xl: 2rem;
  --radius-full: 999px;

  --shadow-sm: 0 2px 10px rgba(15, 15, 15, 0.04);
  --shadow-md: 0 12px 32px rgba(15, 15, 15, 0.08);
  --shadow-lg: 0 22px 60px rgba(15, 15, 15, 0.12);

  --container-sm: 760px;
  --container-md: 1040px;
  --container-lg: 1240px;

  --header-height: 88px;
  --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}