> ## Documentation Index
> Fetch the complete documentation index at: https://sc-docs.deepidv.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Deepfake Detection Suite

> Enterprise-grade deepfake detection for financial institutions

> Comprehensive AI-powered deepfake detection engineered for the rigorous security and compliance requirements of global financial institutions.

export const SectionHeader = ({label, title, description, align = "left"}) => <div className="deepidv-section-header" style={{
  textAlign: align,
  alignItems: align === "center" ? "center" : "flex-start"
}}>
    {label && <p className="deepidv-section-label">{label}</p>}
    <h2 className="deepidv-section-title">{title}</h2>
    {description && <p className="deepidv-section-desc">{description}</p>}
  </div>;

export const FeatureGrid = ({cols = 3, children}) => <div className="deepidv-feature-grid" style={{
  "--grid-cols": cols
}}>
    {children}
  </div>;

export const FeatureCard = ({icon, title, description, href}) => {
  const inner = <div className="deepidv-feature-card">
      {icon && <div className="deepidv-feature-card-icon">
          <Icon icon={icon} size={20} />
        </div>}
      <div className="deepidv-feature-card-content">
        <h3 className="deepidv-feature-card-title">{title}</h3>
        {description && <p className="deepidv-feature-card-desc">{description}</p>}
      </div>
      {href && <div className="deepidv-feature-card-arrow">
          <Icon icon="arrow-right" size={14} />
        </div>}
    </div>;
  if (href) {
    return <a href={href} style={{
      textDecoration: "none",
      color: "inherit",
      display: "block",
      border: "none",
      boxShadow: "none"
    }}>
        {inner}
      </a>;
  }
  return inner;
};

<div style={{ display: "flex", alignItems: "center", gap: "2rem", padding: "1.5rem 2rem", background: "linear-gradient(135deg, #f8fafc 0%, #EBF4FE 100%)", borderRadius: "12px", marginBottom: "2rem", border: "1px solid #E5E7EB" }}>
  <img src="https://mintcdn.com/deepscdocs/pAgHq7_0x3WfIwso/logo/deepidv-logo.png?fit=max&auto=format&n=pAgHq7_0x3WfIwso&q=85&s=f191297cd05989a578fb9e6ea609d971" alt="deepidv" style={{ height: "36px" }} width="500" height="500" data-path="logo/deepidv-logo.png" />

  <span style={{ fontSize: "1.25rem", fontWeight: 600, color: "#9CA3AF" }}>x</span>

  <img src="https://mintcdn.com/deepscdocs/pAgHq7_0x3WfIwso/logo/standard-chartered-logo.png?fit=max&auto=format&n=pAgHq7_0x3WfIwso&q=85&s=ef4ca1251afe6ac13eabab37606198ad" alt="Standard Chartered" style={{ height: "36px" }} width="3840" height="1509" data-path="logo/standard-chartered-logo.png" />

  <span style={{ marginLeft: "auto", fontSize: "0.85rem", color: "#6B7280", fontWeight: 500 }}>Enterprise Partnership</span>
</div>

<SectionHeader
  label="The Challenge"
  title={
<>
  The Deepfake Threat to <span>Financial Services</span>
</>
}
  description="As generative AI capabilities advance, financial institutions face an escalating threat landscape. Deepfakes now enable sophisticated attacks across every channel — from remote customer onboarding to high-value transaction authorization."
/>

The risks are substantial and growing:

* **Remote onboarding fraud** — AI-generated faces bypass traditional liveness checks during account opening, enabling criminals to create fraudulent accounts at scale.
* **AI-generated documents** — Synthetic bank statements, forged identity documents, and fabricated financial records undermine the integrity of credit and lending decisions.
* **Synthetic identity attacks** — Entirely fabricated personas combining real and fake data circumvent conventional KYC screening, creating untraceable fraud vectors.
* **Voice cloning** — AI-replicated voices defeat phone-based authentication, exposing high-net-worth accounts and corporate treasury functions to social engineering.

***

<SectionHeader
  label="Our Solutions"
  title={
<>
  Enterprise Deepfake <span>Detection Products</span>
</>
}
  description="Three purpose-built products addressing deepfake threats across every stage of the customer lifecycle and operational workflow."
/>

<FeatureGrid cols={3}>
  <FeatureCard icon="video" title="Live Session Detection" description="Real-time deepfake detection during identity verification sessions. Analyzes live video feeds to identify AI face-swapping, synthetic overlays, and deepfake masks as they occur." href="/deepfake-detection/live-session-deepfake" />

  <FeatureCard icon="file-magnifying-glass" title="File Deepfake Analysis" description="Submit documents, images, audio, and video for comprehensive AI-generated content analysis. Detect manipulated financial documents, forged identity papers, and synthetic media." href="/deepfake-detection/file-deepfake-detection" />

  <FeatureCard icon="browser" title="DeepEye Browser Extension" description="Browser-based content authenticity scoring for compliance officers and fraud analysts. Provides real-time deepfake confidence indicators on any web content." href="/deepfake-detection/deepeye-overview" />
</FeatureGrid>

***

<SectionHeader
  label="Business Value"
  title={
<>
  Why It Matters for <span>Financial Institutions</span>
</>
}
/>

<FeatureGrid cols={2}>
  <FeatureCard icon="scale-balanced" title="Regulatory Compliance" description="Meet evolving KYC, AML, and anti-fraud regulatory requirements with AI-powered detection capabilities that satisfy examiner expectations and audit scrutiny." />

  <FeatureCard icon="shield-check" title="Fraud Prevention" description="Stop synthetic identity fraud, document forgery, and deepfake-based social engineering before they result in financial losses or reputational damage." />

  <FeatureCard icon="gauge-high" title="Operational Efficiency" description="Replace time-intensive manual review processes with automated deepfake detection that scales to meet transaction volumes without increasing headcount." />

  <FeatureCard icon="clipboard-list" title="Audit Trail" description="Maintain complete, immutable documentation of every detection event — confidence scores, signals, timestamps, and outcomes — for regulatory examination and internal audit." />
</FeatureGrid>

***

<CardGroup cols={2}>
  <Card title="Quick Start Guide" icon="rocket" href="/quickstart">
    Get up and running with deepidv and launch your first verification session.
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/sessions/create-session">
    Explore the full API documentation for session creation and deepfake detection endpoints.
  </Card>
</CardGroup>
