// ============================================================ // BessProofMobile — "Proof in numbers" (Commercial Battery Storage · Wise Blue) // Desktop section reproduces the approved Battery Storage infographic // (payback vs. long-term resiliency timeline, demand-charge share bar, // project IRR range slider). A purpose-built MOBILE layout mirrors the // approved AuditFinancial / SolProofStrip mobile pattern: monogram wash, // eyebrow + 2-line headline, blocked sections with mono labels, // accent-edged cards, and the desktop's split-bar + range-bar visuals. // ============================================================ const BESS_AMBER = '#D4A24C'; const BESS_GREEN = '#7FA88A'; const BessProofMobile = () => { // Timeline: YEAR 0 → YEAR 10 // Payback band 0 → 6 yrs (60% of bar, amber stripe) // Longterm operational resil. 6 → 10 yrs (40% of bar, green) const PAYBACK_PCT = 40; const TICKS = [ { label: 'YEAR 0', pos: 0 }, { label: 'YR 2', pos: 20 }, { label: 'YR 4', pos: 40 }, { label: 'YR 6', pos: 60 }, { label: 'YR 8', pos: 80 }, { label: 'YEAR 15', pos: 100 } ]; return ( <> {/* ============================================================ DESKTOP / TABLET (≥ 900px) — approved editorial dashboard ============================================================ */}
{/* Faint monogram watermark */} {/* Charge-pulse strip — animated horizontal line, runs across the top */}
{/* ============================================================ MOBILE (< 900px) — purpose-built vertical layout ============================================================ */}
{/* Subtle monogram watermark, dialled way back for small screens */}
{/* Header */}
Proof in numbers

Short pay-back.
Long-term resilience.

Commercial battery storage reduces operating costs, improves energy flexibility, and generates attractive long-term returns under current Canadian utility and incentive structures.

{/* Lifecycle — compact proportional ribbon + two accent-edged cards */}
15-year window Yr 0 → 15
{/* Compact ribbon — same chart logic as desktop, scaled for mobile */}
Yr 0 Yr 6 Yr 15
Payback
4–6 yrs

Payback driven by peak-demand reduction, grid-service revenue, and stacked Canadian incentives.

Longterm operational resiliency
10–15 year cycle warranty

Battery systems are built for daily cycling and long-term use, with warranty-backed performance across the project lifecycle.

{/* Proof points — two stacked cards */}
What it returns
Demand charges · share of C&I bill
30–50%
targeted by storage
Demand · 40
Energy · 60
Project IRR · modelled returns
12–25%
internal rate of return
{/* Display toggle + mobile styles */} ); }; Object.assign(window, { BessProofMobile });