╔════════════════════════════════════════════════════════════════════╗
║                                                                    ║
║     🎨 OLIVER ENTERPRISE PDF ACCESSIBILITY CHECKER                 ║
║                                                                    ║
║     Customized with Oliver branding + MAMP + venv support          ║
║                                                                    ║
╚════════════════════════════════════════════════════════════════════╝

📚 READ IN THIS ORDER FOR MAMP SETUP:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

1️⃣  OLIVER_CUSTOMIZATION.md ............... What changed (5 min)
    ↓ Summary of all Oliver-specific updates

2️⃣  MAMP_SETUP.md .......................... MAMP setup guide (15 min)
    ↓ Step-by-step MAMP configuration

3️⃣  Run: ./install_venv.sh ................ Auto-install (5 min)
    ↓ Creates venv and installs everything

4️⃣  START_HERE.md .......................... Full package overview
    ↓ Complete system documentation


🚀 SUPER QUICK START (10 MINUTES):
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

$ ./install_venv.sh
$ export ANTHROPIC_API_KEY="sk-ant-YOUR-KEY"
$ export GOOGLE_APPLICATION_CREDENTIALS="/path/to/creds.json"

Then copy to MAMP:
$ cp -r . /Applications/MAMP/htdocs/pdf-checker

Open: http://localhost:8888/pdf-checker/

Done! 🎉


✨ WHAT'S CUSTOMIZED:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

✅ Oliver Colors:  Black (#000000) + Yellow (#FFC407)
✅ Oliver Font:    Montserrat (all weights)
✅ Latest AI:      Claude Sonnet 4.5
✅ venv Support:   Automatic detection in api.php
✅ MAMP Ready:     No port conflicts, works out of the box


📁 KEY FILES:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

SETUP & DOCUMENTATION:
├── OLIVER_CUSTOMIZATION.md ......... What changed for Oliver
├── MAMP_SETUP.md ................... Complete MAMP guide
├── install_venv.sh ................. Auto-installer
└── START_HERE.md ................... Full documentation

APPLICATION (UPDATED):
├── index.html ...................... Oliver branding applied
├── api.php ......................... venv auto-detection
├── enterprise_pdf_checker.py ....... Claude Sonnet 4.5
└── requirements.txt ................ All dependencies

REFERENCE:
├── ENTERPRISE_README.md ............ Complete manual
├── ARCHITECTURE.md ................. System design
├── QUICKSTART.md ................... 5-min generic setup
└── [8 more documentation files]


🎨 OLIVER BRANDING DETAILS:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Primary Color:   #FFC407 (Yellow)
Secondary Color: #000000 (Black)
Font:            Montserrat (400, 600, 700)

Visual Elements:
• Black header with yellow border
• Yellow primary buttons
• Black/yellow score display
• High-contrast, professional design
• Fully accessible while on-brand


🤖 AI CONFIGURATION:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Model:  Claude Sonnet 4.5 (claude-sonnet-4-5-20250929)
Why:    Latest model, highest accuracy
Cost:   ~$0.015 per image (same as 3.5)
Bonus:  Also uses Google Cloud Vision for cross-validation


🐍 PYTHON VENV:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

✅ Isolated environment (no conflicts)
✅ Auto-detected by api.php
✅ Falls back to system Python if needed
✅ Easy to manage

Activate:   source venv/bin/activate
Deactivate: deactivate
Run:        python enterprise_pdf_checker.py file.pdf


💡 COMMON TASKS:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Test Python script:
$ source venv/bin/activate
$ python enterprise_pdf_checker.py sample.pdf
$ deactivate

Use web interface:
Just open: http://localhost:8888/pdf-checker/
(api.php handles venv automatically)

Add to MAMP:
$ cp -r . /Applications/MAMP/htdocs/pdf-checker
OR
$ ln -s $(pwd) /Applications/MAMP/htdocs/pdf-checker


🎯 NEXT STEPS:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

1. Read OLIVER_CUSTOMIZATION.md to see what changed
2. Read MAMP_SETUP.md for detailed instructions
3. Run ./install_venv.sh to set up venv
4. Set your API keys
5. Add to MAMP htdocs
6. Visit http://localhost:8888/pdf-checker/
7. Upload a PDF and test!


═══════════════════════════════════════════════════════════════════════

          🎨 Oliver-branded, Claude 4.5-powered, venv-ready! 🚀

═══════════════════════════════════════════════════════════════════════
