What problem does it solve? Converting a designed HTML page to PDF often breaks fonts, pagination, and brand colors because most converters do not render CSS the way a browser does. This Skill uses headless Chromium to produce a PDF that matches the original artifact, with embedded fonts, running headers, page numbers, and a verification loop that proves the output before it ships. ## Core Features & Use Cases - Browser-faithful rendering: Uses Chromium via Playwright with print media emulation, preserving grid, flexbox, web fonts, and brand background colors. - Font embedding and pagination discipline: Inlines Google Fonts as base64 data URIs (Latin subsets only) and injects a conservative print stylesheet that prevents orphaned headings, split tables, and blank pages. - Automated verification: Checks content preservation, page density, font embedding via pdffonts, and text extractability, plus renders a page-1 preview PNG. - Use Case: You have a branded HTML report generated from Markdown and need a Letter-size PDF with a running header and page numbers for client delivery, without font substitution or orphaned pages. ## Quick Start Convert my branded report.html into a Letter-size PDF with a running header and page numbers, and show me a preview of the first page.