/* ============================================
   Design Tokens -- True North Fund
   ============================================ */

:root {
  /* Colors */
  --color-cream: #fcfbf9;
  --color-charcoal: #171717;
  --color-indigo: #4338ca;
  --color-indigo-light: #818cf8;
  --color-border: #e5e5e5;
  --color-text-muted: #737373;

  /* Sector card tints */
  --tint-ai-infra: #dbeafe;
  --tint-defi: #ede9fe;
  --tint-applied-ai: #d1fae5;
  --tint-tokenized: #fef3c7;
  --tint-dev-tools: #fee2e2;
  --tint-data-infra: #f0fdf4;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Type scale */
  --text-hero: clamp(4rem, 9vw, 11rem);
  --text-h1: clamp(2.5rem, 5vw, 5rem);
  --text-h2: clamp(2rem, 3.5vw, 3.5rem);
  --text-h3: clamp(1.5rem, 2vw, 2rem);
  --text-body: clamp(1rem, 1.1vw, 1.125rem);
  --text-small: clamp(0.8125rem, 0.9vw, 0.875rem);
  --text-mono: clamp(0.625rem, 0.75vw, 0.875rem);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 720px;
  --header-height: 80px;
  --border-radius: 1rem;

  /* Motion */
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 300ms;
  --duration-medium: 600ms;
  --duration-slow: 1000ms;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(67, 56, 202, 0.06);
  --shadow-card-hover: 0 16px 48px rgba(67, 56, 202, 0.1);
}
