/* Acta Ventures — color tokens. Strictly monochrome + one red. */
:root {
  /* Base */
  --ink: #141416;        /* page background */
  --ink-raise: #1D1D20;  /* raised blocks/cards */
  --paper: #EDEDEB;      /* primary text */
  --muted: #85868A;      /* secondary text, small-caps labels */
  --acta-red: #B01C20;   /* THE brand color, sampled from logo */
  --acta-deep: #841317;  /* darker red step */
  --grey-block: #3A3A3E; /* mid grey, Effect A secondary blocks */

  /* Semantic aliases */
  --bg-page: var(--ink);
  --surface-card: var(--ink-raise);
  --text-body: var(--paper);
  --text-muted: var(--muted);
  --text-display-accent: var(--acta-red);
  --link: var(--acta-red);
  --link-hover: var(--acta-deep);
  --focus-ring: var(--acta-red);
  --border-hairline: rgba(237, 237, 235, 0.08);
}
