/* ==========================================================================
   Linkyy Design Tokens
   ========================================================================== */

:root {
  /* --- Brand Colors --- */
  --linkyy-coral: #E8593C;
  --linkyy-coral-hover: #D14A2F;
  --linkyy-coral-light: #FEF0ED;

  --linkyy-dark: #1E2432;
  --linkyy-dark-soft: #2A3040;

  /* --- Text Colors --- */
  --linkyy-text: #1E2432;
  --linkyy-text-secondary: #6B7280;
  --linkyy-text-muted: #9CA3AF;

  /* --- Surface Colors --- */
  --linkyy-surface: #ffffff;
  --linkyy-surface-muted: #f8f9fa;
  --linkyy-border: #e2e5ea;

  /* --- Semantic Colors --- */
  --linkyy-success: #16A34A;
  --linkyy-warning: #D97706;
  --linkyy-danger: #DC2626;

  /* --- Typography --- */
  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 1.875rem;   /* 30px */
  --text-4xl: 2.25rem;    /* 36px */
  --text-5xl: 3rem;       /* 48px */
  --text-6xl: 3.5rem;     /* 56px */

  /* --- Spacing Scale --- */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */

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

  /* --- Shadows --- */
  --shadow-sm: 0 1px 2px rgba(30, 36, 50, 0.06);
  --shadow-md: 0 4px 12px rgba(30, 36, 50, 0.08);
  --shadow-lg: 0 8px 24px rgba(30, 36, 50, 0.12);
  --shadow-xl: 0 16px 48px rgba(30, 36, 50, 0.16);

  /* --- Layout --- */
  --container-max: 1140px;
  --container-padding: var(--space-6);
  --section-padding: var(--space-24);

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