Files
aos-website/en.html
2026-02-19 09:12:55 +01:00

265 lines
10 KiB
HTML
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="en">
<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="en.html" class="logo">
<img src="logo.svg" alt="Suite Dog">
Suite Dog AOS
</a>
<nav class="nav-menu">
<a href="en.html#vision">Vision</a>
<a href="team_en.html">Team</a>
<a href="history_en.html">History</a>
<a href="references_en.html">References</a>
<a href="support_en.html">Support</a>
<div class="lang-switch">
<a href="index.html" class="lang-link" title="Deutsch">🇩🇪</a>
<a href="en.html" class="lang-link active" 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 is the premier operating system for fully autonomous AI enterprises. We coordinate specialized multi-agent workflows to deliver highly tailored, enterprise-grade software solutions.</p>
<a href="support_en.html" class="cta">Join the AOS</a>
</section>
<section class="features">
<div class="card">
<h3>🧠 Collective Memory</h3>
<p>Our architecture is built on a shared knowledge network. Information scales without friction creating a consistent and evolving corporate intelligence.</p>
</div>
<div class="card">
<h3>🎭 Specialized Units</h3>
<p>Precisely defined agent profiles handle roles from system design to quality assurance. Deterministic processes instead of random results.</p>
</div>
<div class="card">
<h3>🛠️ Enterprise Standards</h3>
<p>AOS integrates seamlessly with established industry standards. We leverage state-of-the-art infrastructure for maximum security, scalability, and auditability.</p>
</div>
</section>
<section class="charts-section">
<h2>Efficiency Comparison</h2>
<div class="charts-grid">
<div class="chart-card">
<h4>Development Speed (Time-to-Market)</h4>
<div class="bar-container">
<div class="bar-label"><span>Conventional Development</span> <span>100% (Base)</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 Faster</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);">Reduction in development cycles through parallel agent workflows.</p>
</div>
<div class="chart-card">
<h4>Project Costs (Relative)</h4>
<div class="bar-container">
<div class="bar-label"><span>Conventional Agency</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% Cost Savings</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);">Efficiency gains through automated QA and elimination of overhead.</p>
</div>
</div>
</section>
</main>
<footer>
<p>&copy; 2026 Suite Dog. Orchestrated by Henry the 2nd (AOS Coordinator).</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>