/* PriceMonk theme — the only file that differs between product sites.
   Structure lives in /shared/base.css. See its header for the contract.

   Derived from the ScrapeMonk reference ramp by rotating the hue to the
   PriceMonk teal and holding each step's lightness, then checking every
   text/background pair against WCAG AA. The brand teal is unchanged from the
   existing site: #2fd2be is the identity, and it scores 7.57:1 with the dark
   ink below. It fails badly with white ink (1.89:1) — which is exactly the
   defect the audit flagged as P0 on the old homepage — hence --btn-ink.

   Style guide (PriceMonk Style Guide, updated): Primary #2fd2be, Dark #0d2f2e,
   Light #bffff0. Tokens marked "guide" carry those values verbatim; the rest
   are tints and shades derived from them for surfaces, borders and text. */
:root {
  /* Brand ramp: action → mid accent → light accent */
  --brand: #2fd2be; /* guide Primary */
  --brand-rgb: 47, 210, 190;
  --brand-2: #2fd2be; /* links, numbers, featured borders: the Primary reads 8.9:1 on --bg, no softer tint needed */
  --brand-3: #bffff0; /* guide Light */

  /* Ink for text sitting ON --brand. PriceMonk's teal is light, so it takes
     dark ink; ScrapeMonk's mid-dark purple takes white. */
  --btn-ink: #0d2f2e; /* guide Dark */

  /* Dark surfaces */
  --bg: #141f1e;
  --bg-footer: #0f1a18;
  --surface: #1b2c2a;
  --surface-2: #172624;

  /* Borders, weakest → strongest */
  --border-subtle: #21312f;
  --border: #2a413e;
  --border-strong: #376c65;

  /* Text on dark, brightest → faintest */
  --ink: #f4f5f6;
  --ink-2: #e4f1ef;
  --ink-3: #add1cd;
  --ink-4: #9fc1bd;
  --ink-5: #81a7a2;
  --ink-6: #5f8681;
  --label: #a6e3db;

  /* Brand-tinted neutrals (re-derived per product, never reused) */
  --nav-bg: rgba(20, 31, 30, 0.82);
  --surface-raised: #213f3c;
  --ink-self: #c4dedb;
  --dot-on-cta: rgba(191, 255, 240, 0.18); /* guide Light */

  /* Inverted (light) panels: the guide Light with the guide Dark as ink, so
     they read as a lighter tone of the brand rather than white boxes.
     Dark on Light 12.8:1, body ink 6.6:1, ink on card 13.6:1 (AA). */
  --panel: #bffff0; /* guide Light */
  --panel-ink: #0d2f2e; /* guide Dark */
  --panel-ink-2: #1d5f58;
  --panel-accent: #0d2f2e; /* guide Dark */
  --panel-border: rgba(13, 47, 46, 0.14);
  --panel-card: rgba(255, 255, 255, 0.55);

  /* Big CTA band gradient */
  --cta-from: rgba(191, 255, 240, 0.35); /* guide Light */
  --cta-to: rgba(13, 47, 46, 0.9); /* guide Dark */
  --cta-ink: #0d2f2e; /* guide Dark */

  /* Sibling-product accents, used for hover on the MonkSuite strip */
  --accent-scrapemonk: #c182fd; /* each sibling's own guide Primary */
  --accent-tidymonk: #818bf9;
  --accent-matchmonk: #fc7186;
  --accent-pricemonk: #2fd2be;

  /* Type. Montserrat is what every product style guide specifies, so the estate
     follows the guides rather than monksuite.io, which uses Hanken Grotesk —
     a deliberate divergence from the hub, decided 2026-09-08. Space Mono stays
     for the eyebrow/label/price role: the guides name a primary typeface and
     say nothing about a mono, and that tracking is tuned for a monospace. */
  --font-body: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-display: var(--font-body); /* one sans; no separate display face */
  --font-mono: "Space Mono", ui-monospace, monospace;

  /* Layout. MonkSuite's .container is `max-width: 1180px; padding: 0 32px`
     (border-box), so its content column is 1180 - 2*32 = 1116px. Here the
     gutter sits on the section and --wrap caps the inner container, so --wrap
     is that *content* width, not the box width. 1116 + 32 reproduces
     monksuite.io's edges and column at every viewport. */
  --wrap: 1116px;
  --gutter: 32px;
  --nav-h: 70px;
}
