feat: Vorschau-Seite v2 - Komplettes Redesign

- Hero mit rotierenden Hintergrund-Videos
- Live-Demo Karussell mit Lagebild-Textauszug + Weiterlesen
- Interaktive Leaflet-Karte mit Live-Markern
- Weichere Hintergrundfarben (kein hartes Weiss)
- SVG-Wellen-Divider zwischen Sektionen
- Trust-Section ersetzt durch Unser Versprechen (4 Cards)
- Quellenanalyse-Icon getauscht (cube statt globe)
- Keine Emdashes
- Deutsche Flagge korrekt angezeigt (kein Invert-Filter)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Dieser Commit ist enthalten in:
Claude Code
2026-04-06 18:07:29 +02:00
Ursprung f9a19a5153
Commit d4d54a59b8
3 geänderte Dateien mit 483 neuen und 848 gelöschten Zeilen

Datei anzeigen

@@ -1,722 +1,235 @@
/* AegisSight Monitor - Product Page (Light Mode) */ /* AegisSight Monitor - Product Page v2 (Light Mode) */
/* Fonts */ /* Fonts */
@font-face { @font-face { font-family:'Inter'; src:url('/assets/fonts/Inter-Regular.woff2') format('woff2'),url('/assets/fonts/Inter-Regular.ttf') format('truetype'); font-weight:400; font-display:swap; }
font-family: 'Inter'; @font-face { font-family:'Inter'; src:url('/assets/fonts/Inter-SemiBold.woff2') format('woff2'),url('/assets/fonts/Inter-SemiBold.ttf') format('truetype'); font-weight:600; font-display:swap; }
src: url('/assets/fonts/Inter-Regular.woff2') format('woff2'), @font-face { font-family:'Inter'; src:url('/assets/fonts/Inter-Bold.woff2') format('woff2'),url('/assets/fonts/Inter-Bold.ttf') format('truetype'); font-weight:700; font-display:swap; }
url('/assets/fonts/Inter-Regular.ttf') format('truetype'); @font-face { font-family:'Inter'; src:url('/assets/fonts/Inter-Light.woff2') format('woff2'),url('/assets/fonts/Inter-Light.ttf') format('truetype'); font-weight:300; font-display:swap; }
font-weight: 400;
font-display: swap;
}
@font-face {
font-family: 'Inter';
src: url('/assets/fonts/Inter-SemiBold.woff2') format('woff2'),
url('/assets/fonts/Inter-SemiBold.ttf') format('truetype');
font-weight: 600;
font-display: swap;
}
@font-face {
font-family: 'Inter';
src: url('/assets/fonts/Inter-Bold.woff2') format('woff2'),
url('/assets/fonts/Inter-Bold.ttf') format('truetype');
font-weight: 700;
font-display: swap;
}
@font-face {
font-family: 'Inter';
src: url('/assets/fonts/Inter-Light.woff2') format('woff2'),
url('/assets/fonts/Inter-Light.ttf') format('truetype');
font-weight: 300;
font-display: swap;
}
/* Variables */
:root { :root {
--navy: #0A1832; --navy: #0A1832;
--navy-light: #132844; --navy-light: #132844;
--gold: #C8A851; --gold: #C8A851;
--gold-light: #D4B96A; --gold-light: #D4B96A;
--gold-dark: #B39645; --gold-dark: #B39645;
--white: #FFFFFF; --white: #FAFBFD;
--gray-50: #F8FAFB; --base: #F5F7FA;
--gray-100: #F0F2F5; --alt: #EDF0F5;
--gray-200: #E0E4E8; --alt-solid: #F0F3F7;
--gray-100: #E4E8EE;
--gray-200: #D0D5DE;
--gray-400: #9AA5B4; --gray-400: #9AA5B4;
--gray-600: #5A6478; --gray-600: #5A6478;
--text: #333333; --text: #2A2F3A;
--text-light: #5A6478; --text-light: #5A6478;
--radius: 8px; --radius: 8px;
--radius-lg: 12px; --radius-lg: 12px;
--shadow: 0 2px 8px rgba(10, 24, 50, 0.08); --shadow: 0 2px 12px rgba(10,24,50,0.06);
--shadow-lg: 0 8px 24px rgba(10, 24, 50, 0.12); --shadow-lg: 0 8px 32px rgba(10,24,50,0.1);
--nav-height: 72px; --nav-height: 72px;
} }
/* Reset */ *,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
*, *::before, *::after { html { scroll-behavior:smooth; scroll-padding-top:var(--nav-height); }
margin: 0; body { font-family:'Inter',system-ui,-apple-system,sans-serif; font-size:16px; line-height:1.6; color:var(--text); background:var(--base); -webkit-font-smoothing:antialiased; }
padding: 0; img { max-width:100%; height:auto; }
box-sizing: border-box; a { color:inherit; text-decoration:none; }
} .container { max-width:1120px; margin:0 auto; padding:0 24px; }
html { /* ==================== NAV ==================== */
scroll-behavior: smooth; .navbar { position:fixed; top:0; left:0; right:0; height:var(--nav-height); background:rgba(250,251,253,0.92); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px); z-index:1000; transition:box-shadow 0.3s; }
scroll-padding-top: var(--nav-height); .navbar.scrolled { box-shadow:0 1px 16px rgba(10,24,50,0.08); }
} .nav-container { max-width:1120px; margin:0 auto; padding:0 24px; height:100%; display:flex; align-items:center; justify-content:space-between; }
.nav-logo { display:flex; align-items:center; }
.logo-img { height:36px; width:auto; }
.nav-menu { list-style:none; display:flex; gap:32px; }
.nav-menu a { font-size:0.9rem; font-weight:500; color:var(--navy); transition:color 0.2s; }
.nav-menu a:hover { color:var(--gold); }
body { .mobile-menu-toggle { display:none; background:none; border:none; cursor:pointer; width:32px; height:24px; position:relative; flex-direction:column; justify-content:space-between; }
font-family: 'Inter', system-ui, -apple-system, sans-serif; .mobile-menu-toggle span { display:block; width:100%; height:2px; background:var(--navy); border-radius:2px; transition:transform 0.3s,opacity 0.3s; }
font-size: 16px; .mobile-menu-toggle.active span:nth-child(1) { transform:rotate(45deg) translate(7px,7px); }
line-height: 1.6; .mobile-menu-toggle.active span:nth-child(2) { opacity:0; }
color: var(--text); .mobile-menu-toggle.active span:nth-child(3) { transform:rotate(-45deg) translate(7px,-7px); }
background: var(--white);
-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; } .mobile-menu { position:fixed; top:var(--nav-height); left:0; right:0; background:var(--white); padding:16px 24px 24px; box-shadow:var(--shadow-lg); transform:translateY(-100%); opacity:0; transition:transform 0.3s,opacity 0.3s; z-index:999; pointer-events:none; }
a { color: inherit; text-decoration: none; } .mobile-menu.open { transform:translateY(0); opacity:1; pointer-events:all; }
.mobile-menu ul { list-style:none; }
/* Container */ .mobile-menu li { border-bottom:1px solid var(--gray-100); }
.container { .mobile-menu a { display:block; padding:14px 0; font-size:1rem; font-weight:500; color:var(--navy); }
max-width: 1120px; .mobile-overlay { position:fixed; inset:0; background:rgba(10,24,50,0.3); z-index:998; opacity:0; pointer-events:none; transition:opacity 0.3s; }
margin: 0 auto; .mobile-overlay.open { opacity:1; pointer-events:all; }
padding: 0 24px;
}
/* ==================== NAVIGATION ==================== */
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
height: var(--nav-height);
background: var(--white);
z-index: 1000;
transition: box-shadow 0.3s;
}
.navbar.scrolled {
box-shadow: 0 1px 12px rgba(10, 24, 50, 0.1);
}
.nav-container {
max-width: 1120px;
margin: 0 auto;
padding: 0 24px;
height: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 36px; width: auto; }
.nav-menu {
list-style: none;
display: flex;
gap: 32px;
}
.nav-menu a {
font-size: 0.9rem;
font-weight: 500;
color: var(--navy);
transition: color 0.2s;
letter-spacing: 0.01em;
}
.nav-menu a:hover { color: var(--gold); }
/* Mobile Menu Toggle */
.mobile-menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
width: 32px;
height: 24px;
position: relative;
flex-direction: column;
justify-content: space-between;
}
.mobile-menu-toggle span {
display: block;
width: 100%;
height: 2px;
background: var(--navy);
border-radius: 2px;
transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(7px, 7px);
}
.mobile-menu-toggle.active span:nth-child(2) {
opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -7px);
}
/* Mobile Menu */
.mobile-menu {
position: fixed;
top: var(--nav-height);
left: 0;
right: 0;
background: var(--white);
padding: 16px 24px 24px;
box-shadow: var(--shadow-lg);
transform: translateY(-100%);
opacity: 0;
transition: transform 0.3s, opacity 0.3s;
z-index: 999;
pointer-events: none;
}
.mobile-menu.open {
transform: translateY(0);
opacity: 1;
pointer-events: all;
}
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid var(--gray-100); }
.mobile-menu a {
display: block;
padding: 14px 0;
font-size: 1rem;
font-weight: 500;
color: var(--navy);
}
.mobile-overlay {
position: fixed;
inset: 0;
background: rgba(10, 24, 50, 0.3);
z-index: 998;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s;
}
.mobile-overlay.open {
opacity: 1;
pointer-events: all;
}
/* ==================== HERO ==================== */ /* ==================== HERO ==================== */
.hero { .hero { position:relative; min-height:88vh; display:flex; align-items:center; padding-top:var(--nav-height); overflow:hidden; background:var(--navy); }
position: relative;
min-height: 85vh;
display: flex;
align-items: center;
padding-top: var(--nav-height);
overflow: hidden;
}
.hero-bg { .hero-video-container { position:absolute; inset:0; z-index:0; }
position: absolute; .hero-video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity 3s ease; }
inset: 0; .hero-video.active { opacity:1; }
background: .hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(10,24,50,0.82) 0%,rgba(10,24,50,0.65) 50%,rgba(10,24,50,0.75) 100%); z-index:1; }
radial-gradient(ellipse at 80% 20%, rgba(200, 168, 81, 0.06) 0%, transparent 50%),
radial-gradient(ellipse at 20% 80%, rgba(10, 24, 50, 0.04) 0%, transparent 50%),
linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
z-index: 0;
}
.hero-content { .hero-content { position:relative; z-index:2; max-width:700px; padding:80px 24px; color:var(--white); }
position: relative; .hero-title { font-size:3.4rem; font-weight:700; line-height:1.1; margin-bottom:20px; letter-spacing:-0.02em; color:var(--white); }
z-index: 1; .hero-claim { font-size:1.45rem; font-weight:300; line-height:1.5; margin-bottom:16px; color:rgba(255,255,255,0.9); }
max-width: 720px; .gold { color:var(--gold); font-weight:600; }
padding: 80px 24px; .hero-sub { font-size:1.05rem; color:rgba(255,255,255,0.65); line-height:1.7; margin-bottom:36px; }
} .hero-cta { display:flex; gap:16px; flex-wrap:wrap; }
.hero-title {
font-size: 3.2rem;
font-weight: 700;
color: var(--navy);
line-height: 1.1;
margin-bottom: 20px;
letter-spacing: -0.02em;
}
.hero-claim {
font-size: 1.4rem;
font-weight: 300;
color: var(--text);
line-height: 1.5;
margin-bottom: 16px;
}
.gold { color: var(--gold); font-weight: 600; }
.hero-sub {
font-size: 1.05rem;
color: var(--text-light);
line-height: 1.7;
margin-bottom: 36px;
}
.hero-cta {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
/* ==================== BUTTONS ==================== */ /* ==================== BUTTONS ==================== */
.btn { .btn { display:inline-flex; align-items:center; justify-content:center; padding:12px 28px; border-radius:var(--radius); font-family:inherit; font-size:0.95rem; font-weight:600; cursor:pointer; transition:all 0.2s; border:2px solid transparent; text-decoration:none; }
display: inline-flex; .btn-primary { background:var(--gold); color:var(--navy); border-color:var(--gold); }
align-items: center; .btn-primary:hover { background:var(--gold-dark); border-color:var(--gold-dark); }
justify-content: center; .btn-outline-light { background:transparent; color:var(--white); border-color:rgba(255,255,255,0.4); }
padding: 12px 28px; .btn-outline-light:hover { background:rgba(255,255,255,0.1); border-color:var(--white); }
border-radius: var(--radius); .btn-outline { background:transparent; color:var(--navy); border-color:var(--navy); }
font-family: inherit; .btn-outline:hover { background:var(--navy); color:var(--white); }
font-size: 0.95rem; .btn-lg { padding:16px 40px; font-size:1.05rem; }
font-weight: 600; .btn-block { width:100%; }
cursor: pointer;
transition: all 0.2s;
border: 2px solid transparent;
text-decoration: none;
}
.btn-primary {
background: var(--gold);
color: var(--navy);
border-color: var(--gold);
}
.btn-primary:hover {
background: var(--gold-dark);
border-color: var(--gold-dark);
}
.btn-outline {
background: transparent;
color: var(--navy);
border-color: var(--navy);
}
.btn-outline:hover {
background: var(--navy);
color: var(--white);
}
.btn-lg {
padding: 16px 40px;
font-size: 1.05rem;
}
.btn-block { width: 100%; }
/* ==================== SECTIONS ==================== */ /* ==================== SECTIONS ==================== */
.section { .section { padding:88px 0; }
padding: 96px 0; .section-base { background:var(--base); }
} .section-alt { background:var(--alt-solid); }
.section-dark { background:var(--navy); color:var(--white); }
.section-gray { .section-title { font-size:2rem; font-weight:700; color:var(--navy); text-align:center; margin-bottom:16px; letter-spacing:-0.01em; }
background: var(--gray-50); .section-dark .section-title { color:var(--white); }
} .section-subtitle { font-size:1.05rem; color:var(--text-light); text-align:center; max-width:600px; margin:0 auto 48px; }
.section-dark { /* ==================== WAVE DIVIDERS ==================== */
background: var(--navy); .wave-divider { line-height:0; margin:0; overflow:hidden; }
color: var(--white); .wave-divider svg { display:block; width:100%; height:auto; }
} .wave-dark-to-light { background:var(--alt-solid); }
.wave-alt-to-base { background:var(--base); }
.section-title { .wave-base-to-alt { background:var(--base); }
font-size: 2rem; .wave-base-to-dark { background:var(--base); }
font-weight: 700; .wave-dark-to-base { background:var(--base); }
color: var(--navy);
text-align: center;
margin-bottom: 16px;
letter-spacing: -0.01em;
}
.section-dark .section-title {
color: var(--white);
}
.section-subtitle {
font-size: 1.05rem;
color: var(--text-light);
text-align: center;
max-width: 600px;
margin: 0 auto 56px;
}
/* ==================== GRID ==================== */ /* ==================== GRID ==================== */
.grid-3 { .grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
display: grid; .grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
grid-template-columns: repeat(3, 1fr);
gap: 32px;
margin-top: 48px;
}
/* ==================== PROBLEM CARDS ==================== */ /* ==================== PROBLEM ==================== */
.problem-card { .problem-card { text-align:center; padding:32px 20px; }
text-align: center; .problem-icon { width:64px; height:64px; margin:0 auto 20px; display:flex; align-items:center; justify-content:center; background:var(--white); border-radius:50%; box-shadow:var(--shadow); }
padding: 32px 24px; .problem-card h3 { font-size:1.1rem; font-weight:700; color:var(--navy); margin-bottom:10px; }
} .problem-card p { font-size:0.93rem; color:var(--text-light); line-height:1.6; }
.problem-icon {
width: 64px;
height: 64px;
margin: 0 auto 20px;
display: flex;
align-items: center;
justify-content: center;
background: var(--white);
border-radius: 50%;
box-shadow: var(--shadow);
}
.problem-card h3 {
font-size: 1.15rem;
font-weight: 700;
color: var(--navy);
margin-bottom: 10px;
}
.problem-card p {
font-size: 0.95rem;
color: var(--text-light);
line-height: 1.6;
}
/* ==================== WORKFLOW ==================== */ /* ==================== WORKFLOW ==================== */
.workflow { .workflow { display:flex; align-items:flex-start; justify-content:center; margin-top:56px; }
display: flex; .workflow-step { flex:1; max-width:300px; text-align:center; padding:0 24px; }
align-items: flex-start; .step-number { width:48px; height:48px; margin:0 auto 20px; display:flex; align-items:center; justify-content:center; background:var(--gold); color:var(--navy); font-size:1.2rem; font-weight:700; border-radius:50%; }
justify-content: center; .workflow-step h3 { font-size:1.1rem; font-weight:700; color:var(--navy); margin-bottom:10px; }
gap: 0; .workflow-step p { font-size:0.93rem; color:var(--text-light); line-height:1.6; }
margin-top: 56px; .workflow-connector { width:60px; height:2px; background:var(--gold); margin-top:23px; flex-shrink:0; opacity:0.4; }
}
.workflow-step { /* ==================== FEATURES ==================== */
flex: 1; .feature-card { background:var(--white); border-radius:var(--radius-lg); padding:28px 24px; box-shadow:var(--shadow); transition:box-shadow 0.3s,transform 0.3s; }
max-width: 300px; .feature-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-3px); }
text-align: center; .feature-icon { width:48px; height:48px; display:flex; align-items:center; justify-content:center; background:var(--alt-solid); border-radius:var(--radius); margin-bottom:14px; }
padding: 0 24px; .feature-card h3 { font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:8px; }
} .feature-card p { font-size:0.88rem; color:var(--text-light); line-height:1.6; }
.step-number { /* ==================== CAROUSEL ==================== */
width: 48px; .carousel-wrapper { overflow-x:auto; -webkit-overflow-scrolling:touch; scrollbar-width:none; margin:0 -24px; padding:0 24px; }
height: 48px; .carousel-wrapper::-webkit-scrollbar { display:none; }
margin: 0 auto 20px; .carousel { display:flex; gap:24px; padding:8px 0 16px; }
display: flex; .carousel-card { min-width:340px; max-width:380px; flex-shrink:0; background:var(--white); border-radius:var(--radius-lg); padding:28px 24px; box-shadow:var(--shadow); position:relative; display:flex; flex-direction:column; }
align-items: center; .card-live { border:2px solid var(--gold); box-shadow:0 4px 24px rgba(200,168,81,0.15); }
justify-content: center; .card-placeholder { border:2px dashed var(--gray-200); opacity:0.55; }
background: var(--gold); .demo-badge { display:inline-block; padding:4px 14px; border-radius:20px; font-size:0.72rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:14px; width:fit-content; background:var(--gold); color:var(--navy); }
color: var(--navy); .badge-soon { background:var(--gray-100); color:var(--gray-400); }
font-size: 1.2rem; .demo-title { font-size:1.25rem; font-weight:700; color:var(--navy); margin-bottom:16px; }
font-weight: 700;
border-radius: 50%;
}
.workflow-step h3 { .demo-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:16px; }
font-size: 1.15rem; .demo-stat { text-align:center; padding:10px 6px; background:var(--alt-solid); border-radius:var(--radius); }
font-weight: 700; .stat-value { display:block; font-size:1.4rem; font-weight:700; color:var(--navy); line-height:1.2; }
color: var(--navy); .stat-label { display:block; font-size:0.72rem; color:var(--text-light); margin-top:3px; }
margin-bottom: 10px;
}
.workflow-step p { .demo-excerpt { margin-bottom:16px; }
font-size: 0.95rem; .excerpt-text { font-size:0.88rem; color:var(--text); line-height:1.65; max-height:120px; overflow:hidden; position:relative; transition:max-height 0.4s ease; }
color: var(--text-light); .excerpt-text.expanded { max-height:600px; }
line-height: 1.6; .excerpt-text:not(.expanded)::after { content:''; position:absolute; bottom:0; left:0; right:0; height:40px; background:linear-gradient(transparent,var(--white)); }
} .excerpt-toggle { background:none; border:none; color:var(--gold); font-family:inherit; font-size:0.85rem; font-weight:600; cursor:pointer; padding:6px 0; }
.excerpt-toggle:hover { color:var(--gold-dark); }
.workflow-connector { .demo-updated { font-size:0.82rem; color:var(--text-light); margin-bottom:16px; }
width: 60px; .placeholder-title { color:var(--gray-400); }
height: 2px; .placeholder-text { font-size:0.95rem; color:var(--gray-400); flex:1; display:flex; align-items:center; justify-content:center; min-height:180px; }
background: var(--gold);
margin-top: 23px;
flex-shrink: 0;
opacity: 0.5;
}
/* ==================== FEATURE CARDS ==================== */ /* ==================== MAP ==================== */
.feature-card { .map-section { margin-top:48px; }
background: var(--white); .map-title { font-size:1.1rem; font-weight:600; color:var(--navy); margin-bottom:16px; text-align:center; }
border-radius: var(--radius-lg); #map-container { height:420px; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--gray-100); }
padding: 32px 28px;
box-shadow: var(--shadow);
transition: box-shadow 0.3s, transform 0.3s;
}
.feature-card:hover { /* Map pulse markers */
box-shadow: var(--shadow-lg); .pulse-marker { width:12px; height:12px; border-radius:50%; position:relative; }
transform: translateY(-2px); .pulse-marker::after { content:''; position:absolute; inset:-4px; border-radius:50%; border:2px solid; opacity:0.5; animation:mapPulse 2s infinite; }
} .pulse-marker.cat-primary { background:#E74C3C; }
.pulse-marker.cat-primary::after { border-color:#E74C3C; }
.feature-icon { .pulse-marker.cat-secondary { background:#F39C12; }
width: 52px; .pulse-marker.cat-secondary::after { border-color:#F39C12; }
height: 52px; .pulse-marker.cat-tertiary { background:#3498DB; }
display: flex; .pulse-marker.cat-tertiary::after { border-color:#3498DB; }
align-items: center; .pulse-marker.cat-mentioned { background:#95A5A6; }
justify-content: center; .pulse-marker.cat-mentioned::after { border-color:#95A5A6; }
background: var(--gray-50); @keyframes mapPulse { 0%{transform:scale(1);opacity:0.5} 100%{transform:scale(2.5);opacity:0} }
border-radius: var(--radius);
margin-bottom: 16px;
}
.feature-card h3 {
font-size: 1.05rem;
font-weight: 700;
color: var(--navy);
margin-bottom: 8px;
}
.feature-card p {
font-size: 0.9rem;
color: var(--text-light);
line-height: 1.6;
}
/* ==================== DEMO CARDS ==================== */
.demos-grid {
margin-top: 48px;
}
.demo-card {
background: var(--white);
border-radius: var(--radius-lg);
padding: 32px 28px;
box-shadow: var(--shadow);
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
}
.demo-card-live {
border: 2px solid var(--gold);
}
.demo-card-placeholder {
border: 2px dashed var(--gray-200);
opacity: 0.6;
}
.demo-badge {
display: inline-block;
padding: 4px 14px;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 16px;
width: fit-content;
background: var(--gold);
color: var(--navy);
}
.badge-soon {
background: var(--gray-100);
color: var(--gray-400);
}
.demo-title {
font-size: 1.3rem;
font-weight: 700;
color: var(--navy);
margin-bottom: 20px;
}
.demo-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
margin-bottom: 20px;
}
.demo-stat {
text-align: center;
padding: 12px 8px;
background: var(--gray-50);
border-radius: var(--radius);
}
.stat-value {
display: block;
font-size: 1.5rem;
font-weight: 700;
color: var(--navy);
line-height: 1.2;
}
.stat-label {
display: block;
font-size: 0.75rem;
color: var(--text-light);
margin-top: 4px;
}
.demo-updated {
font-size: 0.85rem;
color: var(--text-light);
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px solid var(--gray-100);
}
.demo-placeholder-text {
font-size: 1rem;
color: var(--gray-400);
flex: 1;
display: flex;
align-items: center;
justify-content: center;
min-height: 120px;
}
/* ==================== TRUST ==================== */ /* ==================== TRUST ==================== */
.trust-grid { .trust-grid { margin-top:48px; }
margin-top: 0; .trust-card { text-align:center; padding:24px 16px; }
} .trust-icon-wrap { height:56px; display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.trust-icon-wrap img { filter:brightness(0) invert(1); }
.trust-card { .trust-icon-wrap.trust-flag img { filter:none; }
text-align: center; .trust-card h3 { font-size:1.05rem; font-weight:700; margin-bottom:8px; }
padding: 24px; .trust-card p { font-size:0.88rem; opacity:0.7; line-height:1.5; }
}
.trust-icon {
margin-bottom: 16px;
filter: brightness(0) invert(1);
}
.trust-card h3 {
font-size: 1.1rem;
font-weight: 700;
margin-bottom: 8px;
}
.trust-card p {
font-size: 0.9rem;
opacity: 0.75;
}
/* ==================== CTA ==================== */ /* ==================== CTA ==================== */
.cta-container { .cta-container { text-align:center; max-width:600px; }
text-align: center; .cta-text { font-size:1.1rem; color:var(--text-light); margin-bottom:32px; }
max-width: 600px; .cta-email { font-size:0.9rem; color:var(--text-light); margin-top:16px; }
}
.cta-text {
font-size: 1.1rem;
color: var(--text-light);
margin-bottom: 32px;
}
.cta-email {
font-size: 0.9rem;
color: var(--text-light);
margin-top: 16px;
}
/* ==================== FOOTER ==================== */ /* ==================== FOOTER ==================== */
.footer { .footer { background:var(--navy); color:rgba(255,255,255,0.7); padding:40px 0; font-size:0.85rem; }
background: var(--navy); .footer-content { display:flex; justify-content:space-between; align-items:center; margin-bottom:24px; padding-bottom:24px; border-bottom:1px solid rgba(255,255,255,0.1); }
color: rgba(255, 255, 255, 0.7); .footer-company { font-weight:600; color:var(--white); margin-bottom:4px; }
padding: 40px 0; .footer-links { display:flex; gap:24px; }
font-size: 0.85rem; .footer-links a { color:rgba(255,255,255,0.7); transition:color 0.2s; }
} .footer-links a:hover { color:var(--white); }
.footer-copyright { text-align:center; font-size:0.8rem; opacity:0.5; }
.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24px;
padding-bottom: 24px;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-company {
font-weight: 600;
color: var(--white);
margin-bottom: 4px;
}
.footer-links {
display: flex;
gap: 24px;
}
.footer-links a {
color: rgba(255, 255, 255, 0.7);
transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copyright {
text-align: center;
font-size: 0.8rem;
opacity: 0.5;
}
/* ==================== RESPONSIVE ==================== */ /* ==================== RESPONSIVE ==================== */
@media(max-width:1024px) {
/* Tablet */ .grid-3 { grid-template-columns:repeat(2,1fr); }
@media (max-width: 1024px) { .grid-4 { grid-template-columns:repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(2, 1fr); } .hero-title { font-size:2.8rem; }
.hero-title { font-size: 2.6rem; } .section { padding:64px 0; }
.section { padding: 72px 0; } .workflow-connector { width:40px; }
.workflow-connector { width: 40px; } .carousel-card { min-width:300px; }
} }
/* Mobile */ @media(max-width:768px) {
@media (max-width: 768px) { .nav-menu { display:none; }
.nav-menu { display: none; } .mobile-menu-toggle { display:flex; }
.mobile-menu-toggle { display: flex; } .grid-3,.grid-4 { grid-template-columns:1fr; gap:20px; }
.hero { min-height:75vh; }
.grid-3 { grid-template-columns: 1fr; gap: 20px; } .hero-content { padding:48px 24px; }
.hero { min-height: 70vh; } .hero-title { font-size:2.1rem; }
.hero-content { padding: 48px 24px; } .hero-claim { font-size:1.15rem; }
.hero-title { font-size: 2rem; } .section { padding:48px 0; }
.hero-claim { font-size: 1.15rem; } .section-title { font-size:1.6rem; }
.section { padding: 56px 0; } .workflow { flex-direction:column; align-items:center; gap:8px; }
.section-title { font-size: 1.6rem; } .workflow-connector { width:2px; height:32px; margin:0; }
.workflow-step { max-width:100%; padding:16px 0; }
.workflow { .hero-cta { flex-direction:column; }
flex-direction: column; .hero-cta .btn { width:100%; }
align-items: center; .footer-content { flex-direction:column; text-align:center; gap:16px; }
gap: 8px; .carousel-card { min-width:280px; }
} #map-container { height:300px; }
.workflow-connector {
width: 2px;
height: 32px;
margin: 0;
}
.workflow-step {
max-width: 100%;
padding: 16px 0;
}
.hero-cta {
flex-direction: column;
}
.hero-cta .btn { width: 100%; }
.footer-content {
flex-direction: column;
text-align: center;
gap: 16px;
}
.demo-stats { grid-template-columns: repeat(3, 1fr); }
} }
/* Small Mobile */ @media(max-width:480px) {
@media (max-width: 480px) { .hero-title { font-size:1.8rem; }
.hero-title { font-size: 1.7rem; } .container { padding:0 16px; }
.container { padding: 0 16px; } .carousel-card { min-width:260px; }
} }

Datei anzeigen

@@ -7,70 +7,28 @@
<meta name="robots" content="noindex, nofollow, noarchive"> <meta name="robots" content="noindex, nofollow, noarchive">
<link rel="icon" type="image/svg+xml" href="/favicon.svg"> <link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link rel="apple-touch-icon" href="/assets/images/logos/AegisSightLogo_NavyGold.svg"> <link rel="apple-touch-icon" href="/assets/images/logos/AegisSightLogo_NavyGold.svg">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css">
<link rel="stylesheet" href="css/style.css"> <link rel="stylesheet" href="css/style.css">
</head> </head>
<body> <body>
<!-- Password Gate --> <!-- Password Gate -->
<style> <style>
#login-gate { #login-gate{position:fixed;inset:0;z-index:10000;background:#0A1832;display:flex;flex-direction:column;align-items:center;justify-content:center;font-family:'Inter',system-ui,sans-serif}
position: fixed; #login-gate .gate-logo{width:80px;height:80px;margin-bottom:2rem}
inset: 0; #login-gate .gate-logo img{width:100%;height:100%;background:#fff;border-radius:12px;padding:6px}
z-index: 10000; #login-gate h1{font-size:1.6rem;font-weight:700;color:#C8A851;margin-bottom:.5rem}
background: #0A1832; #login-gate p{font-size:.95rem;color:#A0A8B8;margin-bottom:1.5rem}
display: flex; #login-gate .pw-form{display:flex;gap:.5rem}
flex-direction: column; #login-gate .pw-input{padding:.7rem 1rem;border:1px solid rgba(200,168,81,.3);border-radius:6px;background:rgba(255,255,255,.05);color:#E8E8E8;font-family:inherit;font-size:.95rem;width:220px;outline:none}
align-items: center; #login-gate .pw-input:focus{border-color:#C8A851}
justify-content: center; #login-gate .pw-input::placeholder{color:#5A6478}
font-family: 'Inter', system-ui, sans-serif; #login-gate .pw-btn{padding:.7rem 1.2rem;border:none;border-radius:6px;background:#C8A851;color:#0A1832;font-family:inherit;font-size:.95rem;font-weight:600;cursor:pointer}
} #login-gate .pw-btn:hover{background:#D4B96A}
#login-gate .gate-logo { #login-gate .pw-error{color:#E85454;font-size:.85rem;margin-top:.75rem;display:none}
width: 80px; height: 80px; body.locked{overflow:hidden}
margin-bottom: 2rem;
}
#login-gate .gate-logo img {
width: 100%; height: 100%;
background: #fff; border-radius: 12px; padding: 6px;
}
#login-gate h1 {
font-size: 1.6rem; font-weight: 700;
color: #C8A851; margin-bottom: 0.5rem;
}
#login-gate p {
font-size: 0.95rem; color: #A0A8B8;
margin-bottom: 1.5rem;
}
#login-gate .pw-form {
display: flex; gap: 0.5rem;
}
#login-gate .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;
}
#login-gate .pw-input:focus { border-color: #C8A851; }
#login-gate .pw-input::placeholder { color: #5A6478; }
#login-gate .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;
}
#login-gate .pw-btn:hover { background: #D4B96A; }
#login-gate .pw-error {
color: #E85454; font-size: 0.85rem;
margin-top: 0.75rem; display: none;
}
body.locked { overflow: hidden; }
</style> </style>
<div id="login-gate"> <div id="login-gate">
<div class="gate-logo"> <div class="gate-logo"><img src="/assets/images/logos/AegisSightLogo_NavyGold.svg" alt="AegisSight"></div>
<img src="/assets/images/logos/AegisSightLogo_NavyGold.svg" alt="AegisSight">
</div>
<h1>Vorschau</h1> <h1>Vorschau</h1>
<p>Zugang nur mit Passwort</p> <p>Zugang nur mit Passwort</p>
<form class="pw-form" onsubmit="return checkPassword(event)"> <form class="pw-form" onsubmit="return checkPassword(event)">
@@ -96,9 +54,9 @@
<img src="/assets/images/logos/Logo+Schrift_Rechts.png" alt="AegisSight" class="logo-img"> <img src="/assets/images/logos/Logo+Schrift_Rechts.png" alt="AegisSight" class="logo-img">
</a> </a>
<ul class="nav-menu"> <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="#demos">Live-Lagebilder</a></li>
<li><a href="#features">Funktionen</a></li>
<li><a href="#trust">Versprechen</a></li>
<li><a href="#contact">Kontakt</a></li> <li><a href="#contact">Kontakt</a></li>
</ul> </ul>
<button class="mobile-menu-toggle" aria-label="Menü öffnen" aria-expanded="false"> <button class="mobile-menu-toggle" aria-label="Menü öffnen" aria-expanded="false">
@@ -110,9 +68,9 @@
<!-- Mobile Menu --> <!-- Mobile Menu -->
<div class="mobile-menu" id="mobile-menu" aria-hidden="true"> <div class="mobile-menu" id="mobile-menu" aria-hidden="true">
<ul> <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="#demos">Live-Lagebilder</a></li>
<li><a href="#features">Funktionen</a></li>
<li><a href="#trust">Versprechen</a></li>
<li><a href="#contact">Kontakt</a></li> <li><a href="#contact">Kontakt</a></li>
</ul> </ul>
</div> </div>
@@ -120,20 +78,98 @@
<!-- Hero Section --> <!-- Hero Section -->
<section class="hero" id="hero"> <section class="hero" id="hero">
<div class="hero-bg"></div> <div class="hero-video-container">
<video class="hero-video active" autoplay muted loop playsinline>
<source src="/assets/videos/hero-data-flow.mp4" type="video/mp4">
</video>
<video class="hero-video" autoplay muted loop playsinline>
<source src="/assets/videos/hero-network-viz.mp4" type="video/mp4">
</video>
<video class="hero-video" autoplay muted loop playsinline>
<source src="/assets/videos/hero-code-abstract.mp4" type="video/mp4">
</video>
</div>
<div class="hero-overlay"></div>
<div class="container hero-content"> <div class="container hero-content">
<h1 class="hero-title">AegisSight Monitor</h1> <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-claim">Echtzeit-Lagebilder aus offenen Quellen,<br><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> <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"> <div class="hero-cta">
<a href="#demos" class="btn btn-primary">Live-Demo ansehen</a> <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> <a href="mailto:info@aegis-sight.de" class="btn btn-outline-light">Kontakt aufnehmen</a>
</div> </div>
</div> </div>
</section> </section>
<!-- Wave: Hero -> Demos -->
<div class="wave-divider wave-dark-to-light">
<svg viewBox="0 0 1440 80" preserveAspectRatio="none"><path d="M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,0 L0,0 Z" fill="#0A1832"/></svg>
</div>
<!-- Live Demos / Showcase -->
<section class="section section-alt" 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>
<!-- Carousel -->
<div class="carousel-wrapper">
<div class="carousel" id="carousel">
<!-- Iran Card -->
<div class="carousel-card 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-excerpt" id="demo-excerpt">
<div class="excerpt-text" id="excerpt-text">Lagebild wird geladen...</div>
<button class="excerpt-toggle" id="excerpt-toggle" style="display:none">Weiterlesen</button>
</div>
<div class="demo-updated" id="demo-updated">Daten werden geladen...</div>
<a href="/lagen/iran-konflikt/" class="btn btn-primary btn-block">Vollständiges Lagebild öffnen</a>
</div>
<!-- Placeholder 2 -->
<div class="carousel-card card-placeholder">
<div class="demo-badge badge-soon">Demnächst</div>
<h3 class="demo-title placeholder-title">Weitere Lage</h3>
<p class="placeholder-text">In Vorbereitung</p>
</div>
<!-- Placeholder 3 -->
<div class="carousel-card card-placeholder">
<div class="demo-badge badge-soon">Demnächst</div>
<h3 class="demo-title placeholder-title">Weitere Lage</h3>
<p class="placeholder-text">In Vorbereitung</p>
</div>
</div>
</div>
<!-- Map -->
<div class="map-section">
<h3 class="map-title">Geografische Verortung der Meldungen</h3>
<div id="map-container"></div>
</div>
</div>
</section>
<!-- Wave: Demos -> Problem -->
<div class="wave-divider wave-alt-to-base">
<svg viewBox="0 0 1440 60" preserveAspectRatio="none"><path d="M0,0 C480,60 960,0 1440,30 L1440,60 L0,60 Z" fill="#F0F3F7"/></svg>
</div>
<!-- Problem Statement --> <!-- Problem Statement -->
<section class="section section-gray" id="problem"> <section class="section section-base" id="problem">
<div class="container"> <div class="container">
<h2 class="section-title">Warum manuelle OSINT-Auswertung nicht skaliert</h2> <h2 class="section-title">Warum manuelle OSINT-Auswertung nicht skaliert</h2>
<div class="grid-3"> <div class="grid-3">
@@ -142,14 +178,14 @@
<img src="/assets/images/icons/world-globe.svg" alt="" width="40" height="40"> <img src="/assets/images/icons/world-globe.svg" alt="" width="40" height="40">
</div> </div>
<h3>Tausende Quellen</h3> <h3>Tausende Quellen</h3>
<p>Hunderte Quellen in dutzenden Sprachen — kein Analyst überblickt alles gleichzeitig.</p> <p>Hunderte Quellen in dutzenden Sprachen. Kein Analyst überblickt alles gleichzeitig.</p>
</div> </div>
<div class="problem-card"> <div class="problem-card">
<div class="problem-icon"> <div class="problem-icon">
<img src="/assets/images/icons/clock.svg" alt="" width="40" height="40"> <img src="/assets/images/icons/clock.svg" alt="" width="40" height="40">
</div> </div>
<h3>Zeitdruck</h3> <h3>Zeitdruck</h3>
<p>Neue Meldungen im Minutentakt — manuelle Auswertung kostet Zeit, die Sie nicht haben.</p> <p>Neue Meldungen im Minutentakt. Manuelle Auswertung kostet Zeit, die Sie nicht haben.</p>
</div> </div>
<div class="problem-card"> <div class="problem-card">
<div class="problem-icon"> <div class="problem-icon">
@@ -162,15 +198,20 @@
</div> </div>
</section> </section>
<!-- Wave: Problem -> Solution -->
<div class="wave-divider wave-base-to-alt">
<svg viewBox="0 0 1440 60" preserveAspectRatio="none"><path d="M0,30 C360,0 720,60 1080,20 C1260,5 1380,15 1440,30 L1440,60 L0,60 Z" fill="#F0F3F7"/></svg>
</div>
<!-- Solution / Workflow --> <!-- Solution / Workflow -->
<section class="section" id="solution"> <section class="section section-alt" id="solution">
<div class="container"> <div class="container">
<h2 class="section-title">So funktioniert der AegisSight Monitor</h2> <h2 class="section-title">So funktioniert der AegisSight Monitor</h2>
<div class="workflow"> <div class="workflow">
<div class="workflow-step"> <div class="workflow-step">
<div class="step-number">1</div> <div class="step-number">1</div>
<h3>Erfassen</h3> <h3>Erfassen</h3>
<p>Hunderte Quellen werden kontinuierlich überwacht Nachrichtenagenturen, Telegram, Social Media und mehr.</p> <p>Hunderte Quellen werden kontinuierlich überwacht. Nachrichtenagenturen, Telegram, Social Media und mehr.</p>
</div> </div>
<div class="workflow-connector"></div> <div class="workflow-connector"></div>
<div class="workflow-step"> <div class="workflow-step">
@@ -182,14 +223,19 @@
<div class="workflow-step"> <div class="workflow-step">
<div class="step-number">3</div> <div class="step-number">3</div>
<h3>Berichten</h3> <h3>Berichten</h3>
<p>Strukturierte Lagebilder mit Quellenbelegen, Faktencheck und Kartenansicht — in Echtzeit.</p> <p>Strukturierte Lagebilder mit Quellenbelegen, Faktencheck und Kartenansicht. In Echtzeit.</p>
</div> </div>
</div> </div>
</div> </div>
</section> </section>
<!-- Wave: Solution -> Features -->
<div class="wave-divider wave-alt-to-base">
<svg viewBox="0 0 1440 60" preserveAspectRatio="none"><path d="M0,20 C240,60 480,0 720,40 C960,60 1200,10 1440,30 L1440,60 L0,60 Z" fill="#F0F3F7"/></svg>
</div>
<!-- Features --> <!-- Features -->
<section class="section section-gray" id="features"> <section class="section section-base" id="features">
<div class="container"> <div class="container">
<h2 class="section-title">Was der Monitor leistet</h2> <h2 class="section-title">Was der Monitor leistet</h2>
<div class="grid-3"> <div class="grid-3">
@@ -209,7 +255,7 @@
</div> </div>
<div class="feature-card"> <div class="feature-card">
<div class="feature-icon"> <div class="feature-icon">
<img src="/assets/images/icons/globe.svg" alt="" width="36" height="36"> <img src="/assets/images/icons/cube.svg" alt="" width="36" height="36">
</div> </div>
<h3>Quellenanalyse</h3> <h3>Quellenanalyse</h3>
<p>Automatische Aggregation und Deduplizierung aus hunderten internationalen Quellen.</p> <p>Automatische Aggregation und Deduplizierung aus hunderten internationalen Quellen.</p>
@@ -239,76 +285,55 @@
</div> </div>
</section> </section>
<!-- Live Demos --> <!-- Wave: Features -> Trust -->
<section class="section" id="demos"> <div class="wave-divider wave-base-to-dark">
<div class="container"> <svg viewBox="0 0 1440 80" preserveAspectRatio="none"><path d="M0,40 C480,80 960,0 1440,50 L1440,80 L0,80 Z" fill="#0A1832"/></svg>
<h2 class="section-title">Sehen Sie den Monitor in Aktion</h2> </div>
<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>
<!-- Trust Signals --> <!-- Trust / Unser Versprechen -->
<section class="section section-dark" id="trust"> <section class="section section-dark" id="trust">
<div class="container"> <div class="container">
<div class="grid-3 trust-grid"> <h2 class="section-title">Unser Versprechen</h2>
<div class="grid-4 trust-grid">
<div class="trust-card"> <div class="trust-card">
<img src="/assets/images/icons/german-flag.svg" alt="" width="48" height="28" class="trust-icon"> <div class="trust-icon-wrap">
<img src="/assets/images/icons/check-circle-filled.svg" alt="" width="48" height="48">
</div>
<h3>Enge Zusammenarbeit</h3>
<p>Wir arbeiten Hand in Hand mit unseren Kunden für maßgeschneiderte Lösungen</p>
</div>
<div class="trust-card">
<div class="trust-icon-wrap trust-flag">
<img src="/assets/images/icons/german-flag.svg" alt="" width="60" height="36">
</div>
<h3>Made in Germany</h3> <h3>Made in Germany</h3>
<p>Entwickelt in Nordrhein-Westfalen</p> <p>Klare, robuste und sichere Software nach deutschen Qualitätsstandards</p>
</div> </div>
<div class="trust-card"> <div class="trust-card">
<img src="/assets/images/icons/shield-check.svg" alt="" width="36" height="36" class="trust-icon"> <div class="trust-icon-wrap">
<h3>DSGVO-konform</h3> <img src="/assets/handshake.svg" alt="" width="50" height="50">
<p>Datenschutz nach europäischem Standard</p> </div>
<h3>Verlässliche Partnerschaft</h3>
<p>Basierend auf gemeinsamen Werten und langfristigem Vertrauen</p>
</div> </div>
<div class="trust-card"> <div class="trust-card">
<img src="/assets/images/icons/lock.svg" alt="" width="36" height="36" class="trust-icon"> <div class="trust-icon-wrap">
<h3>Hosting in Deutschland</h3> <img src="/assets/images/icons/clock.svg" alt="" width="48" height="48">
<p>Alle Daten bleiben in Deutschland</p> </div>
<h3>Nachhaltigkeit</h3>
<p>Fokus auf Sicherheit, Professionalität und zukunftssichere Lösungen</p>
</div> </div>
</div> </div>
</div> </div>
</section> </section>
<!-- Wave: Trust -> CTA -->
<div class="wave-divider wave-dark-to-base">
<svg viewBox="0 0 1440 60" preserveAspectRatio="none"><path d="M0,0 C360,50 720,10 1080,40 C1260,55 1380,30 1440,20 L1440,60 L0,60 Z" fill="#0A1832"/></svg>
</div>
<!-- Contact CTA --> <!-- Contact CTA -->
<section class="section" id="contact"> <section class="section section-base" id="contact">
<div class="container cta-container"> <div class="container cta-container">
<h2 class="section-title">Interesse am AegisSight Monitor?</h2> <h2 class="section-title">Interesse am AegisSight Monitor?</h2>
<p class="cta-text">Sprechen Sie mit uns über Ihren Einsatzfall.</p> <p class="cta-text">Sprechen Sie mit uns über Ihren Einsatzfall.</p>
@@ -334,6 +359,7 @@
</div> </div>
</footer> </footer>
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"></script>
<script src="js/app.js"></script> <script src="js/app.js"></script>
</body> </body>
</html> </html>

