/* brand.css — colours, typography, and identity.
   This file is the only thing that changes between Logos deployments.
   Override it at runtime with: logos --brand-css /path/to/your/brand.css */

:root {
  /* Palette */
  --bg:                  #ffffff;
  --text:                #111111;
  --border:              #e2e2e2;
  --placeholder:         #9ca3af;

  /* Accent (buttons, links, cursor, citation bar) */
  --accent:              #1d4ed8;
  --accent-text:         #ffffff;

  /* Message bubbles */
  --user-bubble-bg:      #1d4ed8;
  --user-bubble-text:    #ffffff;
  --assistant-bubble-bg: #f3f4f6;
  --assistant-bubble-text: #111111;

  /* Citations */
  --citation-bg:         #f9fafb;
  --citation-text:       #374151;

  /* Input */
  --input-bg:            #ffffff;
  --input-text:          #111111;

  /* Typing indicator dots */
  --typing-dot:          #9ca3af;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
