"use client"; import Image from "next/image"; import { motion } from "framer-motion"; import { Shield, MessageSquareLock, FileSignature, Wallet, Building2, Landmark, HeartPulse, ShieldCheck, Factory, Bot, ArrowRight, ChevronRight, } from "lucide-react"; import { GlassCard } from "@/components/GlassCard"; import { GlowingButton } from "@/components/GlowingButton"; import { SectionWrapper, itemVariants } from "@/components/SectionWrapper"; import { AnimatedCounter } from "@/components/AnimatedCounter"; import { ParticleBackground } from "@/components/ParticleBackground"; /* ── Stagger helpers ── */ const heroStagger = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: 0.12, delayChildren: 0.2 }, }, }; const heroChild = { hidden: { opacity: 0, y: 50, filter: "blur(4px)" }, visible: { opacity: 1, y: 0, filter: "blur(0px)", transition: { duration: 0.8, ease: [0.16, 1, 0.3, 1] as const }, }, }; const platformPillars = [ { icon: Shield, title: "Identity", description: "Verify anyone, anywhere, in real time. Multi-factor authentication, biometric verification, and digital identity management at scale.", image: "/images/section-identity.jpg", accent: "from-accent to-accent-blue", }, { icon: MessageSquareLock, title: "Communication", description: "End-to-end encrypted messaging, video, and data exchange. Every conversation verified, every participant authenticated.", image: "/images/section-communication.jpg", accent: "from-accent-blue to-accent-violet", }, { icon: FileSignature, title: "Signatures", description: "Legally binding digital signatures with full audit trails. eIDAS-compliant, court-admissible, and instantly verifiable.", image: "/images/section-signatures.jpg", accent: "from-accent-violet to-accent", }, { icon: Wallet, title: "Payments", description: "Secure transaction authorization and payment verification. PSD2-compliant strong customer authentication built in.", image: "/images/section-payments.jpg", accent: "from-accent to-accent-violet", }, ]; const painPoints = [ { stat: "80%", title: "of breaches involve identity", description: "Stolen credentials remain the #1 attack vector. Passwords alone are not enough.", }, { stat: "$4.5M", title: "average cost of a data breach", description: "Organizations without unified trust infrastructure pay the highest price.", }, { stat: "67%", title: "of enterprises use 10+ security tools", description: "Fragmented security stacks create gaps, complexity, and integration nightmares.", }, ]; const industries = [ { icon: Landmark, name: "Banking & Finance" }, { icon: Building2, name: "Government" }, { icon: HeartPulse, name: "Healthcare" }, { icon: ShieldCheck, name: "Insurance" }, { icon: Factory, name: "Enterprise" }, { icon: Bot, name: "AI-First Companies" }, ]; export default function Home() { return ( <> {/* ════════════════════════════════════════════ HERO — Full-viewport cinematic entrance ════════════════════════════════════════════ */}
{/* Particle grid */} {/* ── UNBOXED hero image — 120% scale, bleeds off screen ── */} Digital trust ecosystem {/* Cyan tint overlay */}
{/* Cinematic spotlights */}
{/* Atmospheric glow orbs */}
{/* Bottom fade */}
{/* Content — text floats OVER the image */}
Trusted by 100M+ identities worldwide
One Platform.
Total Digital Trust.
Identity. Communication. Signatures. Payments. Everything your organization needs to build, verify, and maintain digital trust — in one platform. Book a Demo Explore the Platform
{/* ── Trust bar ── */}

Trusted by leading enterprises and governments worldwide

{[ "Deutsche Bank", "Bundesdruckerei", "T-Systems", "Allianz", "Commerzbank", ].map((name) => ( {name} ))}
{/* ════════════════════════════════════════════ PROBLEM — "Digital Trust Is Broken" ════════════════════════════════════════════ */}

The Problem

Digital Trust Is{" "} Broken

Organizations cobble together dozens of point solutions, creating security gaps, compliance nightmares, and terrible user experiences.

{painPoints.map((point) => (
{point.stat}

{point.title}

{point.description}

))}
{/* ════════════════════════════════════════════ PLATFORM — Four Pillars ════════════════════════════════════════════ */}

The Platform

Four Pillars of{" "} Digital Trust

One unified platform. Four essential capabilities. Zero fragmentation.

{platformPillars.map((pillar) => (
{/* Image fills entire card background */} {pillar.title} {/* Strong gradient overlay for readability */}
{/* Text pinned to bottom */}

{pillar.title}

{pillar.description}

))}
{/* ════════════════════════════════════════════ AI AGENT TEASER ════════════════════════════════════════════ */}
New: AI Agent Infrastructure

Built for Humans.
Ready for AI Agents.

As AI agents begin to act autonomously — signing documents, making payments, accessing systems — they need verifiable identities and trust infrastructure. KOBIL is ready.

Explore AI Agent Trust
AI Agents
{/* ════════════════════════════════════════════ NUMBERS ════════════════════════════════════════════ */}

Proven at Scale

Trust at{" "} Scale

{/* Divider line */}
{/* ════════════════════════════════════════════ INDUSTRY PREVIEW ════════════════════════════════════════════ */}

Industries

Trusted Across{" "} Every Industry

From regulated financial services to cutting-edge AI companies.

{industries.map((industry) => (

{industry.name}

))}
See All Industries
{/* ════════════════════════════════════════════ FINAL CTA ════════════════════════════════════════════ */}
{/* Ambient glow */}

Ready to Build{" "} Digital Trust ?

Join the organizations that trust KOBIL to secure their most critical digital interactions. Book a demo and see the platform in action.

Book a Demo Learn More
); }