// Replace with your Google Form "viewform" link after publishing the form.
const BOOK_DEMO_FORM_URL = 'https://docs.google.com/forms/d/e/1FAIpQLSfQtERCizMwuMVVraIIKNbNcsqO0ogKcJtOEINXbxERgoucDQ/viewform';

const Hero = () => (
  <section className="hero" id="top" data-screen-label="01 Hero">
    <div className="hero-glow" />
    <h1>
      Model <span className="gradient">OS</span>
    </h1>
    <p className="hero-sub">
      The operating layer for <strong>model co-creation</strong>.
    </p>
    <div className="hero-ctas">
      <a
        className="btn btn-primary"
        href={BOOK_DEMO_FORM_URL}
        target="_blank"
        rel="noopener noreferrer"
      >
        Book a demo
        <span className="arrow">→</span>
      </a>
      <a className="btn btn-ghost" href="#product">
        How it works
      </a>
    </div>
  </section>
);

window.Hero = Hero;