Datei anzeigen

@@ -1,16 +1,11 @@
/* AegisSight Monitor - Product Page JS */ /* AegisSight Monitor - Product Page v2 */
(function () { (function () {
'use strict'; 'use strict';
/* ==================== NAVBAR SHADOW ==================== */ /* ==================== NAVBAR ==================== */
var navbar = document.getElementById('navbar'); var navbar = document.getElementById('navbar');
window.addEventListener('scroll', function () { window.addEventListener('scroll', function () {
if (window.scrollY > 10) { navbar.classList.toggle('scrolled', window.scrollY > 10);
navbar.classList.add('scrolled');
} else {
navbar.classList.remove('scrolled');
}
}); });
/* ==================== MOBILE MENU ==================== */ /* ==================== MOBILE MENU ==================== */
@@ -18,55 +13,86 @@
var menu = document.getElementById('mobile-menu'); var menu = document.getElementById('mobile-menu');
var overlay = document.getElementById('mobile-overlay'); var overlay = document.getElementById('mobile-overlay');
function openMenu() {
toggle.classList.add('active');
menu.classList.add('open');
overlay.classList.add('open');
toggle.setAttribute('aria-expanded', 'true');
menu.setAttribute('aria-hidden', 'false');
}
function closeMenu() { function closeMenu() {
toggle.classList.remove('active'); toggle.classList.remove('active');
menu.classList.remove('open'); menu.classList.remove('open');
overlay.classList.remove('open'); overlay.classList.remove('open');
toggle.setAttribute('aria-expanded', 'false'); toggle.setAttribute('aria-expanded', 'false');
menu.setAttribute('aria-hidden', 'true');
} }
toggle.addEventListener('click', function () { toggle.addEventListener('click', function () {
if (menu.classList.contains('open')) { var isOpen = menu.classList.contains('open');
closeMenu(); if (isOpen) { closeMenu(); } else {
} else { toggle.classList.add('active');
openMenu(); menu.classList.add('open');
overlay.classList.add('open');
toggle.setAttribute('aria-expanded', 'true');
} }
}); });
overlay.addEventListener('click', closeMenu); overlay.addEventListener('click', closeMenu);
menu.querySelectorAll('a').forEach(function (l) { l.addEventListener('click', closeMenu); });
// Close on link click
menu.querySelectorAll('a').forEach(function (link) {
link.addEventListener('click', closeMenu);
});
/* ==================== SMOOTH SCROLL ==================== */ /* ==================== SMOOTH SCROLL ==================== */
document.querySelectorAll('a[href^="#"]').forEach(function (link) { document.querySelectorAll('a[href^="#"]').forEach(function (link) {
link.addEventListener('click', function (e) { link.addEventListener('click', function (e) {
var target = document.querySelector(this.getAttribute('href')); var t = document.querySelector(this.getAttribute('href'));
if (target) { if (t) { e.preventDefault(); t.scrollIntoView({ behavior: 'smooth' }); }
e.preventDefault();
target.scrollIntoView({ behavior: 'smooth' });
}
}); });
}); });
/* ==================== LIVE DATA FETCH ==================== */ /* ==================== HERO VIDEOS ==================== */
function timeAgo(dateStr) { var videos = document.querySelectorAll('.hero-video');
var now = new Date(); var currentVideo = 0;
var then = new Date(dateStr); var ROTATION_INTERVAL = 12000;
var diffMs = now - then; var rotationTimer;
var diffMin = Math.floor(diffMs / 60000);
function switchVideo() {
videos[currentVideo].classList.remove('active');
currentVideo = (currentVideo + 1) % videos.length;
var next = videos[currentVideo];
next.currentTime = 0;
next.play().catch(function () {});
next.classList.add('active');
}
function startRotation() {
rotationTimer = setInterval(switchVideo, ROTATION_INTERVAL);
}
// Pause when tab hidden
document.addEventListener('visibilitychange', function () {
if (document.hidden) {
clearInterval(rotationTimer);
videos.forEach(function (v) { v.pause(); });
} else {
videos.forEach(function (v) { if (v.classList.contains('active')) v.play().catch(function () {}); });
startRotation();
}
});
if (videos.length > 1) startRotation();
/* ==================== SIMPLE MARKDOWN ==================== */
function mdToText(md) {
if (!md) return '';
// Remove ## headers and bold markers, keep text
return md
.replace(/^## .+$/gm, '')
.replace(/^### .+$/gm, '')
.replace(/\*\*(.+?)\*\*/g, '<strong>$1</strong>')
.replace(/\[(\d+[a-z]?)\]/g, '')
.replace(/\n{3,}/g, '\n\n')
.trim()
.split('\n\n')
.filter(function (p) { return p.trim().length > 0; })
.map(function (p) { return '<p>' + p.trim().replace(/\n/g, ' ') + '</p>'; })
.join('');
}
/* ==================== LIVE DATA ==================== */
function timeAgo(dateStr) {
var diffMin = Math.floor((Date.now() - new Date(dateStr).getTime()) / 60000);
if (diffMin < 1) return 'Gerade eben aktualisiert'; if (diffMin < 1) return 'Gerade eben aktualisiert';
if (diffMin < 60) return 'Aktualisiert vor ' + diffMin + ' Min.'; if (diffMin < 60) return 'Aktualisiert vor ' + diffMin + ' Min.';
var diffH = Math.floor(diffMin / 60); var diffH = Math.floor(diffMin / 60);
@@ -75,33 +101,103 @@
return 'Aktualisiert vor ' + diffD + (diffD === 1 ? ' Tag' : ' Tagen'); return 'Aktualisiert vor ' + diffD + (diffD === 1 ? ' Tag' : ' Tagen');
} }
var liveData = null;
function loadLiveData() { function loadLiveData() {
fetch('/lagen/iran-konflikt/data/current.json?t=' + Date.now()) fetch('/lagen/iran-konflikt/data/current.json?t=' + Date.now())
.then(function (res) { .then(function (r) { if (!r.ok) throw new Error(r.status); return r.json(); })
if (!res.ok) throw new Error('HTTP ' + res.status);
return res.json();
})
.then(function (data) { .then(function (data) {
var incident = data.incident || {}; liveData = data;
var lagebild = data.current_lagebild || {}; var inc = data.incident || {};
var lag = data.current_lagebild || {};
var elArticles = document.getElementById('stat-articles'); // Stats
var elSources = document.getElementById('stat-sources'); var ea = document.getElementById('stat-articles');
var elFactchecks = document.getElementById('stat-factchecks'); var es = document.getElementById('stat-sources');
var elUpdated = document.getElementById('demo-updated'); var ef = document.getElementById('stat-factchecks');
var eu = document.getElementById('demo-updated');
if (ea) ea.textContent = inc.article_count || 0;
if (es) es.textContent = inc.source_count || 0;
if (ef) ef.textContent = inc.factcheck_count || 0;
if (eu && lag.updated_at) eu.textContent = timeAgo(lag.updated_at);
if (elArticles) elArticles.textContent = incident.article_count || '—'; // Excerpt
if (elSources) elSources.textContent = incident.source_count || '—'; var excerptEl = document.getElementById('excerpt-text');
if (elFactchecks) elFactchecks.textContent = incident.factcheck_count || '—'; var toggleBtn = document.getElementById('excerpt-toggle');
if (elUpdated && lagebild.updated_at) { if (excerptEl && lag.summary_markdown) {
elUpdated.textContent = timeAgo(lagebild.updated_at); var html = mdToText(lag.summary_markdown);
excerptEl.innerHTML = html;
toggleBtn.style.display = 'inline-block';
toggleBtn.addEventListener('click', function () {
var expanded = excerptEl.classList.toggle('expanded');
this.textContent = expanded ? 'Weniger anzeigen' : 'Weiterlesen';
});
}
// Map
if (data.locations && data.locations.length > 0) {
initMap(data.locations, data.category_labels || {});
} }
}) })
.catch(function () { .catch(function () {
var elUpdated = document.getElementById('demo-updated'); var eu = document.getElementById('demo-updated');
if (elUpdated) elUpdated.textContent = 'Daten derzeit nicht verfügbar'; if (eu) eu.textContent = 'Daten derzeit nicht verfügbar';
}); });
} }
/* ==================== LEAFLET MAP ==================== */
function initMap(locations, categoryLabels) {
var mapEl = document.getElementById('map-container');
if (!mapEl || typeof L === 'undefined') return;
var map = L.map(mapEl, {
center: [33.0, 48.0],
zoom: 5,
zoomControl: true,
scrollWheelZoom: false
});
L.tileLayer('https://tile.openstreetmap.de/{z}/{x}/{y}.png', {
attribution: '&copy; OpenStreetMap',
maxZoom: 18
}).addTo(map);
var catColors = {
primary: '#E74C3C',
secondary: '#F39C12',
tertiary: '#3498DB',
mentioned: '#95A5A6'
};
var bounds = [];
locations.forEach(function (loc) {
if (!loc.lat || !loc.lon) return;
var cat = loc.category || 'mentioned';
var color = catColors[cat] || catColors.mentioned;
var catClass = 'cat-' + cat;
var icon = L.divIcon({
className: 'pulse-marker ' + catClass,
iconSize: [12, 12],
iconAnchor: [6, 6]
});
var marker = L.marker([loc.lat, loc.lon], { icon: icon }).addTo(map);
var label = categoryLabels[cat] || cat;
marker.bindPopup('<strong>' + loc.name + '</strong><br>' + label + ' (' + (loc.article_count || 0) + ' Artikel)');
bounds.push([loc.lat, loc.lon]);
});
if (bounds.length > 0) {
map.fitBounds(bounds, { padding: [30, 30], maxZoom: 7 });
}
// Fix tile rendering on hidden tab / late load
setTimeout(function () { map.invalidateSize(); }, 500);
}
/* ==================== INIT ==================== */
loadLiveData(); loadLiveData();
})(); })();