/* Privacy policy */

function PrivacyPage() {
  return (
    <SimplePage
      eyebrow="Legal · Privacy"
      title="Privacy policy"
      lede="What we collect, why, and what we promise never to do with it. Plain language."
      lastUpdated="May 27, 2026"
    >
      <h2>Who we are</h2>
      <p>
        Innoveev FZ-LLC ("Innoveev", "we", "us") is a product studio incorporated in Dubai with operating offices
        in Damascus, Istanbul and Tallinn. We operate this site at <strong>innoveev.com</strong> and are the
        controller of any personal data collected through it.
      </p>

      <h2>What we collect</h2>
      <ul>
        <li><strong>Form submissions</strong> — name, email, company, message, and any file you attach to our contact form. We only use these to reply.</li>
        <li><strong>Newsletter</strong> — email address only, if you subscribe. Unsubscribe link in every email.</li>
        <li><strong>Analytics</strong> — anonymous, aggregated page-view data via privacy-friendly analytics. No cross-site profile. You can disable this from the cookie banner.</li>
        <li><strong>Local browser storage</strong> — your theme, language and tweaks preferences, kept on your own device. We never read these from our servers.</li>
      </ul>

      <h2>What we never do</h2>
      <ul>
        <li>Sell or rent your data.</li>
        <li>Set third-party advertising or remarketing cookies.</li>
        <li>Track you across sites we don't operate.</li>
        <li>Use your message content to train any model.</li>
      </ul>

      <h2>Lawful basis</h2>
      <p>
        We process data on the basis of <em>contract</em> (replying to your enquiry), <em>legitimate interest</em>
        (running this website), or <em>consent</em> (analytics, newsletter). You may withdraw consent at any time.
      </p>

      <h2>Retention</h2>
      <p>
        Contact-form messages are kept for two years from your last reply, then deleted. Newsletter emails are
        kept until you unsubscribe. Analytics data is aggregated and rolled up monthly.
      </p>

      <h2>Your rights</h2>
      <p>
        Under GDPR (EU/UK), UAE PDPL, and equivalent laws — you can ask to access, correct, port, or delete the
        data we hold on you. Email <a href="mailto:privacy@innoveev.com">privacy@innoveev.com</a> and we'll act
        within 30 days.
      </p>

      <h2>Subprocessors</h2>
      <p>
        Today, our short list: email via a transactional provider (Postmark / Resend class), website hosting
        (Vercel / Fly), analytics (a privacy-friendly provider — Plausible class). We update this list when it
        changes; check back to see the current set.
      </p>

      <h2>Contact</h2>
      <p>
        Data protection lead: <a href="mailto:privacy@innoveev.com">privacy@innoveev.com</a>.
        Postal: Innoveev FZ-LLC, Dubai, UAE.
      </p>
    </SimplePage>
  );
}

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