/* 360° Tour Studio — Design Tokens (single source of truth) */

:root {
  /* Surfaces */
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-elevated: #1c1c1c;
  --surface-card: #252525;
  --surface-input: #111111;

  /* Borders */
  --border: #222222;
  --border-hover: #2e2e2e;
  --border-focus: #3a3a3a;

  /* Text */
  --text: #f0f0f0;
  --text-secondary: #888888;
  --text-muted: #555555;
  --text-tertiary: #404040;

  /* Accent */
  --accent: #c8ff00;
  --accent-hover: #d4ff2a;
  --accent-active: #b8ef00;
  --accent-text: #0a0a0a;

  /* Destructive */
  --destructive: #ff4444;
  --destructive-hover: rgba(255, 68, 68, 0.12);

  /* Hotspots */
  --nav-hotspot: #ffffff;
  --info-hotspot: #64a0ff;
  --hotspot-hover: rgba(255, 255, 255, 0.1);

  /* Spacing scale (4px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-8: 48px;

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 10px;
  --radius-full: 999px;

  /* Typography */
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --text-xs: 11px;
  --text-sm: 12px;
  --text-base: 13px;
  --text-md: 14px;
  --text-lg: 16px;

  --label-tracking: 0.06em;
  --label-size: 10px;

  /* Layout */
  --header-height: 52px;
  --sidebar-left-width: 240px;
  --sidebar-right-width: 420px;
  --panel-pad: 16px;

  /* Motion */
  --duration-fast: 120ms;
  --duration-normal: 150ms;
  --duration-slow: 200ms;

  /* Aliases (compatibility) */
  --space: var(--space-2);
  --surface-2: var(--surface-elevated);
  --text-2: var(--text-secondary);
  --text-3: var(--text-muted);
  --radius: var(--radius-lg);
}
