// grittt landing — composition + mount.
function Landing() {
  return (
    <div style={{ background: L.bg, minHeight: '100vh' }}>
      <Nav />
      <Hero />
      <StakesSection />
      <ProblemSection />
      <ScreenCarousel />
      <AISection />
      <BuildSection />
      <ControlSection />
      <ChallengesSection />
      <FuelSection />
      <StrengthSection />
      <CoachSection />
      <DetoxSection />
      <FooterCTA />
    </div>
  );
}

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