/* assets/css/tokens.css */

:root {
  /* Typography */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-text: 'Chivo', system-ui, sans-serif;

  /* Scale */
  --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: 2.5rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;

  /* Line Height */
  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-loose: 1.75;

  /* Colors - Industrial, high contrast, non-generic */
  --bg-primary: #f4f4f0; /* Off-white / concrete */
  --bg-secondary: #e8e8e4;
  --bg-tertiary: #dcdcda;

  --bg-dark: #111111;
  --bg-dark-secondary: #222222;

  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-tertiary: #717171;
  --text-inverse: #f4f4f0;

  --accent-primary: #d32f2f; /* Strong alert red */
  --accent-hover: #b71c1c;
  --accent-muted: rgba(211, 47, 47, 0.1);

  --border-light: #dcdcda;
  --border-dark: #333333;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Borders / Layout */
  --radius-none: 0;
  --container-max: 1200px;
  --content-max: 800px;

  /* Breakpoints for reference (used in media queries) */
  /* xs: 360, sm: 768, md: 1024, lg: 1440 */
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-VariableFont_wght.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Chivo';
  src: url('../fonts/Chivo-VariableFont_wght.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
