/* BOT Farm design tokens — BUILD-SPEC.md §1. Source of truth; do not fork. */

:root {
  /* Brand — from the logo */
  --brand-green:         #26604c;
  --brand-green-pressed: #1d4c3c;
  --brand-green-700:     #16392d;
  --brand-green-400:     #6b9a86;
  --brand-green-300:     #a9c7ba;
  --brand-green-200:     #d3e3dc;
  --brand-green-100:     #eef4f1;

  /* Ground & ink */
  --ink:      #201e1d;
  --ground:   #f3f2f2;
  --surface:  #eae9e9;
  --muted:    #605d5d;
  --rule-strong: #201e1d;  /* 2px */
  --rule-cell:   #bab6b6;  /* 1px */
  --rule-soft:   #d7d3d3;  /* 1px, inside lists */

  --radius: 0; /* everywhere, no exceptions */

  --space-1: 4px;  --space-2: 8px;  --space-3: 12px;
  --space-4: 16px; --space-6: 24px; --space-8: 32px; --space-12: 48px;

  --font: "Archivo", system-ui, sans-serif;

  /* Type scale — BUILD-SPEC.md §1 table */
  --fs-display: 62px; --lh-display: 1.02; --ls-display: -0.028em;
  --fs-h1: 52px;       --lh-h1: 1.03;
  --fs-h2: 32px;       --lh-h2: 1.06;
  --fs-h3: 24px;
  --fs-h4: 18px;
  --fs-body: 16px;     --lh-body: 1.55;
  --fs-small: 14px;    --lh-small: 1.5;
  --fs-micro: 13px;
  --fs-label: 11px;    --ls-label: 0.08em;
}

@media (max-width: 640px) {
  :root {
    --fs-display: 34px;
    --fs-h1: 32px;
    --fs-body: 14px;
  }
}
