/* Design tokens. Single source of truth for color, type and motion.
   New screens and components must reuse these vars, never hardcode. */
:root {
  --bg: #000000;
  --panel: #0a0a0a;
  --card: #1c1c1e;
  --row: #101013;
  --field: #2c2c2e;
  --accent: #ffffff;
  --accent-soft: #d4d4d4;
  --text: #ffffff;
  --muted: #a1a1a1;
  --line: #262626;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
}
