/* ==========================================================================
   MF Analyser — the Home page, on InvestVerdict's own palette
   --------------------------------------------------------------------------
   Home is the only page asked to look exactly like InvestVerdict's. The two
   pages are already built from the same template with the same markup and the
   same class names; the only thing that made them look different was
   mfa-theme.css repainting the page white.

   So this restores the tokens fund.css set in the first place — a warm cream
   page with white cards floating on it — and nothing else. The header, the
   search box and the footer keep the white chrome that every other page on
   this site uses, because one header everywhere was the point of building it.

   Loaded after mfa-theme.css, and only on home.php.
   ========================================================================== */
:root{
  --ink:#0d1526; --ink2:#2b3452; --mut:#5a637a;
  --line:#ded5c2; --line2:#c8bda3;
  --paper:#efe9db;          /* warm cream page — white cards float on it */
  --paper2:#ffffff;
  --brand:#b8871c; --brand-d:#6f550f; --brand-lt:#dcab3c;
  --navy:#0d1526; --navy2:#1b2745; --navy-soft:#e3e9f3;
  --up:#0a5f58; --up-bg:#ddf5ee; --dn:#a52b22; --dn-bg:#fbe6e2;
  --t-gold:#faf1dc; --t-blue:#e6eef8; --t-red:#faeae6; --t-green:#e2f6ef;
  --sh:0 1px 2px rgba(13,21,38,.08), 0 6px 20px rgba(13,21,38,.10);
  --sh-sm:0 1px 2px rgba(13,21,38,.07), 0 2px 8px rgba(13,21,38,.08);
}

/* mfa-theme.css paints html and body from --paper, so the token above is
   nearly enough on its own — but it names the colour outright in one place,
   and a token cannot win against a literal. */
html, body{ background: var(--paper); color: var(--ink) }
