/* ==========================================================================
   Design Tokens — Krevoncraft
   Palette: violet primary on a warm-white "workshop" background, with a
   single amber accent reserved for the signature signal line + hover glows.
   ========================================================================== */
:root {
  /* Colors — core */
  --color-primary: #7525da;
  --color-primary-dark: #5a1cab;
  --color-primary-light: #9a5cee;
  --color-primary-tint: #f2e9fd;

  --color-accent: #ffa826;
  --color-accent-dark: #e08a0f;

  --color-bg: #fbf9fe;
  --color-surface: #ffffff;
  --color-surface-alt: #f4eefc;
  --color-ink: #1b1329;
  --color-ink-soft: #4a3f5c;
  --color-muted: #766b8a;
  --color-border: #e7dff6;
  --color-border-strong: #d6c8f0;

  /* Typography */
  --font-display: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --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;
  --text-5xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-full: 999px;

  /* Shadow */
  --shadow-sm: 0 2px 8px rgba(37, 12, 77, 0.06);
  --shadow-md: 0 12px 32px rgba(37, 12, 77, 0.10);
  --shadow-lg: 0 24px 60px rgba(37, 12, 77, 0.16);
  --shadow-glow: 0 0 0 1px rgba(117, 37, 218, 0.08), 0 16px 40px rgba(117, 37, 218, 0.18);

  /* Layout */
  --container-width: 1180px;
  --header-height: 76px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-sm: 180ms;
  --duration-md: 320ms;
}
