/* ─────────────────────────────────────────────────────────────────────────
   FBL Pitch — Shared Styles
   ─────────────────────────────────────────────────────────────────────────
   Imports the project-wide design tokens, then adds a global reset.
   Used by:  product-home.html, pitch-deck.html, faq.html,
             sales-pitch.html, product-profile.html, landing-page.html,
             internal-costs.html, internal-revenue.html,
             cht-fbl-privacypolicy.html, cht-fbl-termsofservice.html

   All tokens (colors, typography, spacing, etc.) are defined in
   css/tokens.css — the single source of truth shared with the React app.
   ───────────────────────────────────────────────────────────────────────── */

@import url('css/tokens.css');

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
