/* ================================
   DESIGN TOKENS — BIZOPPZ
================================ */

:root {
  /* Typography */
  --font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;

  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;

  /* Brand
  --brand-primary: #1f3cff;
  --brand-secondary: #162fcf; */

  /* ===== BRAND CORE (SOURCE OF TRUTH) ===== */
  --brand-blue: #002840; /* EXACT logo blue */

  /* Semantic aliases (used everywhere) */
  --brand-primary: var(--brand-blue);
  --brand-secondary: var(--brand-blue);
  --brand-accent: var(--brand-blue);
}
