const App = () => {
  React.useEffect(() => {
    if (window.initReveals) window.initReveals();
  }, []);

  return (
    <>
      <Nav />
      <Hero />

      {/* Thesis — single typographic moment, no decoration */}
      <section className="thesis" data-screen-label="Thesis">
        <div className="wrap">
          <h2>
            Windows unified software ownership.<br />
            Model OS unifies <span className="gradient">model ownership</span>.
          </h2>
        </div>
      </section>

      <Problem />
      <WhyNow />
      <Flywheels />
      <Product />
      <Traction />
      <Pricing />
      <Ask />
      <Footer />
    </>
  );
};

ReactDOM.createRoot(document.getElementById('root')).render(<App />);
