/* Font import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

/* tokens.css — Design tokens extracted from Figma file rm2yUXU3oxbckVjBuYZQ4S */
:root {
  /* Colors */
  --color-surface: #312d36;
  --color-surface-secondary: #221f26;
  --color-accent: #a481f0;
  --color-destructive: #ff5c5f;
  --color-text-primary: #ffffff;
  --color-text-secondary: #696374;
  --color-border: #45424a;
  --color-surface-elevated: #3b3746;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;

  /* Typography */
  --font-family-base: 'Inter', sans-serif;
  --font-size-body: 14px;
  --font-size-label: 12px;
  --font-size-heading: 16px;
  --font-size-display: 28px;
  --line-height-body: 1.5;
  --line-height-label: 1.4;
  --line-height-heading: 1.2;
  --line-height-display: 1.1;
  --font-weight-regular: 400;
  --font-weight-semibold: 600;

  /* Border Radius */
  --border-radius-sm: 2px;
  --border-radius-md: 4px;
  --border-radius-lg: 8px;

  /* Shadows */
  --shadow-sm: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
  --shadow-md: 0px 4px 5px 0px rgba(0, 0, 0, 0.20), 0px 3px 14px 0px rgba(0, 0, 0, 0.12), 0px 8px 10px 0px rgba(0, 0, 0, 0.14);
  --shadow-lg: 0px 9px 46px 0px rgba(0, 0, 0, 0.12), 0px 24px 38px 0px rgba(0, 0, 0, 0.14), 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}
