feat(pitch-deck): Compliance Optimizer as 4th MOAT on USP slide + competitor fix
Some checks failed
Build pitch-deck / build-push-deploy (push) Successful in 1m12s
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-python-voice (push) Has been cancelled
CI / test-bqas (push) Has been cancelled
CI / test-go-consent (push) Has started running

USP Slide:
- 4 MOAT cards (was 3): added "Compliance Optimizer"
  "Not just allowed/forbidden but the maximum permissible configuration
  of every AI use case. Deterministic constraint optimization."
- Killer quote: "Everyone can say what is forbidden. Almost no one can
  say how far you can go without breaking it. That is our product."
- Grid: 3 cols → 2x2 for better readability

Executive Summary:
- Competitors: removed Invest column, larger font (9px → 10px)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-04-20 18:05:45 +02:00
parent 27d1c5ba9f
commit f7441ccba5

View File

@@ -161,7 +161,7 @@ export default function USPSlide({ lang }: USPSlideProps) {
<h3 className="text-xs font-bold text-white/40 uppercase tracking-wider mb-3 text-center"> <h3 className="text-xs font-bold text-white/40 uppercase tracking-wider mb-3 text-center">
{de ? 'Unser MOAT' : 'Our MOAT'} {de ? 'Unser MOAT' : 'Our MOAT'}
</h3> </h3>
<div className="grid md:grid-cols-3 gap-3"> <div className="grid md:grid-cols-2 gap-3">
<GlassCard hover={false} className="p-4 border-t-2 border-t-indigo-500"> <GlassCard hover={false} className="p-4 border-t-2 border-t-indigo-500">
<div className="flex items-center gap-2 mb-2"> <div className="flex items-center gap-2 mb-2">
<GitPullRequest className="w-4 h-4 text-indigo-400" /> <GitPullRequest className="w-4 h-4 text-indigo-400" />
@@ -184,6 +184,17 @@ export default function USPSlide({ lang }: USPSlideProps) {
: 'Instead of point-in-time audits: validation on every change (code, infrastructure, processes) with auditable evidence in real time.'} : 'Instead of point-in-time audits: validation on every change (code, infrastructure, processes) with auditable evidence in real time.'}
</p> </p>
</GlassCard> </GlassCard>
<GlassCard hover={false} className="p-4 border-t-2 border-t-amber-500">
<div className="flex items-center gap-2 mb-2">
<ArrowLeftRight className="w-4 h-4 text-amber-400" />
<h4 className="text-xs font-bold text-amber-400">Compliance Optimizer</h4>
</div>
<p className="text-xs text-white/50 leading-relaxed">
{de
? 'Nicht nur „erlaubt/verboten", sondern die maximal zulässige Ausgestaltung jedes KI-Use-Cases. Deterministische Constraint-Optimierung zeigt den Sweet Spot zwischen Regulierung und Innovation — ersetzt 20-200k EUR Anwaltskosten.'
: 'Not just "allowed/forbidden" but the maximum permissible configuration of every AI use case. Deterministic constraint optimization shows the sweet spot between regulation and innovation — replaces EUR 20-200k in legal fees.'}
</p>
</GlassCard>
<GlassCard hover={false} className="p-4 border-t-2 border-t-emerald-500"> <GlassCard hover={false} className="p-4 border-t-2 border-t-emerald-500">
<div className="flex items-center gap-2 mb-2"> <div className="flex items-center gap-2 mb-2">
<Shield className="w-4 h-4 text-emerald-400" /> <Shield className="w-4 h-4 text-emerald-400" />
@@ -197,6 +208,17 @@ export default function USPSlide({ lang }: USPSlideProps) {
</GlassCard> </GlassCard>
</div> </div>
</FadeInView> </FadeInView>
{/* Killer Quote */}
<FadeInView delay={0.5} className="mt-4 max-w-6xl mx-auto">
<div className="bg-gradient-to-r from-amber-500/10 to-indigo-500/10 border border-amber-500/20 rounded-xl px-5 py-3 text-center">
<p className="text-sm text-white/70 italic">
{de
? '„Jeder kann sagen, was verboten ist. Kaum jemand kann sagen, wie du maximal weit gehen kannst, ohne es zu brechen. Das ist unser Produkt."'
: '"Everyone can say what is forbidden. Almost no one can say how far you can go without breaking it. That is our product."'}
</p>
</div>
</FadeInView>
</div> </div>
) )
} }