/**
 * ACG Native Solutions - Design Tokens
 * Elementor-ready: port these to theme Customizer or CSS variables
 */

:root {
  /* Colors - From PowerPoint (PDF structure) */
  --color-primary: #1e2761;
  --color-primary-light: #1e293b;
  --color-accent: #0891b2;
  --color-accent-hover: #0e7490;
  --color-text: #1e2761;
  --color-text-muted: #475569;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f7fa;
  --color-border: #e2e8f0;

  /* Typography - Corporate Trust (Lexend + Source Sans 3) */
  --font-heading: "Lexend", system-ui, -apple-system, sans-serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, sans-serif;

  /* Font sizes (scaled up ~15-20%) */
  --text-xs: 0.875rem;
  --text-sm: 1rem;
  --text-base: 1.125rem;
  --text-lg: 1.3rem;
  --text-xl: 1.5rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;

  /* Line heights */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1.25rem;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 250ms ease;

  /* Layout */
  --container-max: 72rem;
  --container-padding: 1.5rem;

  /* NATIVE Model circle colors (from PowerPoint) */
  --native-n: #0891b2;
  --native-a: #06b6d4;
  --native-t: #14b8a6;
  --native-i: #10b981;
  --native-v: #22c55e;
  --native-e: #84cc16;

  /* Dark theme tokens (used by .page-dark) */
  --color-dark-bg: #0c1225;
  --color-dark-bg-alt: #111b36;
  --color-dark-surface: rgba(255, 255, 255, 0.05);
  --color-dark-surface-hover: rgba(255, 255, 255, 0.08);
  --color-dark-text: #ffffff;
  --color-dark-text-muted: rgba(255, 255, 255, 0.6);
  --color-dark-text-subtle: rgba(255, 255, 255, 0.4);
  --color-dark-border: rgba(255, 255, 255, 0.15);
  --color-dark-border-hover: rgba(255, 255, 255, 0.25);
  --color-dark-border-glow: rgba(255, 255, 255, 0.08);
  --color-accent-glow: rgba(8, 145, 178, 0.2);

  /* Animation tokens */
  --animate-duration: 700ms;
  --animate-easing: cubic-bezier(0.16, 1, 0.3, 1);
}
