"use client"; import { useState } from "react"; const PANEL_ID = "how-it-works-panel"; export default function HowItWorks() { const [open, setOpen] = useState(false); return (
{open && (

why-agent {" "} runs a multi-phase investigation - It forms hypotheses, queries your data, tests alternatives, and self-critiques before reporting. Most investigations take 3-10 minutes.

)}
); }