@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* Hallmark Midnight Theme (Anchor Hue: 260) */
  --color-paper:    oklch(14% 0.008 260);
  --color-paper-2:  oklch(18% 0.010 260);
  --color-rule:     oklch(30% 0.008 260);
  --color-neutral:  oklch(78% 0.010 260); /* Brighter grey for readability */
  --color-muted:    oklch(62% 0.008 260); /* Dimmer grey */
  --color-ink:      oklch(96% 0.006 260);
  --color-accent:   oklch(75% 0.15 200); /* Cyan */
  --color-focus:    oklch(70% 0.19 200);
  
  /* Additional Web3 acccents */
  --color-success:  oklch(75% 0.15 150);
  --color-error:    oklch(65% 0.20 25);
  --color-warn:     oklch(80% 0.15 80);

  /* Typography */
  --font-display: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-outlier: 'JetBrains Mono', 'Fira Code', monospace;

  /* Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-display: clamp(2.5rem, 6vw, 4rem);

  /* Hallmark Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}
