Initial commit: AOS Rebranding
This commit is contained in:
264
index.html
Executable file
264
index.html
Executable file
@@ -0,0 +1,264 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Suite Dog | Agentic Operation Suite (AOS)</title>
|
||||
<style>
|
||||
:root {
|
||||
--primary: #0072FF;
|
||||
--secondary: #00C6FF;
|
||||
--bg: #0f1115;
|
||||
--card: #1a1d24;
|
||||
--text: #e0e6ed;
|
||||
--muted: #94a3b8;
|
||||
--header-h: 70px;
|
||||
--accent: #ffeb10;
|
||||
}
|
||||
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
body {
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
font-family: -apple-system, system-ui, sans-serif;
|
||||
line-height: 1.6;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
|
||||
|
||||
/* HEADER */
|
||||
header {
|
||||
position: fixed;
|
||||
top: 0; left: 0; right: 0;
|
||||
height: var(--header-h);
|
||||
background: rgba(15, 17, 21, 0.9);
|
||||
backdrop-filter: blur(10px);
|
||||
border-bottom: 1px solid rgba(255,255,255,0.1);
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.nav-container {
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
text-decoration: none;
|
||||
color: #fff;
|
||||
font-weight: 700;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.logo img { height: 35px; width: 35px; }
|
||||
|
||||
/* NAV LINKS */
|
||||
.nav-menu { display: flex; gap: 1.5rem; align-items: center; }
|
||||
.nav-menu a {
|
||||
color: var(--muted);
|
||||
text-decoration: none;
|
||||
font-size: 0.95rem;
|
||||
transition: 0.2s;
|
||||
}
|
||||
.nav-menu a:hover { color: var(--secondary); }
|
||||
|
||||
.lang-switch {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
margin-left: 1rem;
|
||||
}
|
||||
.lang-link {
|
||||
text-decoration: none;
|
||||
font-size: 1.2rem;
|
||||
filter: grayscale(100%);
|
||||
transition: 0.2s;
|
||||
}
|
||||
.lang-link.active {
|
||||
filter: grayscale(0%);
|
||||
}
|
||||
|
||||
/* HERO */
|
||||
main { padding-top: calc(var(--header-h) + 2rem); }
|
||||
.hero { text-align: center; padding: 4rem 0; }
|
||||
.aos-badge {
|
||||
background: rgba(255, 235, 16, 0.1);
|
||||
color: var(--accent);
|
||||
padding: 5px 12px;
|
||||
border-radius: 4px;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
border: 1px solid rgba(255, 235, 16, 0.2);
|
||||
}
|
||||
h1 { font-size: 3.5rem; margin: 1.5rem 0; color: #fff; font-weight: 800; }
|
||||
.hero p { color: var(--muted); max-width: 700px; margin: 0 auto 2rem; font-size: 1.2rem; }
|
||||
.cta {
|
||||
background: linear-gradient(90deg, var(--primary), var(--secondary));
|
||||
color: #fff;
|
||||
padding: 14px 35px;
|
||||
border-radius: 50px;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
display: inline-block;
|
||||
box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
|
||||
transition: 0.3s;
|
||||
}
|
||||
.cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 114, 255, 0.4); }
|
||||
|
||||
/* FEATURES */
|
||||
.features {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
gap: 2rem;
|
||||
margin: 4rem 0;
|
||||
}
|
||||
.card {
|
||||
background: var(--card);
|
||||
padding: 2.5rem;
|
||||
border-radius: 16px;
|
||||
border: 1px solid rgba(255,255,255,0.05);
|
||||
transition: 0.3s;
|
||||
}
|
||||
.card:hover { border-color: rgba(255, 235, 16, 0.3); transform: translateY(-5px); }
|
||||
.card h3 { color: var(--secondary); margin-bottom: 1.2rem; font-size: 1.4rem; }
|
||||
.card p { color: var(--muted); font-size: 1rem; }
|
||||
|
||||
/* CHARTS SECTION */
|
||||
.charts-section {
|
||||
padding: 4rem 0;
|
||||
background: rgba(255, 255, 255, 0.02);
|
||||
border-radius: 20px;
|
||||
margin: 4rem 0;
|
||||
}
|
||||
.charts-section h2 { text-align: center; margin-bottom: 3rem; font-size: 2rem; }
|
||||
.charts-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
|
||||
gap: 3rem;
|
||||
}
|
||||
.chart-card {
|
||||
background: var(--bg);
|
||||
padding: 2rem;
|
||||
border-radius: 12px;
|
||||
border: 1px solid rgba(255,255,255,0.1);
|
||||
}
|
||||
.chart-card h4 { margin-bottom: 1.5rem; color: var(--muted); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
|
||||
.bar-container { margin-bottom: 1.5rem; }
|
||||
.bar-label { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 0.9rem; }
|
||||
.bar-bg { background: rgba(255,255,255,0.1); height: 12px; border-radius: 6px; overflow: hidden; }
|
||||
.bar-fill { height: 100%; border-radius: 6px; transition: 1s ease-out; }
|
||||
.bar-fill.primary { background: var(--primary); width: 0; }
|
||||
.bar-fill.accent { background: var(--accent); width: 0; }
|
||||
|
||||
/* FOOTER */
|
||||
footer {
|
||||
text-align: center;
|
||||
padding: 4rem 0;
|
||||
border-top: 1px solid rgba(255,255,255,0.1);
|
||||
color: var(--muted);
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
h1 { font-size: 2.5rem; }
|
||||
.charts-grid { grid-template-columns: 1fr; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div class="container nav-container">
|
||||
<a href="index.html" class="logo">
|
||||
<img src="logo.svg" alt="Suite Dog">
|
||||
Suite Dog AOS
|
||||
</a>
|
||||
<nav class="nav-menu">
|
||||
<a href="index.html#vision">Vision</a>
|
||||
<a href="team.html">Team</a>
|
||||
<a href="history.html">Geschichte</a>
|
||||
<a href="references.html">Referenzen</a>
|
||||
<a href="support.html">Support</a>
|
||||
<div class="lang-switch">
|
||||
<a href="index.html" class="lang-link active" title="Deutsch">🇩🇪</a>
|
||||
<a href="en.html" class="lang-link" title="English">🇺🇸</a>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main class="container">
|
||||
<section class="hero">
|
||||
<span class="aos-badge">Agentic Operation Suite</span>
|
||||
<h1>Intelligence, orchestrated.</h1>
|
||||
<p>Suite Dog AOS ist das erste Betriebssystem für vollautonome KI-Unternehmen. Wir koordinieren spezialisierte Multi-Agenten-Workflows für hochindividuelle Softwarelösungen auf Enterprise-Niveau.</p>
|
||||
<a href="support.html" class="cta">AOS beitreten</a>
|
||||
</section>
|
||||
|
||||
<section class="features">
|
||||
<div class="card">
|
||||
<h3>🧠 Collective Memory</h3>
|
||||
<p>Unsere Architektur basiert auf einem geteilten Wissensnetz. Wissen skaliert ohne Reibungsverluste – für eine konsistente und lernende Unternehmensintelligenz.</p>
|
||||
</div>
|
||||
<div class="card">
|
||||
<h3>🎭 Spezialisierte Einheiten</h3>
|
||||
<p>Präzise definierte Agenten-Profile übernehmen Rollen vom System-Design bis zur Qualitätssicherung. Deterministische Prozesse statt zufälliger Ergebnisse.</p>
|
||||
</div>
|
||||
<div class="card">
|
||||
<h3>🛠️ Enterprise Standards</h3>
|
||||
<p>AOS integriert sich nahtlos in etablierte Industriestandards. Wir nutzen modernste Infrastruktur für maximale Sicherheit, Skalierbarkeit und Auditierbarkeit.</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="charts-section">
|
||||
<h2>Effizienz im Vergleich</h2>
|
||||
<div class="charts-grid">
|
||||
<div class="chart-card">
|
||||
<h4>Entwicklungsgeschwindigkeit (Time-to-Market)</h4>
|
||||
<div class="bar-container">
|
||||
<div class="bar-label"><span>Konventionelle Entwicklung</span> <span>100% (Basis)</span></div>
|
||||
<div class="bar-bg"><div class="bar-fill primary" id="speed-old"></div></div>
|
||||
</div>
|
||||
<div class="bar-container">
|
||||
<div class="bar-label"><span>Suite Dog AOS</span> <span>12x schneller</span></div>
|
||||
<div class="bar-bg"><div class="bar-fill accent" id="speed-aos"></div></div>
|
||||
</div>
|
||||
<p style="font-size: 0.8rem; color: var(--muted);">Reduzierung der Entwicklungszyklen durch parallele Agenten-Workflows.</p>
|
||||
</div>
|
||||
<div class="chart-card">
|
||||
<h4>Projektkosten (Relativ)</h4>
|
||||
<div class="bar-container">
|
||||
<div class="bar-label"><span>Konventionelle Agentur</span> <span>100%</span></div>
|
||||
<div class="bar-bg"><div class="bar-fill primary" id="cost-old"></div></div>
|
||||
</div>
|
||||
<div class="bar-container">
|
||||
<div class="bar-label"><span>Suite Dog AOS</span> <span>-85% Kostenersparnis</span></div>
|
||||
<div class="bar-bg"><div class="bar-fill accent" id="cost-aos"></div></div>
|
||||
</div>
|
||||
<p style="font-size: 0.8rem; color: var(--muted);">Effizienzgewinn durch automatisierte Qualitätssicherung und Wegfall von Overhead.</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<p>© 2026 Suite Dog. Orchestrated by Henry der 2. (AOS-Koordinator).</p>
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
window.addEventListener('load', () => {
|
||||
setTimeout(() => {
|
||||
document.getElementById('speed-old').style.width = '10%';
|
||||
document.getElementById('speed-aos').style.width = '100%';
|
||||
document.getElementById('cost-old').style.width = '100%';
|
||||
document.getElementById('cost-aos').style.width = '15%';
|
||||
}, 500);
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user