/* The portal's whole palette, type and scale. Nothing else may hard-code a colour.
   Flat by decision: one accent taken from the Teta logo, solid fills, a 1px line
   instead of a shadow — a report is read, not admired. */

/* Inter, self-hosted (never a Google Fonts <link> on a client site). Variable
   400–700; latin-ext is not optional — it carries ě š č ř ž ů and the Czech
   quotes. Both subsets are preloaded by the page shell. */
@font-face{font-family:"Inter";font-style:normal;font-weight:400 700;font-display:swap;
  src:url("../fonts/inter-latin.260c81a4759b.woff2") format("woff2");
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,
  U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}
@font-face{font-family:"Inter";font-style:normal;font-weight:400 700;font-display:swap;
  src:url("../fonts/inter-latin-ext.1ad231aac0a8.woff2") format("woff2");
  unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,
  U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,
  U+2C60-2C7F,U+A720-A7FF}

:root{
  --accent:#e1224a;          /* the Teta red — fills, the active tab, primary buttons */
  --accent-ink:#c41a41;      /* the same red as TEXT: #e1224a is only 4.3:1 on --bg    */
  --accent-soft:#fdecf0;
  --ink:#1b1b1f;
  --muted:#6b6b76;
  --off:#a9a9b4;             /* a control that is there but has nowhere to go          */
  --bg:#f6f6f8;
  --card:#fff;
  --line:#e4e4ea;
  --line-strong:#cfcfd8;
  --pos:#0f7a3d;             /* 5.4:1 on white, 4.8:1 on --pos-bg                      */
  --pos-bg:#e6f4ec;          /* a badge tint: KPI cells and pills                      */
  --pos-row:#f2fbf6;         /* a TABLE-ROW tint — every row carries one, so it whispers */
  --neg:#c0122f;             /* 6.2:1 on white, 5.3:1 on --neg-bg                      */
  --neg-bg:#fbe9ec;
  --neg-row:#fff4f6;
  --radius:10px;
  --radius-sm:6px;
  --font:"Inter",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
  --tap:150ms cubic-bezier(.2,.6,.3,1);
}

/* An author `display` rule would silently defeat el.hidden, and every collapsed
   card, panel and drill row on this site relies on it. */
[hidden]{display:none!important}
