/* ==========================================================================
   variables.css — design tokens
   ========================================================================== */

:root {
  /* Brand */
  --primary-color: #915EE3;
  --primary-color-dark: #7541c9;
  --primary-color-darker: #5b3399;
  --primary-color-light: #ede4fb;
  --primary-color-lighter: #f6f2fd;
  --primary-color-contrast: #ffffff;

  /* Semantic */
  --color-success: #2f9e6e;
  --color-success-bg: #eaf7f1;
  --color-warning: #b8791a;
  --color-warning-bg: #fbf1e2;
  --color-error: #c14f4f;
  --color-error-bg: #fbeeee;
  --color-info: #3b7dd8;
  --color-info-bg: #eaf2fc;

  /* Neutrals */
  --color-ink: #241c33;
  --color-ink-soft: #4a4157;
  --color-body: #5c5468;
  --color-muted: #857d92;
  --color-border: #e6e1ef;
  --color-border-strong: #d3cbe3;
  --color-bg: #ffffff;
  --color-bg-soft: #faf9fc;
  --color-bg-alt: #f5f2fa;
  --color-white: #ffffff;

  /* Typography */
  --font-base: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 2.875rem;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.5rem;
  --space-8: 3rem;
  --space-9: 4rem;
  --space-10: 5.5rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(36, 28, 51, 0.06), 0 1px 1px rgba(36, 28, 51, 0.04);
  --shadow-md: 0 6px 16px rgba(60, 40, 100, 0.08), 0 2px 6px rgba(60, 40, 100, 0.06);
  --shadow-lg: 0 18px 40px rgba(60, 40, 100, 0.14), 0 4px 12px rgba(60, 40, 100, 0.08);
  --shadow-focus: 0 0 0 4px rgba(145, 94, 227, 0.25);

  /* Layout */
  --container-max: 1240px;
  --container-narrow: 760px;
  --header-height: 76px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 150ms var(--ease);
  --transition-base: 220ms var(--ease);
}
