// HomeView — the landing page.
//
// Ordered as an objection sequence rather than a feature tour. A security buyer
// arriving cold asks, in this order:
//
//   1. What is this, and can I try it?        → AppleHero (headline + scan field)
//   2. Is any of this real?                   → proof strip inside the hero
//   3. Why does this have to exist now?       → AsymmetryBand
//   4. What do I get, and why trust it?       → ReportBand (+ VerdictGate, the receipt)
//   5. Does it cover my stack?                → PillarTiles (+ the exploit chain)
//   6. What does it cost, and how do I start? → StartPaths
//
// The proof arguments ride inside the report band rather than taking sections of
// their own: they are evidence for the headline there, and giving each its own
// room pushed coverage 3,700px down the page.

function HomeView() {
  const { React } = window;

  return (
    <React.Fragment>
      <window.AppleHero />
      <window.AsymmetryBand />
      <window.ReportBand />
      <window.PillarTiles />

      {/* Public prices on the homepage is the wedge against demo-gated
          competitors, so this stays here rather than living only on /pricing/. */}
      <window.StartPaths
        eyebrow="four ways to start"
        heading="Start free. See the price."
        ctaArrow="›"
      />
      <window.ProductFaq />
    </React.Fragment>
  );
}

window.HomeView = HomeView;
