feat: Neue Produktseite AegisSight Monitor unter /vorschau/

Produktfokussierte Landing Page mit:
- Hero: Klare Produktbotschaft und CTAs
- Problem/Solution: Warum OSINT-Automation nötig ist
- Features: 6 Kernfähigkeiten des Monitors
- Live-Demos: 3 Lagen-Cards (Iran live + 2 Platzhalter)
- Trust-Signale: Made in Germany, DSGVO, Hosting DE
- Light-Mode Design mit Navy/Gold Akzenten
- Live-Daten-Fetch aus /lagen/iran-konflikt/data/current.json
- Responsive (Desktop/Tablet/Mobile)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Dieser Commit ist enthalten in:
Claude Code
2026-04-06 17:38:18 +02:00
Ursprung 816d2a3a30
Commit aa6da557e4
3 geänderte Dateien mit 1067 neuen und 203 gelöschten Zeilen

Datei anzeigen

@@ -3,223 +3,258 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AegisSight - Vorschau</title>
<title>AegisSight Monitor - Echtzeit-Lagebilder aus offenen Quellen</title>
<meta name="robots" content="noindex, nofollow, noarchive">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<style>
@font-face {
font-family: 'Inter';
src: url('/assets/fonts/Inter-Regular.woff2') format('woff2');
font-weight: 400;
}
@font-face {
font-family: 'Inter';
src: url('/assets/fonts/Inter-SemiBold.woff2') format('woff2');
font-weight: 600;
}
@font-face {
font-family: 'Inter';
src: url('/assets/fonts/Inter-Bold.woff2') format('woff2');
font-weight: 700;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
background: #0A1832;
color: #E8E8E8;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.container {
text-align: center;
padding: 2rem;
max-width: 600px;
}
.logo {
width: 80px;
height: 80px;
margin: 0 auto 2rem;
}
.logo img {
background: #fff;
border-radius: 12px;
padding: 6px;
width: 100%;
height: 100%;
}
h1 {
font-size: 2rem;
font-weight: 700;
color: #C8A851;
margin-bottom: 1rem;
letter-spacing: 0.02em;
}
p {
font-size: 1.1rem;
line-height: 1.6;
color: #A0A8B8;
margin-bottom: 0.5rem;
}
.divider {
width: 60px;
height: 2px;
background: #C8A851;
margin: 1.5rem auto;
opacity: 0.6;
}
.badge {
display: inline-block;
padding: 0.4rem 1.2rem;
border: 1px solid rgba(200, 168, 81, 0.3);
border-radius: 20px;
color: #C8A851;
font-size: 0.85rem;
font-weight: 600;
letter-spacing: 0.05em;
text-transform: uppercase;
margin-top: 1.5rem;
}
/* Login Gate */
#login-gate {
text-align: center;
padding: 2rem;
max-width: 400px;
}
#login-gate h1 {
font-size: 1.6rem;
margin-bottom: 0.5rem;
}
#login-gate p {
font-size: 0.95rem;
margin-bottom: 1.5rem;
}
.pw-form {
display: flex;
gap: 0.5rem;
justify-content: center;
}
.pw-input {
padding: 0.7rem 1rem;
border: 1px solid rgba(200, 168, 81, 0.3);
border-radius: 6px;
background: rgba(255, 255, 255, 0.05);
color: #E8E8E8;
font-family: inherit;
font-size: 0.95rem;
width: 220px;
outline: none;
transition: border-color 0.2s;
}
.pw-input:focus {
border-color: #C8A851;
}
.pw-input::placeholder {
color: #5A6478;
}
.pw-btn {
padding: 0.7rem 1.2rem;
border: none;
border-radius: 6px;
background: #C8A851;
color: #0A1832;
font-family: inherit;
font-size: 0.95rem;
font-weight: 600;
cursor: pointer;
transition: background 0.2s;
}
.pw-btn:hover {
background: #D4B96A;
}
.pw-error {
color: #E85454;
font-size: 0.85rem;
margin-top: 0.75rem;
display: none;
}
#content { display: none; }
</style>
<link rel="apple-touch-icon" href="/assets/images/logos/AegisSightLogo_NavyGold.svg">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Login Gate -->
<div id="login-gate">
<div class="logo">
<img src="/assets/images/logos/AegisSightLogo_NavyGold.svg" alt="AegisSight">
<!-- Navigation -->
<nav class="navbar" id="navbar">
<div class="nav-container">
<a href="#hero" class="nav-logo">
<img src="/assets/images/logos/Logo+Schrift_Rechts.png" alt="AegisSight" class="logo-img">
</a>
<ul class="nav-menu">
<li><a href="#solution">Monitor</a></li>
<li><a href="#features">Funktionen</a></li>
<li><a href="#demos">Live-Lagebilder</a></li>
<li><a href="#contact">Kontakt</a></li>
</ul>
<button class="mobile-menu-toggle" aria-label="Menü öffnen" aria-expanded="false">
<span></span><span></span><span></span>
</button>
</div>
<h1>Vorschau</h1>
<p>Zugang nur mit Passwort</p>
<form class="pw-form" onsubmit="return checkPassword(event)">
<input type="password" class="pw-input" id="pw-input" placeholder="Passwort" autofocus>
<button type="submit" class="pw-btn">Weiter</button>
</form>
<div class="pw-error" id="pw-error">Falsches Passwort</div>
</div>
</nav>
<!-- Actual Content (hidden until authenticated) -->
<div id="content">
<div class="container">
<div class="logo">
<img src="/assets/images/logos/AegisSightLogo_NavyGold.svg" alt="AegisSight">
<!-- Mobile Menu -->
<div class="mobile-menu" id="mobile-menu" aria-hidden="true">
<ul>
<li><a href="#solution">Monitor</a></li>
<li><a href="#features">Funktionen</a></li>
<li><a href="#demos">Live-Lagebilder</a></li>
<li><a href="#contact">Kontakt</a></li>
</ul>
</div>
<div class="mobile-overlay" id="mobile-overlay"></div>
<!-- Hero Section -->
<section class="hero" id="hero">
<div class="hero-bg"></div>
<div class="container hero-content">
<h1 class="hero-title">AegisSight Monitor</h1>
<p class="hero-claim">Echtzeit-Lagebilder aus offenen Quellen — <span class="gold">vollautomatisch.</span></p>
<p class="hero-sub">Aggregiert, analysiert und verifiziert Informationen aus öffentlich zugänglichen Quellen. Für Behörden und Sicherheitsorganisationen.</p>
<div class="hero-cta">
<a href="#demos" class="btn btn-primary">Live-Demo ansehen</a>
<a href="mailto:info@aegis-sight.de" class="btn btn-outline">Kontakt aufnehmen</a>
</div>
<h1>Vorschau</h1>
<p>Hier entsteht die neue Hauptseite.</p>
<div class="divider"></div>
<span class="badge">Work in Progress</span>
</div>
</div>
</section>
<script>
const HASH = 'feab257468bdb1b836bae5bc439db625d9a1b9a56ca60e0916ab04fb04c2ec31';
<!-- Problem Statement -->
<section class="section section-gray" id="problem">
<div class="container">
<h2 class="section-title">Warum manuelle OSINT-Auswertung nicht skaliert</h2>
<div class="grid-3">
<div class="problem-card">
<div class="problem-icon">
<img src="/assets/images/icons/world-globe.svg" alt="" width="40" height="40">
</div>
<h3>Tausende Quellen</h3>
<p>Hunderte Quellen in dutzenden Sprachen — kein Analyst überblickt alles gleichzeitig.</p>
</div>
<div class="problem-card">
<div class="problem-icon">
<img src="/assets/images/icons/clock.svg" alt="" width="40" height="40">
</div>
<h3>Zeitdruck</h3>
<p>Neue Meldungen im Minutentakt — manuelle Auswertung kostet Zeit, die Sie nicht haben.</p>
</div>
<div class="problem-card">
<div class="problem-icon">
<img src="/assets/images/icons/document.svg" alt="" width="40" height="40">
</div>
<h3>Informationsflut</h3>
<p>Kritische Informationen gehen in der Masse unter, Zusammenhänge bleiben unsichtbar.</p>
</div>
</div>
</div>
</section>
async function sha256(str) {
const buf = await crypto.subtle.digest('SHA-256', new TextEncoder().encode(str));
return Array.from(new Uint8Array(buf)).map(b => b.toString(16).padStart(2, '0')).join('');
}
<!-- Solution / Workflow -->
<section class="section" id="solution">
<div class="container">
<h2 class="section-title">So funktioniert der AegisSight Monitor</h2>
<div class="workflow">
<div class="workflow-step">
<div class="step-number">1</div>
<h3>Erfassen</h3>
<p>Hunderte Quellen werden kontinuierlich überwacht — Nachrichtenagenturen, Telegram, Social Media und mehr.</p>
</div>
<div class="workflow-connector"></div>
<div class="workflow-step">
<div class="step-number">2</div>
<h3>Analysieren</h3>
<p>Meldungen werden automatisch ausgewertet, Fakten geprüft und geografisch verortet.</p>
</div>
<div class="workflow-connector"></div>
<div class="workflow-step">
<div class="step-number">3</div>
<h3>Berichten</h3>
<p>Strukturierte Lagebilder mit Quellenbelegen, Faktencheck und Kartenansicht — in Echtzeit.</p>
</div>
</div>
</div>
</section>
function getCookie(name) {
const m = document.cookie.match(new RegExp('(?:^|; )' + name + '=([^;]*)'));
return m ? m[1] : null;
}
<!-- Features -->
<section class="section section-gray" id="features">
<div class="container">
<h2 class="section-title">Was der Monitor leistet</h2>
<div class="grid-3">
<div class="feature-card">
<div class="feature-icon">
<img src="/assets/images/icons/shield.svg" alt="" width="36" height="36">
</div>
<h3>Echtzeit-Monitoring</h3>
<p>Kontinuierliche Überwachung Ihrer definierten Quellen, rund um die Uhr.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<img src="/assets/images/icons/check-circle.svg" alt="" width="36" height="36">
</div>
<h3>Automatische Faktenprüfung</h3>
<p>Jede zentrale Aussage wird gegen unabhängige Quellen verifiziert.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<img src="/assets/images/icons/globe.svg" alt="" width="36" height="36">
</div>
<h3>Quellenanalyse</h3>
<p>Automatische Aggregation und Deduplizierung aus hunderten internationalen Quellen.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<img src="/assets/images/icons/location.svg" alt="" width="36" height="36">
</div>
<h3>Geografische Verortung</h3>
<p>Orte werden erkannt und auf einer interaktiven Karte dargestellt.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<img src="/assets/images/icons/document.svg" alt="" width="36" height="36">
</div>
<h3>Mehrsprachige Auswertung</h3>
<p>Quellen in verschiedenen Sprachen werden automatisch verarbeitet und zusammengeführt.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<img src="/assets/images/icons/clock.svg" alt="" width="36" height="36">
</div>
<h3>Strukturierte Lagebilder</h3>
<p>Übersichtliche Zusammenfassungen mit Quellenbelegen und Zeitverläufen.</p>
</div>
</div>
</div>
</section>
function setCookie(name, value, days) {
const d = new Date();
d.setTime(d.getTime() + days * 86400000);
document.cookie = name + '=' + value + ';expires=' + d.toUTCString() + ';path=/vorschau/;SameSite=Strict;Secure';
}
<!-- Live Demos -->
<section class="section" id="demos">
<div class="container">
<h2 class="section-title">Sehen Sie den Monitor in Aktion</h2>
<p class="section-subtitle">Echte Lagebilder, erstellt vom AegisSight Monitor — live und ohne Bearbeitung.</p>
<div class="grid-3 demos-grid">
<!-- Iran-Konflikt: Live -->
<div class="demo-card demo-card-live">
<div class="demo-badge">LIVE</div>
<h3 class="demo-title">Iran-Konflikt</h3>
<div class="demo-stats" id="demo-stats-iran">
<div class="demo-stat">
<span class="stat-value" id="stat-articles"></span>
<span class="stat-label">Artikel</span>
</div>
<div class="demo-stat">
<span class="stat-value" id="stat-sources"></span>
<span class="stat-label">Quellen</span>
</div>
<div class="demo-stat">
<span class="stat-value" id="stat-factchecks"></span>
<span class="stat-label">Faktenchecks</span>
</div>
</div>
<div class="demo-updated" id="demo-updated">
Daten werden geladen...
</div>
<a href="/lagen/iran-konflikt/" class="btn btn-primary btn-block">Live ansehen</a>
</div>
<!-- Platzhalter 2 -->
<div class="demo-card demo-card-placeholder">
<div class="demo-badge badge-soon">Demnächst</div>
<h3 class="demo-title">Weitere Lage</h3>
<p class="demo-placeholder-text">In Vorbereitung</p>
</div>
<!-- Platzhalter 3 -->
<div class="demo-card demo-card-placeholder">
<div class="demo-badge badge-soon">Demnächst</div>
<h3 class="demo-title">Weitere Lage</h3>
<p class="demo-placeholder-text">In Vorbereitung</p>
</div>
</div>
</div>
</section>
function unlock() {
document.getElementById('login-gate').style.display = 'none';
document.getElementById('content').style.display = 'flex';
document.body.style.minHeight = '100vh';
}
<!-- Trust Signals -->
<section class="section section-dark" id="trust">
<div class="container">
<div class="grid-3 trust-grid">
<div class="trust-card">
<img src="/assets/images/icons/german-flag.svg" alt="" width="48" height="28" class="trust-icon">
<h3>Made in Germany</h3>
<p>Entwickelt in Nordrhein-Westfalen</p>
</div>
<div class="trust-card">
<img src="/assets/images/icons/shield-check.svg" alt="" width="36" height="36" class="trust-icon">
<h3>DSGVO-konform</h3>
<p>Datenschutz nach europäischem Standard</p>
</div>
<div class="trust-card">
<img src="/assets/images/icons/lock.svg" alt="" width="36" height="36" class="trust-icon">
<h3>Hosting in Deutschland</h3>
<p>Alle Daten bleiben in Deutschland</p>
</div>
</div>
</div>
</section>
async function checkPassword(e) {
e.preventDefault();
const pw = document.getElementById('pw-input').value;
const hash = await sha256(pw);
if (hash === HASH) {
setCookie('vorschau_auth', hash, 30);
unlock();
} else {
document.getElementById('pw-error').style.display = 'block';
document.getElementById('pw-input').value = '';
document.getElementById('pw-input').focus();
}
return false;
}
<!-- Contact CTA -->
<section class="section" id="contact">
<div class="container cta-container">
<h2 class="section-title">Interesse am AegisSight Monitor?</h2>
<p class="cta-text">Sprechen Sie mit uns über Ihren Einsatzfall.</p>
<a href="mailto:info@aegis-sight.de" class="btn btn-primary btn-lg">Kontakt aufnehmen</a>
<p class="cta-email">info@aegis-sight.de</p>
</div>
</section>
// Check cookie on load
(async () => {
if (getCookie('vorschau_auth') === HASH) {
unlock();
}
})();
</script>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-info">
<p class="footer-company">AegisSight UG (haftungsbeschränkt)</p>
<p>Gladbacher Strasse 3-5, 40764 Langenfeld</p>
</div>
<div class="footer-links">
<a href="/impressum.html">Impressum</a>
<a href="/datenschutz.html">Datenschutz</a>
</div>
</div>
<p class="footer-copyright">&copy; 2026 AegisSight UG (haftungsbeschränkt). Alle Rechte vorbehalten.</p>
</div>
</footer>
<script src="js/app.js"></script>
</body>
</html>