/*
  Palette — provenance: brand/LOGO XENDOR PNG.png (2000x2000, PNG colortype 2 / RGB truecolor,
  no alpha channel, fully opaque — no premultiplied-alpha resize needed).
  k-means (k=3, seed=0, 20000-sample) over decoded pixels, centroids snapped to the nearest
  real pixel coordinate in the source asset:
    black  -> centroid (0.07,0.09,0.05)   snapped to pixel (0,0)     rgb(0,0,0)
    white  -> centroid (253.0,252.6,252.9) snapped to pixel (594,639) rgb(255,255,255)
    green  -> centroid (93.9,201.0,68.5)  snapped to pixel (1227,633) rgb(95,202,69)
  Literals live only in this file; every other file consumes the custom properties below.
*/
:root {
  --x-black: #000000;
  --x-white: #FFFFFF;
  --x-green: #5FCA45;

  --x-green-dim: #3D8A2C;
  --x-surface: #0A0C0A;
  --x-surface-raised: #14170F;
  --x-border: #23281D;
  --x-text: var(--x-white);
  --x-text-dim: #A8AFA0;
  --x-text-faint: #6B7263;
  --x-danger: #E5484D;

  --x-font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --x-font-body: "Inter", system-ui, sans-serif;
  --x-font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --x-radius-sm: 8px;
  --x-radius-md: 14px;
  --x-radius-full: 999px;

  --x-tap-min: 44px;
}
