// KYC, AML & Suitability product page
function KYCPage() {
  return (
    <Site>
      <PageHero
        breadcrumb={[{ label: "Product" }, { label: "KYC, AML & Suitability" }]}
        eyebrow="Product · KYC, AML & Suitability"
        title={<>Onboarding that <span className="gradient-text">passes audit</span> and converts.</>}
        sub="Configurable KYC and AML workflows, suitability assessments, sanctions and PEP screening, and document review queues — connected to your CRM, payments and trading platform."
        ctaPrimary={{ label: "Book a demo" }}
        ctaSecondary={{ label: "See workflows", href: "#workflows" }}
        visual={<KYCVisual/>}
      />

      <StatRow items={[
        { v: "79%", l: "Average auto-approval rate" },
        { v: "< 4 min", l: "Median document-to-decision" },
        { v: "100%", l: "Audit-trail coverage on every action" },
        { v: "12+", l: "Pre-integrated KYC and AML vendors" },
      ]}/>

      <FeatureGrid
        eyebrow="Capabilities"
        title="Every step a regulator asks about — automated and logged."
        features={[
          { t: "Document verification", d: "Passport, ID card, driver's license, utility bills. OCR + face match + liveness via Sumsub, Onfido, Veriff or your vendor." },
          { t: "Sanctions & PEP", d: "Continuous screening against OFAC, UN, EU, HMT, and PEP lists. Auto re-screen on a configurable schedule." },
          { t: "Suitability assessment", d: "Configurable questionnaires per jurisdiction with scoring, refusal logic and audit log of every change." },
          { t: "Source-of-funds", d: "Conditional SoF requests based on deposit amount, profile, or geography. Document upload, review, and approval flow." },
          { t: "Risk scoring", d: "Combine KYC outcome, geography, source, deposits, trading behavior into a continuous risk score per client." },
          { t: "AML monitoring", d: "Transaction monitoring rules, KYT for crypto, structuring detection, and SAR/STR drafting tools for compliance teams." },
          { t: "Manual review queue", d: "Triage, escalation, dual-approval, comments and decision history — all in one queue across all jurisdictions." },
          { t: "Re-KYC scheduling", d: "Periodic re-KYC by risk level, with automated reminders, document re-uploads, and re-screening." },
          { t: "Reports & exports", d: "Per-license, per-jurisdiction reporting templates. CySEC, FCA, ASIC, FSCA, ESMA, MiFID II — pre-shaped exports." },
        ]}
      />

      <SplitFeature
        eyebrow="Workflows"
        title="One workflow engine. Many jurisdictions."
        sub="Build the onboarding flow once; reuse it with overrides per jurisdiction. EU clients get MiFID II suitability, UK gets FCA appropriateness, offshore gets simplified — all from the same building blocks."
        points={[
          "Visual workflow editor for compliance teams",
          "Per-jurisdiction overrides without forking flows",
          "Live preview to test before pushing live",
          "Versioned, with rollback and approval history",
        ]}
        visual={<SecurityShieldVisual/>}
      />

      <SplitFeature
        eyebrow="Always on"
        title="Continuous monitoring, not annual paperwork."
        sub="Sanctions hits, suspicious deposits, large withdrawals, behavioral anomalies — all surface to the same queue with the right people tagged. Fewer surprises at audit time."
        points={[
          "Real-time sanctions and PEP rescreening",
          "Behavioral red-flag rules built for trading",
          "KYT for crypto on every deposit and withdrawal",
          "SAR / STR drafting templates per regulator",
        ]}
        visual={<ConnectorGridVisual/>}
        reverse
      />

      <FAQ items={[
        { q: "Which KYC providers do you support?", a: "Sumsub, Onfido, Veriff, Jumio, ComplyCube, IDnow, ShuftiPro, and others. We can also wrap your in-house verification flow as a vendor." },
        { q: "Do you handle suitability for EU MiFID II?", a: "Yes — pre-built MiFID II appropriateness and suitability questionnaires, with per-broker tuning, scoring rules, refusal flow, and full audit trail." },
        { q: "Can I customize risk scoring?", a: "Risk scoring is rule-based and weighted by you. Combine KYC, geography, deposit size, source, age of account, trading behavior — anything in the platform." },
        { q: "Are SAR / STR templates included?", a: "Yes. Templates aligned to FATF standards, plus regulator-specific shapes for the major jurisdictions our customers operate in." },
      ]}/>

      <CTASection
        title="Make compliance a moat, not a tax."
        sub="See how Antelope automates KYC and AML for your jurisdictions."
        primary={{ label: "Book a demo" }}
        secondary={{ label: "Talk to compliance", href: "pages/contact.html" }}
      />
    </Site>
  );
}

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