{# Inputs: cash_deployment_points: list[CashDeploymentPoint] -- period-scoped (free / pledged / invested) chart_head_kpis: ChartHeadKPIs -- inline panel-head numbers period_label: str -- "YTD 2026", "2024", "Lifetime" Renders a stacked-area chart of free cash + pledged cash + invested MTM. The total stack at any date equals total account value. Replaces the previous "cash balance + net contributed" two-line chart whose purpose was unclear. #} {% set has_data = cash_deployment_points and cash_deployment_points|length >= 2 %} {% set kpis = chart_head_kpis %}