/* Zenith — design tokens (pro media studio + color) */

:root {
  --bg: #09090b;
  --bg-elevated: #111114;
  --surface: #18181c;
  --surface-hover: #1f1f24;
  --surface-raised: #1c1c21;

  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-hover: var(--border-strong);

  --text: #f2f2f4;
  --text-secondary: #9b9ba3;
  --text-tertiary: #65656e;

  /* Brand accent — warm coral + cinematic violet */
  --accent: #e85d5d;
  --accent-bright: #ff7878;
  --accent-violet: #8b7cf6;
  --accent-teal: #4ecdc4;
  --accent-muted: rgba(232, 93, 93, 0.12);
  --accent-soft: rgba(232, 93, 93, 0.16);
  --accent-glow: rgba(232, 93, 93, 0.35);
  --accent-on: #ffffff;

  --accent-gradient: linear-gradient(135deg, #e85d5d 0%, #c956a8 55%, #8b7cf6 100%);
  --accent-gradient-subtle: linear-gradient(135deg, rgba(232, 93, 93, 0.15) 0%, rgba(139, 124, 246, 0.1) 100%);
  --progress-gradient: linear-gradient(90deg, #e85d5d, #c956a8, #8b7cf6);

  --gold: #e8b86d;
  --danger: #ef4444;
  --success: #4ade80;
  --warning: #facc15;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --space-page: 24px;
  --header-height: 56px;
  --sidebar-width: 240px;

  --font-ui: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", ui-monospace, monospace;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 0.15s;
  --duration-normal: 0.25s;
  --duration-slow: 0.45s;

  /* Legacy aliases */
  --surface-solid: var(--surface);
  --muted: var(--text-secondary);
  --text-muted: var(--text-secondary);
  --font-body: var(--font-ui);
  --font-logo: var(--font-ui);
  --error: var(--danger);

  color-scheme: dark;
}
