/* Results panel — sticky dark card with priority stats + full metrics */ function ResultsPanel({ result }) { const f = window.fmt; const fuel = window.SicosaEngine.FUELS[result.inputs.fuelType]; const profitBatchDisplay = result.inputs.includeFixedCosts ? result.profitPerBatchWithFixedAmd : result.profitPerBatchAmd; const profitBatchUsd = result.inputs.includeFixedCosts ? result.usd.profitPerBatchWithFixed : result.usd.profitPerBatch; const profitPositive = profitBatchDisplay > 0; // Priority outputs (top of panel) // 1. Cost per liter 2. Break-even selling price 3. Profit per batch return ( ); } function Section({ label }) { return (