// ProductView — the /product page: "how Sekura works", in depth. Distinct from
// the landing page (which is conversion-focused). Owns the product mechanics —
// the pipeline, the attack graph, integrations, and the comparison — behind its
// own hero, then a scan CTA + FAQ.

function ProductView() {
  const { React } = window;
  return (
    <React.Fragment>
      <window.ProductHero />
      <window.PipelineAnatomy noScroll />
      <window.AttackGraphReveal noScroll />
      <window.IntegrationsBand />
      <window.ComparisonTable />
      <window.ProductFaq />
    </React.Fragment>
  );
}

window.ProductView = ProductView;
