:root {
  --font-sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: clamp(2.5rem, 5vw, 4.25rem);

  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-body: 1.65;
  --leading-loose: 1.8;

  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.04em;

  --slate-50: oklch(0.984 0.003 247);
  --slate-100: oklch(0.968 0.007 247);
  --slate-200: oklch(0.929 0.013 255);
  --slate-300: oklch(0.869 0.022 252);
  --slate-400: oklch(0.704 0.04 256);
  --slate-500: oklch(0.554 0.046 257);
  --slate-600: oklch(0.446 0.043 257);
  --slate-700: oklch(0.372 0.044 257);
  --slate-800: oklch(0.279 0.041 260);
  --slate-900: oklch(0.208 0.042 265);
  --slate-950: oklch(0.129 0.042 264);

  --color-bg: oklch(0.995 0 0);
  --color-surface: oklch(1 0 0);
  --color-surface-muted: var(--slate-100);
  --color-surface-strong: var(--slate-900);

  --color-text: var(--slate-950);
  --color-text-muted: oklch(0.500 0.046 257);
  --color-text-subtle: var(--slate-500);
  --color-text-inverse: var(--slate-50);

  --color-border: oklch(0.910 0.013 255);
  --color-border-strong: var(--slate-300);

  --color-action: var(--slate-900);
  --color-action-hover: var(--slate-800);
  --color-action-text: var(--slate-50);

  --color-action-secondary-bg: var(--color-surface);
  --color-action-secondary-hover: var(--slate-100);
  --color-action-secondary-text: var(--slate-900);
  --color-action-secondary-border: var(--color-border);

  --color-link: var(--slate-900);
  --color-link-hover: var(--slate-700);

  --color-hero-overlay: rgba(15, 23, 42, 0.42);
  --color-hero-overlay-strong: rgba(15, 23, 42, 0.62);
  --color-focus-ring: rgba(15, 23, 42, 0.18);

  --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;
  --space-32: 8rem;

  --radius-sm: 0.5rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 18px 50px rgba(15, 23, 42, 0.10);

  --container-max: 80rem;
  --content-max: 48rem;
  --narrow-max: 36rem;
  --header-height: 4rem;

  --duration-fast: 160ms;
  --duration-base: 240ms;
  --ease-standard: ease;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --duration-fast: 0ms;
    --duration-base: 0ms;
  }

  html {
    scroll-behavior: auto;
  }
}
