// ───────── App root ─────────

const App = () => {
  useReveal();
  return (
    <React.Fragment>
      <Atmosphere />
      <Header />
      <main>
        <Hero />
        <TrustStrip />
        <Problem />
        <Solution />
        <Services />
        <AISystems />
        <CaseStudy />
        <Founder />
        <Process />
        <WhyMLL />
        <FinalCTA />
      </main>
      <Footer />
    </React.Fragment>
  );
};

const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(<App />);
