'use client' import { useCallback } from 'react' import { Language, PitchData } from '@/lib/types' import { t, formatEur } from '@/lib/i18n' import GradientText from '../ui/GradientText' import FadeInView from '../ui/FadeInView' import GlassCard from '../ui/GlassCard' import { Download, Shield, Server, Brain, TrendingUp, FileText, Target, ScanLine, CheckCircle2, ClipboardCheck, GraduationCap, Cpu, Map, Users } from 'lucide-react' interface ExecutiveSummarySlideProps { lang: Language data: PitchData } export default function ExecutiveSummarySlide({ lang, data }: ExecutiveSummarySlideProps) { const i = t(lang) const es = i.executiveSummary const de = lang === 'de' const funding = data.funding const amount = funding?.amount_eur || 0 const amountLabel = amount >= 1_000_000 ? `${(amount / 1_000_000).toFixed(1)} Mio. EUR` : `${(amount / 1_000).toFixed(0)}k EUR` const market = data.market || [] const tam = market.find(m => m.market_segment === 'TAM') const sam = market.find(m => m.market_segment === 'SAM') const som = market.find(m => m.market_segment === 'SOM') const handleDownloadPdf = useCallback(() => { const printWindow = window.open('', '_blank') if (!printWindow) return const tamVal = tam ? formatEur(tam.value_eur, lang) : '—' const samVal = sam ? formatEur(sam.value_eur, lang) : '—' const somVal = som ? formatEur(som.value_eur, lang) : '—' const teamHtml = data.team?.map(m => `
${m.name}${de ? m.role_de : m.role_en}
` ).join('') || '' const useOfFundsHtml = funding?.use_of_funds?.map(f => `
${de ? f.label_de : f.label_en}${f.percentage}%
` ).join('') || '' printWindow.document.write(` BreakPilot ComplAI — Executive Summary

BreakPilot ComplAI

${de ? 'Compliance & Code-Security f\\u00fcr den Maschinenbau' : 'Compliance & Code Security for Machine Manufacturers'}
Pre-Seed ${funding?.target_date ? 'Q' + Math.ceil((new Date(funding.target_date).getMonth() + 1) / 3) + ' ' + new Date(funding.target_date).getFullYear() : 'Q4 2026'}

${de ? 'BreakPilot ComplAI ist eine DSGVO-konforme, datensouver\\u00e4ne KI-Plattform, die kontinuierliches Sicherheitsscanning mit intelligenter Compliance-Automatisierung vereint. Wir helfen Maschinenbauern, ihren Code abzusichern, Compliance skalierbar durchzusetzen und volle Datensouver\\u00e4nit\\u00e4t zu bewahren \\u2014 gest\\u00fctzt auf \\u00fcber 40.000 extrahierte Controls, KI-gest\\u00fctzte Triage und einen l\\u00fcckenlosen Audit-Trail.' : 'BreakPilot ComplAI is a GDPR-compliant, data-sovereign AI platform that combines continuous security scanning with intelligent compliance automation. We help machine manufacturers secure their code, enforce compliance at scale and maintain full data sovereignty \\u2014 powered by 40,000+ extracted controls, AI-driven triage and a complete audit trail.' }

${es.usp}: ${es.uspText}
${es.problem}
${es.problemText}
${es.solution}
${es.solutionText}
170+
${es.documents}
40.000+
${es.controls}
84
${es.regulations}
10
${es.industries}
761K
${es.linesOfCode}
${amountLabel}
${es.theAsk}

${de ? 'Compliance Scanner' : 'Compliance Scanner'}

${de ? 'Kontinuierlicher KI-Sicherheitsagent' : 'Continuous AI Security Agent'}
  • SAST + DAST + SBOM ${de ? '\\u2014 Vollumf\\u00e4ngliche Sicherheitstests bei jeder Code-\\u00c4nderung' : '\\u2014 Full security testing on every code change'}
  • ${de ? 'KI-gest\\u00fctztes Pentesting' : 'AI-powered Pentesting'} ${de ? '\\u2014 Kontinuierlich statt einmal im Jahr' : '\\u2014 Continuous instead of once a year'}
  • CE-Software-Risikobeurteilung ${de ? '\\u2014 F\\u00fcr Maschinenverordnung und Produktsicherheit' : '\\u2014 For Machinery Regulation and product safety'}
  • Jira-Integration ${de ? '\\u2014 Findings als Tickets mit Implementierungsvorschl\\u00e4gen' : '\\u2014 Findings as tickets with implementation suggestions'}
  • Audit-Trail ${de ? '\\u2014 L\\u00fcckenloser Nachweis von Erkennung bis Behebung' : '\\u2014 Complete evidence from detection to remediation'}

${de ? 'ComplAI Plattform' : 'ComplAI Platform'}

${de ? 'Souver\\u00e4ne Compliance-Infrastruktur' : 'Sovereign Compliance Infrastructure'}
  • ${de ? 'Compliance-Dokumente' : 'Compliance Documents'} ${de ? '\\u2014 VVT, TOMs, DSFA, L\\u00f6schfristen automatisch' : '\\u2014 RoPA, TOMs, DPIA, retention automatically'}
  • Audit Manager ${de ? '\\u2014 Abweichungen End-to-End: Rollen, Stichtage, Eskalation' : '\\u2014 Deviations end-to-end: roles, deadlines, escalation'}
  • Compliance LLM ${de ? '\\u2014 GPT f\\u00fcr Text und Audio, sicher in der EU gehostet' : '\\u2014 GPT for text and audio, securely hosted in EU'}
  • Academy ${de ? '\\u2014 Online-Schulungen f\\u00fcr GF und Mitarbeiter' : '\\u2014 Online training for management and employees'}
  • ${de ? 'BSI-Cloud DE / OVH FR' : 'BSI Cloud DE / OVH FR'} ${de ? '\\u2014 Keine US-SaaS, Jitsi, Matrix, volle Integration' : '\\u2014 No US SaaS, Jitsi, Matrix, full integration'}
${de ? 'Roadmap' : 'Roadmap'}
${de ? 'Q4 2026: Launch' : 'Q4 2026: Launch'}
${de ? 'Gr\\u00fcndung, erste Pilotkunden, Cloud-Plattform live' : 'Founding, first pilot customers, cloud platform live'}
${de ? 'Q2 2027: Scale' : 'Q2 2027: Scale'}
${de ? 'Vertriebsteam, Messen, Marketing-Offensive' : 'Sales team, trade fairs, marketing push'}
${de ? 'Q4 2027: Enterprise' : 'Q4 2027: Enterprise'}
${de ? 'Enterprise-Kunden, Distributor-Partnerschaften' : 'Enterprise customers, distributor partnerships'}
${de ? 'Q3 2029: Break-Even' : 'Q3 2029: Break-Even'}
${de ? 'Profitabilit\\u00e4t, Series A Vorbereitung' : 'Profitability, Series A preparation'}
${de ? 'Gesch\\u00e4ftsmodell' : 'Business Model'}
  • SaaS Cloud ${de ? '\\u2014 BSI DE / OVH FR, mitarbeiterbasiert' : '\\u2014 BSI DE / OVH FR, employee-based'}
  • ${de ? 'Modular w\\u00e4hlbar' : 'Modular choice'} ${de ? '\\u2014 Einzelne Module oder Full Compliance' : '\\u2014 Single modules or full compliance'}
  • ${de ? 'ROI ab Tag 1' : 'ROI from day 1'} ${de ? '\\u2014 Kunde spart 50.000+ EUR/Jahr' : '\\u2014 Customer saves EUR 50,000+/year'}
${de ? 'Zielm\\u00e4rkte' : 'Target Markets'}
  • ${de ? 'Maschinenbau KMU' : 'Manufacturing SMEs'} ${de ? '\\u2014 10-500 MA, Eigenentwicklung' : '\\u2014 10-500 emp., own development'}
  • ${de ? 'Regulierte Branchen' : 'Regulated Industries'} ${de ? '\\u2014 Gesundheit, Finanzen, KRITIS' : '\\u2014 Healthcare, finance, critical infra'}
  • ${de ? 'EU-Datensouver\\u00e4nit\\u00e4t' : 'EU Data Sovereignty'} ${de ? '\\u2014 Unternehmen die US-SaaS ablehnen' : '\\u2014 Companies rejecting US SaaS'}
${de ? 'Gr\\u00fcnder' : 'Founders'}
${teamHtml}
${es.theAsk} \\u2014 ${amountLabel}
TAM${tamVal}
SAM${samVal}
SOM${somVal}
${useOfFundsHtml}
${de ? 'Hinweis / Haftungsausschluss' : 'Disclaimer'}
${de ? 'Dieses Dokument dient ausschlie\\u00dflich Informationszwecken und stellt weder ein Angebot zum Verkauf noch eine Aufforderung zum Kauf von Anteilen oder Wertpapieren dar. Die enthaltenen Informationen wurden vom Team Breakpilot (Gr\\u00fcnderteam, noch keine Gesellschaft gegr\\u00fcndet) nach bestem Wissen und Gewissen erstellt, k\\u00f6nnen jedoch unvollst\\u00e4ndig sein und jederzeit ohne vorherige Ank\\u00fcndigung ge\\u00e4ndert werden. Es wird keine ausdr\\u00fcckliche oder konkludente Gew\\u00e4hr f\\u00fcr die Richtigkeit, Vollst\\u00e4ndigkeit oder Aktualit\\u00e4t der Inhalte \\u00fcbernommen. Es besteht keine Verpflichtung zur Aktualisierung der enthaltenen Informationen. Dieses Dokument enth\\u00e4lt zukunftsgerichtete Aussagen, die auf aktuellen Annahmen und Erwartungen beruhen und mit erheblichen Risiken und Unsicherheiten verbunden sind. Die tats\\u00e4chlichen Ergebnisse k\\u00f6nnen wesentlich von den dargestellten abweichen. Eine Investitionsentscheidung sollte ausschlie\\u00dflich auf Grundlage weitergehender, rechtlich verbindlicher Unterlagen sowie unter Hinzuziehung eigener rechtlicher, steuerlicher und finanzieller Beratung getroffen werden. Soweit gesetzlich zul\\u00e4ssig, wird jede Haftung des Team Breakpilot sowie seiner Mitglieder f\\u00fcr etwaige Sch\\u00e4den, die direkt oder indirekt aus der Nutzung dieses Dokuments entstehen, ausgeschlossen. Dieses Dokument ist vertraulich und ausschlie\\u00dflich f\\u00fcr den vorgesehenen Empf\\u00e4nger bestimmt. Eine Weitergabe, Vervielf\\u00e4ltigung oder Ver\\u00f6ffentlichung ist ohne vorherige schriftliche Zustimmung nicht gestattet.' : 'This document is for informational purposes only and does not constitute an offer to sell or a solicitation to purchase shares or securities. The information contained herein was prepared by Team Breakpilot (founding team, no company incorporated yet) to the best of their knowledge, but may be incomplete and subject to change without prior notice. No express or implied warranty is given for the accuracy, completeness or timeliness of the content. This document contains forward-looking statements based on current assumptions and expectations that involve significant risks and uncertainties. Actual results may differ materially. Any investment decision should be based solely on further legally binding documents and with the advice of independent legal, tax and financial counsel. To the extent permitted by law, all liability of Team Breakpilot and its members for any damages arising directly or indirectly from the use of this document is excluded. This document is confidential and intended solely for the designated recipient. Distribution, reproduction or publication without prior written consent is prohibited.' }
`) printWindow.document.close() setTimeout(() => printWindow.print(), 300) }, [lang, data, es, funding, tam, sam, som, amountLabel, de]) // === SLIDE VIEW === return (

{es.title}

{es.subtitle}

{/* Hero Description */}

{de ? <>BreakPilot ComplAI ist eine DSGVO-konforme, datensouveraene KI-Plattform, die kontinuierliches Sicherheitsscanning mit intelligenter Compliance-Automatisierung vereint. Wir helfen Maschinenbauern, ihren Code abzusichern, Compliance skalierbar durchzusetzen und volle Datensouveraenitaet zu bewahren. : <>BreakPilot ComplAI is a GDPR-compliant, data-sovereign AI platform that combines continuous security scanning with intelligent compliance automation. We help manufacturers secure their code, enforce compliance at scale and maintain full data sovereignty. }

{/* USP Banner */}
{es.usp}

{es.uspText}

{/* Problem + Solution */}

{es.problem}

{es.problemText}

{es.solution}

{es.solutionText}

{/* KPI Row */}
{[ { value: '170+', label: es.documents, icon: FileText, color: '#6366f1' }, { value: '40.000+', label: es.controls, icon: Shield, color: '#a78bfa' }, { value: '84', label: es.regulations, icon: Brain, color: '#60a5fa' }, { value: '10', label: es.industries, icon: Target, color: '#34d399' }, { value: '761K', label: es.linesOfCode, icon: Cpu, color: '#fbbf24' }, { value: amountLabel, label: es.theAsk, icon: TrendingUp, color: '#f472b6' }, ].map((kpi, idx) => (

{kpi.value}

{kpi.label}

))}
{/* Product Cards — Scanner + Platform */}

Compliance Scanner

{de ? 'Kontinuierlicher KI-Sicherheitsagent' : 'Continuous AI Security Agent'}

{[ de ? 'SAST + DAST + SBOM — bei jeder Code-Aenderung' : 'SAST + DAST + SBOM — on every code change', de ? 'KI-gestuetztes Pentesting — kontinuierlich statt jaehrlich' : 'AI-powered pentesting — continuous not annual', de ? 'CE-Software-Risikobeurteilung fuer Maschinenverordnung' : 'CE software risk assessment for Machinery Regulation', de ? 'Jira-Integration — Tickets mit Implementierungsvorschlaegen' : 'Jira integration — tickets with implementation suggestions', de ? 'Lueckenloser Audit-Trail von Erkennung bis Behebung' : 'Complete audit trail from detection to remediation', ].map((item, idx) => (

{item}

))}

ComplAI Plattform

{de ? 'Souveraene Compliance-Infrastruktur' : 'Sovereign Compliance Infrastructure'}

{[ de ? 'VVT, TOMs, DSFA, Loeschfristen — automatisch generiert' : 'RoPA, TOMs, DPIA, retention — auto-generated', de ? 'Audit Manager — Abweichungen End-to-End mit Eskalation' : 'Audit Manager — deviations end-to-end with escalation', de ? 'Compliance LLM — GPT fuer Text und Audio, EU-gehostet' : 'Compliance LLM — GPT for text and audio, EU-hosted', de ? 'Academy — Online-Schulungen fuer GF und Mitarbeiter' : 'Academy — online training for management and employees', de ? 'BSI-Cloud DE / OVH FR — Jitsi, Matrix, volle Integration' : 'BSI Cloud DE / OVH FR — Jitsi, Matrix, full integration', ].map((item, idx) => (

{item}

))}
{/* Roadmap */}

Roadmap

{[ { title: 'Q4 2026', desc: de ? 'Gruendung, Pilotkunden, Cloud live' : 'Founding, pilots, cloud live' }, { title: 'Q2 2027', desc: de ? 'Vertrieb, Messen, Marketing' : 'Sales, trade fairs, marketing' }, { title: 'Q4 2027', desc: de ? 'Enterprise, Distributoren' : 'Enterprise, distributors' }, { title: 'Q3 2029', desc: de ? 'Break-Even, Series A' : 'Break-even, Series A' }, ].map((item, idx) => (

{item.title}

{item.desc}

))}
{/* Bottom 4-column: Geschaeftsmodell + Zielmaerkte + Gruender + Funding */}

{de ? 'Geschaeftsmodell' : 'Business Model'}

SaaS Cloud — BSI DE / OVH FR

{de ? 'Modular' : 'Modular'} — {de ? 'Einzeln oder Full Compliance' : 'Single or full compliance'}

ROI — {de ? 'Kunde spart 50k+/Jahr' : 'Customer saves 50k+/year'}

{de ? 'Zielmaerkte' : 'Target Markets'}

{de ? 'Maschinenbau KMU' : 'Manufacturing SMEs'}

{de ? 'Regulierte Branchen' : 'Regulated Industries'}

{de ? 'EU-Datensouveraenitaet' : 'EU Data Sovereignty'}

{de ? 'Gruender' : 'Founders'}

{data.team?.slice(0, 4).map((m, idx) => (
{m.name} {de ? m.role_de : m.role_en}
))}

{es.theAsk} — {amountLabel}

TAM{tam ? formatEur(tam.value_eur, lang) : '—'}
SAM{sam ? formatEur(sam.value_eur, lang) : '—'}
SOM{som ? formatEur(som.value_eur, lang) : '—'}
{funding?.use_of_funds?.slice(0, 3).map((f, idx) => (
{de ? f.label_de : f.label_en} {f.percentage}%
))}
{/* Disclaimer */}

{de ? 'Hinweis / Haftungsausschluss' : 'Disclaimer'}

{de ? 'Dieses Dokument dient ausschliesslich Informationszwecken und stellt weder ein Angebot zum Verkauf noch eine Aufforderung zum Kauf von Anteilen oder Wertpapieren dar. Die enthaltenen Informationen wurden vom Team Breakpilot (Gruenderteam, noch keine Gesellschaft gegruendet) nach bestem Wissen und Gewissen erstellt, koennen jedoch unvollstaendig sein und jederzeit ohne vorherige Ankuendigung geaendert werden. Es wird keine ausdrueckliche oder konkludente Gewaehr fuer die Richtigkeit, Vollstaendigkeit oder Aktualitaet der Inhalte uebernommen. Dieses Dokument enthaelt zukunftsgerichtete Aussagen, die auf aktuellen Annahmen und Erwartungen beruhen und mit erheblichen Risiken und Unsicherheiten verbunden sind. Die tatsaechlichen Ergebnisse koennen wesentlich von den dargestellten abweichen. Eine Investitionsentscheidung sollte ausschliesslich auf Grundlage weitergehender, rechtlich verbindlicher Unterlagen sowie unter Hinzuziehung eigener rechtlicher, steuerlicher und finanzieller Beratung getroffen werden. Soweit gesetzlich zulaessig, wird jede Haftung des Team Breakpilot sowie seiner Mitglieder fuer etwaige Schaeden, die direkt oder indirekt aus der Nutzung dieses Dokuments entstehen, ausgeschlossen. Dieses Dokument ist vertraulich und ausschliesslich fuer den vorgesehenen Empfaenger bestimmt. Eine Weitergabe, Vervielfaeltigung oder Veroeffentlichung ist ohne vorherige schriftliche Zustimmung nicht gestattet.' : 'This document is for informational purposes only and does not constitute an offer to sell or a solicitation to purchase shares or securities. The information contained herein was prepared by Team Breakpilot (founding team, no company incorporated yet) to the best of their knowledge, but may be incomplete and subject to change without prior notice. No express or implied warranty is given for the accuracy, completeness or timeliness of the content. This document contains forward-looking statements based on current assumptions and expectations that involve significant risks and uncertainties. Actual results may differ materially. Any investment decision should be based solely on further legally binding documents and with the advice of independent legal, tax and financial counsel. To the extent permitted by law, all liability of Team Breakpilot and its members for any damages arising directly or indirectly from the use of this document is excluded. This document is confidential and intended solely for the designated recipient. Distribution, reproduction or publication without prior written consent is prohibited.' }

{/* PDF Download Button */}
) }