I need a mobile-first, single-page web form built entirely with Google Apps Script and HTML/CSS. Visitors will open it without signing in, snap one or more photos with their phone camera, and watch the form auto-populate basic personal-information fields thanks to client-side OCR handled by Tesseract.js. Once the user confirms or edits the data, the script should instantly: • create a version-stamped PDF in a clean A4 layout, • save both the PDF and the raw images to a designated Google Drive folder structure, and • email the finished PDF to a fixed address and to the user if they supply an email field. Everything must run inside Google’s environment—Apps Script, Drive, and Gmail—so no external hosting, servers, or third-party APIs are allowed. Acceptance criteria • Form loads quickly on mobile browsers and works offline-first where possible. • Tesseract.js runs in the browser; no server calls for OCR. • Personal-info fields are filled with >90 % accuracy for clear images. • PDF follows a readable A4 template and increments a revision number on each submission. • Drive and email operations complete within seconds of submission.