/* OSINT v2 — design tokens. All visual values live here. */
:root {
  /* Colors — light theme */
  --paper: #F6F6F4;
  --paper-2: #FFFFFF;
  --ink: #0A0A0A;
  --neutral: #4B4B4B;
  --muted: #6E6E6E;
  --rule: #0A0A0A;
  --accent: #D90000;
  --focus: #0044FF;
  --success: #006622;
  --danger: #D90000;

  /* Typography */
  --font-heading: "Space Mono", monospace;
  --font-body: "DM Sans", sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.85rem;
  --text-base: 1rem;
  --text-lg: 1.1rem;
  --text-xl: clamp(1.8rem, 5vw, 3rem);
  --line-base: 1.45;

  /* Font weights */
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-bold: 700;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;

  /* Geometry */
  --radius: 0px;
  --border-width: 2px;
  --hairline: 1px;
  --focus-outline: 3px;
  --sidebar-width: 240px;
  --content-max-width: 980px;
  --card-col-min: 260px;

  /* Motion */
  --transition-fast: 150ms ease;
}

/* Dark theme: explicit toggle wins over system preference. */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #111111;
    --paper-2: #1A1A1A;
    --ink: #F0F0F0;
    --neutral: #B0B0B0;
    --muted: #888888;
    --rule: #F0F0F0;
    --accent: #FF2A2A;
    --focus: #5588FF;
    --success: #33AA55;
    --danger: #FF4444;
  }
}

html[data-theme="dark"] {
  --paper: #111111;
  --paper-2: #1A1A1A;
  --ink: #F0F0F0;
  --neutral: #B0B0B0;
  --muted: #888888;
  --rule: #F0F0F0;
  --accent: #FF2A2A;
  --focus: #5588FF;
  --success: #33AA55;
  --danger: #FF4444;
}
