/* ===== CALCLY DESIGN SYSTEM ===== */
/* Single source of truth for all colors, fonts, sizes, spacing */
/* To change theme — edit ONLY this file */

/* ===== FONTS (local) ===== */
@font-face {
  font-family: 'Satoshi';
  src: url('/fonts/satoshi-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('/fonts/satoshi-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('/fonts/satoshi-700.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

:root {
  /* Colors — Brand */
  --color-primary: #0d3022;
  --color-primary-hover: #1b503a;
  --color-primary-light: #e6ebe8;

  /* Colors — Text */
  --color-text: #212b27;
  --color-text-muted: #45524a;
  --color-text-light: rgba(255, 255, 255, 0.7);

  /* Colors — Background */
  --color-bg: #ffffff;
  --color-bg-alt: #f7f7f7;
  --color-bg-dark: #0d3022;

  /* Colors — Status */
  --color-success: #2ecc71;
  --color-error: #c0392b;
  --color-warning: #f39c12;
  --color-info: #3498db;

  /* Colors — Border */
  --color-border: #e6ebe8;
  --color-border-light: #efefef;

  /* Typography — Fonts */
  --font-heading: 'Archivo', 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Typography — Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.85rem;
  --text-base: 0.9rem;
  --text-md: 0.95rem;
  --text-lg: 1.1rem;
  --text-xl: 1.4rem;
  --text-2xl: 2.2rem;
  --text-3xl: 3rem;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 100px;

  /* Border radius */
  --radius: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(13, 48, 34, 0.12);

  /* Layout */
  --container-max: 1200px;
  --header-height: 80px;
}
