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

   Palette from "Tidymonk Style Guide - updated" (2026-09): Primary #818bf9,
   Dark #1f1b4d, Light #b1cbff. The Tidymonk_Logo_V1 SVG is exactly two
   colours, #fff and #818bf9, so the guide Primary and the logo agree — the
   mismatch that made ScrapeMonk's buttons read as off-brand cannot happen
   here. Every pair below was measured, not eyeballed. */
:root {
  /* Brand ramp: action → mid accent → light accent */
  --brand: #818bf9; /* guide Primary — the logo's periwinkle */
  --brand-rgb: 129, 139, 249;
  --brand-2: #818bf9; /* links, numbers, featured borders: reads 6.0:1 on --bg */
  --brand-3: #b1cbff; /* guide Light */

  /* Dark surfaces. Navy-tinted rather than the guide Dark itself: #1f1b4d is
     too light and too saturated to sit behind a whole page, so it does the
     work it is good at — ink on brand, and ink on the light panels. */
  --bg: #141527;
  --bg-footer: #101121;
  --surface: #1e2038;
  --surface-2: #191b30;

  /* Borders, weakest → strongest */
  --border-subtle: #23253d;
  --border: #2e3150;
  --border-strong: #414678;

  /* Text on dark, brightest → faintest. On --bg: 16.5 / 14.8 / 9.4 / 7.9 /
     5.5 / 4.8:1. --ink-6 carries the 12px mono eyebrows, so it is set to clear
     AA at 4.76:1 rather than inheriting the 3.1:1 the two older themes ship —
     those want the same nudge, tracked separately. */
  --ink: #f4f5f6;
  --ink-2: #e6e8f5;
  --ink-3: #b3bad8;
  --ink-4: #a3abcc;
  --ink-5: #858db3;
  --ink-6: #7981ac;
  --label: #aab3e6;

  /* Inverted (light) panels: guide Light (#b1cbff) with guide Dark (#1f1b4d)
     as ink — a lighter tone of the brand, not white boxes. Dark on Light 9.7:1. */
  --panel: #b1cbff;
  --panel-ink: #1f1b4d;
  --panel-ink-2: #3b4079;
  --panel-accent: #1f1b4d;
  --panel-border: rgba(31, 27, 77, 0.16);
  --panel-card: rgba(255, 255, 255, 0.55);

  /* Brand-tinted neutrals (must be re-derived per product, not reused) */
  --nav-bg: rgba(20, 21, 39, 0.82);
  --surface-raised: #262a4a;
  --ink-self: #c3c8e3;
  --dot-on-cta: rgba(177, 203, 255, 0.18);

  /* Big CTA band gradient */
  --cta-from: rgba(129, 139, 249, 0.35);
  --cta-to: rgba(31, 27, 77, 0.9);
  --cta-ink: #3c4278;

  /* 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: #00b5d4;

  /* Ink for text sitting ON --brand. The guide Primary is light, so white would
     read 3.0:1 and fail; the guide Dark gives 5.3:1. Same shape as PriceMonk
     and ScrapeMonk, whose light brands take a dark ink for the same reason. */
  --btn-ink: #1f1b4d; /* guide Dark */

  /* Type. Montserrat per the product style guides — see the note in
     pricemonk/theme.css for why this diverges from monksuite.io. */
  --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;
}
