/**
 * Beatmobile Design Tokens
 * 
 * Master token definitions for colors, typography, spacing, radius, transitions, and layout.
 * No arbitrary or hardcoded values should be used outside this token file.
 */

:root {
  /* Surface & Background */
  --bm-bg: #f7f7f5;
  --bm-surface: #ffffff;
  --bm-surface-soft: #f1f0eb;
  --bm-surface-dark: #111213;

  /* Inks & Text */
  --bm-ink: #111213;
  --bm-ink-secondary: #6e6e73;
  --bm-border: #e8e7e3;
  --bm-border-subtle: #f0efe9;

  /* Brand Accents */
  --bm-brand: #111213;
  --bm-brand-hover: #262729;
  --bm-accent: #9e7953;
  --bm-accent-light: #f5eee6;
  --bm-sale: #c2410c;
  --bm-success: #15803d;

  /* Spacing Scale */
  --bm-space-1: 4px;
  --bm-space-2: 8px;
  --bm-space-3: 12px;
  --bm-space-4: 16px;
  --bm-space-6: 24px;
  --bm-space-8: 32px;
  --bm-space-10: 40px;
  --bm-space-12: 48px;
  --bm-space-16: 64px;
  --bm-space-20: 80px;
  --bm-space-24: 96px;

  /* Border Radius */
  --bm-radius-sm: 8px;
  --bm-radius-md: 12px;
  --bm-radius-lg: 16px;

  /* Container & Layout */
  --bm-container: 1440px;
  --bm-header-height: 80px;
  --bm-topbar-height: 38px;

  /* Typography Stacks */
  --bm-font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --bm-font-editorial: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Font Weights */
  --bm-weight-regular: 400;
  --bm-weight-medium: 500;
  --bm-weight-semibold: 600;
  --bm-weight-bold: 700;

  /* Type Scale */
  --bm-text-xs: 0.75rem;
  /* 12px */
  --bm-text-sm: 0.875rem;
  /* 14px */
  --bm-text-base: 1rem;
  /* 16px */
  --bm-text-lg: 1.125rem;
  /* 18px */
  --bm-text-xl: 1.25rem;
  /* 20px */
  --bm-text-2xl: 1.5rem;
  /* 24px */
  --bm-text-3xl: 2rem;
  /* 32px */
  --bm-text-4xl: 2.5rem;
  /* 40px */
  --bm-text-5xl: 3.25rem;
  /* 52px */

  /* Line Heights */
  --bm-leading-tight: 1.15;
  --bm-leading-snug: 1.3;
  --bm-leading-normal: 1.5;
  --bm-leading-relaxed: 1.65;

  /* Subtle Elevation & Floating Cards */
  --bm-shadow-subtle: 0 1px 3px rgba(17, 18, 19, 0.03), 0 4px 12px rgba(17, 18, 19, 0.02);
  --bm-shadow-card: 0 2px 8px rgba(17, 18, 19, 0.04);
  --bm-shadow-card-hover: 0 12px 28px rgba(17, 18, 19, 0.08);
  --bm-shadow-dropdown: 0 8px 24px rgba(17, 18, 19, 0.08);

  /* Transitions */
  --bm-duration-fast: 150ms;
  --bm-duration-base: 220ms;
  --bm-ease-standard: cubic-bezier(0.2, 0, 0, 1);

  /* Accessibility & Focus */
  --bm-focus-ring: 0 0 0 2px var(--bm-surface), 0 0 0 4px var(--bm-brand);

  /* Z-Index Hierarchy */
  --bm-z-base: 1;
  --bm-z-nav: 50;
  --bm-z-overlay: 90;
  --bm-z-modal: 100;
}