/* colorplan — minimal baseline + brand tokens shared across demos */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; }
body {
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
canvas, svg, img { display: block; }

:root {
  /* Factory Yellow — de-lit average sampled from the real GF Smith stock photo */
  --fy: #E6CD18;
  --fy-deep: #D8B800;
  --ink: #231f20;   /* brand rich black (from lockup SVGs) */
  --paper: #ffffff;
  /* real 4K-derived Factory Yellow paper texture (the yellow ink IS yellow paper) */
  --fy-tex: url('../../assets/texture/paper-factory-yellow-2k.jpg');
}
