/* aerobis design tokens
   Shared by every document on static.aerobis.com - guide, manuals, tools.
   Change a colour here and it changes everywhere.
   Accent is the aerobis blue #00B5F7; the light theme darkens it to #007ab0
   so it still passes contrast on a white background. */

:root{
  --bg:#000000; --bg-elev-1:#0b0b0d; --bg-elev-2:#141418; --bg-elev-3:#1c1c22;
  --border:#26262d; --border-strong:#3a3a44;
  --text:#f2f2f4; --text-muted:#9a9aa6; --text-dim:#6b6b76;
  --accent:#00B5F7; --accent-soft:rgba(0,181,247,0.12); --accent-glow:rgba(0,181,247,0.38);
  --success:#3ecf8e; --warning:#f5b800; --danger:#ff4d4f;
  --plant:#3ecf8e; --plant-soft:rgba(62,207,142,0.12);
  --radius:14px; --radius-sm:8px;
  --shadow:0 20px 60px rgba(0,0,0,0.5);
  --font:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  --mono:ui-monospace,"SF Mono",Menlo,Consolas,monospace;
}
html[data-theme="light"]{
  --bg:#fafafb; --bg-elev-1:#ffffff; --bg-elev-2:#f3f3f5; --bg-elev-3:#e9e9ed;
  --border:#e2e2e8; --border-strong:#c8c8d2;
  --text:#1a1a1f; --text-muted:#55555f; --text-dim:#8a8a94;
  --accent:#007ab0; --accent-soft:rgba(0,122,176,0.10); --accent-glow:rgba(0,122,176,0.25);
  --plant:#1c8f5e; --plant-soft:rgba(28,143,94,0.10);
  --shadow:0 20px 60px rgba(0,0,0,0.08);
}
*{box-sizing:border-box;margin:0;padding:0}
[hidden]{display:none!important}
html{scroll-behavior:smooth;scroll-padding-top:24px}
body{background:var(--bg);color:var(--text);font-family:var(--font);font-size:16px;line-height:1.65;-webkit-font-smoothing:antialiased}
::selection{background:var(--accent-soft);color:var(--text)}
a{color:var(--accent)}