/* Terms of service */

function TermsPage() {
  return (
    <SimplePage
      eyebrow="Legal · Terms"
      title="Terms of service"
      lede="The ground rules for using this site, and for engaging the studio."
      lastUpdated="May 27, 2026"
    >
      <h2>Site terms</h2>
      <p>
        This site is provided by Innoveev FZ-LLC. By using it you agree to use it lawfully, not attempt to
        circumvent its security, and not scrape its content for AI training without permission. The content,
        copy, design, and code on this site (excluding clearly-marked third-party material) is owned by
        Innoveev.
      </p>

      <h2>Engagement terms</h2>
      <p>
        Engagements are governed by a separate, signed Master Services Agreement (MSA) and Statement of Work
        (SOW). The summary below is informational, not contractual.
      </p>
      <h3>Discovery</h3>
      <p>
        A 2-week paid discovery sprint produces deliverables you own outright on payment, including any sketches,
        plans and recommendations, regardless of whether you continue with us.
      </p>

      <h3>Build phase</h3>
      <p>
        We bill milestones at fixed price. Each milestone has a defined scope and acceptance criteria. Material
        changes go through a written change-order with a revised price and timeline.
      </p>

      <h3>Ownership</h3>
      <p>
        All work product transfers to you on payment of each milestone. Background IP, open-source dependencies,
        and standard internal tooling remain ours; you receive perpetual licence to use them as part of the
        delivered product.
      </p>

      <h3>Confidentiality</h3>
      <p>
        We treat what you share as confidential by default. Either party may request a mutual NDA before
        engagement begins.
      </p>

      <h3>Warranties</h3>
      <p>
        We warrant our work for 30 days post-launch. Beyond that, a maintenance retainer is available.
      </p>

      <h3>Liability</h3>
      <p>
        Liability under any SOW is capped at the fees paid for the milestone in dispute. Neither party is liable
        for indirect or consequential losses.
      </p>

      <h3>Termination</h3>
      <p>
        Either party may terminate with 14 days' written notice. On termination, we hand over all completed work
        and bill any incomplete milestone pro-rata.
      </p>

      <h3>Governing law</h3>
      <p>
        Engagements default to <strong>DIFC law</strong> with arbitration in Dubai; we'll also sign under English
        law if the client prefers. Site terms are governed by UAE law.
      </p>

      <h2>Updates</h2>
      <p>
        We may update these terms. Material changes will be announced on the site for 30 days before they take
        effect.
      </p>
    </SimplePage>
  );
}

ReactDOM.createRoot(document.getElementById("root")).render(<TermsPage />);
