:root {
  /* Backgrounds */
  --bg-primary:    #0e0c09;
  --bg-elevated:   #161410;
  --bg-surface:    #1e1b16;

  /* Borders */
  --border:        #2e2a24;
  --border-accent: #4a3f2e;

  /* Text */
  --text-primary:   #f0ebe2;
  --text-secondary: #8a7e6e;
  --text-muted:     #4a4038;

  /* Accent (terracotta) */
  --accent:         #c4501a;
  --accent-soft:    rgba(196, 80, 26, 0.12);
  --accent-hover:   #d4601e;

  /* AI (violet) */
  --ai-glow:  #7c5cbf;
  --ai-soft:  rgba(124, 92, 191, 0.10);
  --ai-pulse: rgba(124, 92, 191, 0.30);

  /* Spacing (8pt grid) */
  --s1:  4px;
  --s2:  8px;
  --s3:  12px;
  --s4:  16px;
  --s5:  20px;
  --s6:  24px;
  --s8:  32px;
  --s10: 40px;
  --s12: 48px;
  --s16: 64px;

  /* Layout */
  --nav-w:   220px;
  --panel-w: 340px;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Inconsolata', 'Courier New', monospace;

  /* Borders / Radius */
  --radius-sm: 2px;
  --radius:    4px;
  --radius-lg: 8px;

  /* Transitions */
  --t: 200ms ease;
}

/* ─── AI pulsing border animation ─────────────────────────────────────── */
@keyframes ai-pulse {
  0%, 100% { border-color: var(--ai-glow); box-shadow: 0 0 0 0 var(--ai-pulse); }
  50%       { border-color: var(--ai-pulse); box-shadow: 0 0 12px 2px var(--ai-pulse); }
}

.ai-loading {
  animation: ai-pulse 2s ease-in-out infinite;
  border: 2px solid var(--ai-glow) !important;
}
