/* ============================================
   NEXOR 360 — Design Tokens
   Zulunity Proposal
   ============================================ */

:root {
  /* --- Zulunity Brand --- */
  --green-primary: #009A6A;
  --green-dark: #007A54;
  --green-medium: #60C6A4;
  --green-light: #D9F7EB;
  --green-very-light: #EEFFF7;
  --dark-text: #040816;
  --white: #FFFFFF;
  --gray-100: #F7F8FA;
  --gray-200: #E8ECF1;
  --gray-300: #CDD5DF;
  --gray-500: #6B7A90;
  --gray-700: #3D4A5C;

  /* --- Agent Colors (from drawio diagrams) --- */
  --preventa-bg: #E3F2FD;
  --preventa-border: #1565C0;
  --preventa-text: #0D47A1;

  --cfo-bg: #F3E5F5;
  --cfo-border: #7B1FA2;
  --cfo-text: #4A148C;

  --orq-bg: #FFF9C4;
  --orq-border: #F9A825;
  --orq-text: #E65100;

  --radar-bg: #E8F5E9;
  --radar-border: #2E7D32;
  --radar-text: #1B5E20;

  /* --- Layer Colors (architecture diagram) --- */
  --layer-experience: #E8F4FD;
  --layer-experience-border: #2196F3;
  --layer-api: #FCE4EC;
  --layer-api-border: #E91E63;
  --layer-ai: #F3E5F5;
  --layer-ai-border: #9C27B0;
  --layer-logic: #FFF3E0;
  --layer-logic-border: #FF9800;
  --layer-data: #E8F5E9;
  --layer-data-border: #4CAF50;
  --layer-infra: #FAFAFA;
  --layer-infra-border: #9E9E9E;

  /* --- State Machine Colors --- */
  --state-error: #FFCDD2;
  --state-error-border: #C62828;
  --state-retry: #FFE0B2;
  --state-retry-border: #E65100;

  /* --- Contract Type Colors --- */
  --type-string: #1565C0;
  --type-object: #7B1FA2;
  --type-enum: #E65100;
  --type-int: #2E7D32;
  --type-array: #00838F;

  /* --- Typography --- */
  --font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --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;

  --leading-tight: 1.25;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* --- 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;

  /* --- Layout --- */
  --sidebar-width: 260px;
  --content-max: 860px;
  --page-padding: 2rem;

  /* --- Borders --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* --- Shadows --- */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);

  /* --- Transitions --- */
  --ease-default: 200ms ease;
}
