<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Aion Deus Corporation</title>
<style>
/* Reset and basic styling */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif; }
body { background-color: #0a0a0a; color: #f5f5f5; line-height: 1.6; }
/* Header */
header { background: linear-gradient(90deg, #1f1f1f, #111); padding: 20px 0; text-align: center; }
header h1 { font-size: 2.5rem; color: #ff9900; margin-bottom: 10px; }
header p { font-size: 1.2rem; color: #ccc; }
/* Navigation */
nav { text-align: center; margin: 20px 0; }
nav a { color: #ff9900; text-decoration: none; margin: 0 15px; font-weight: bold; transition: 0.3s; }
nav a:hover { color: #fff; }
/* Main Section */
main { padding: 40px 20px; max-width: 1000px; margin: auto; }
.intro { text-align: center; margin-bottom: 50px; }
.intro h2 { font-size: 2rem; color: #ff9900; margin-bottom: 10px; }
.intro p { color: #ccc; font-size: 1.1rem; }
/* Squiggle Button */
.squiggle-btn { display: inline-block; margin-top: 20px; padding: 15px 30px; background: #ff9900; color: #111; font-weight: bold; border-radius: 10px; text-decoration: none; transition: 0.3s; }
.squiggle-btn:hover { background: #ffaa33; }
/* About Section */
.about { margin: 50px 0; display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; }
.about div { flex: 1 1 300px; background: #1f1f1f; padding: 20px; border-radius: 15px; }
.about h3 { color: #ff9900; margin-bottom: 10px; }
.about p { color: #ccc; }
/* Footer */
footer { background: #111; padding: 20px 0; text-align: center; color: #777; font-size: 0.9rem; }
footer a { color: #ff9900; text-decoration: none; margin: 0 5px; }
footer a:hover { color: #fff; }
/* Responsive */
@media(max-width: 768px) {
header h1 { font-size: 2rem; }
.intro h2 { font-size: 1.5rem; }
.about { flex-direction: column; }
}
</style>
</head>
<body>
<header>
<h1>Aion Deus Corporation</h1>
<p>Leading the Squiggle Ops Initiative โ Innovation, Technology, and Beyond</p>
</header>
<nav>
<a href=”#about”>About</a>
<a href=”#squiggle”>Squiggle Ops</a>
<a href=”#contact”>Contact</a>
</nav>
<main>
<section class=”intro”>
<h2>Welcome to Aion Deus Corporation</h2>
<p>Your gateway to the Squiggle Ops universe. Explore the cutting-edge technology and innovation that powers the future.</p>
<a class=”squiggle-btn” href=”squiggle://ausar.merr.amon.ops”>Open Squiggle Ops Gateway</a>
</section>
<section id=”about” class=”about”>
<div>
<h3>Our Mission</h3>
<p>We aim to advance human potential through immersive technology, AI integration, and real-time innovation. Our Squiggle Ops platform is the first step towards a fully connected, intelligent ecosystem.</p>
</div>
<div>
<h3>Our Vision</h3>
<p>To bridge the gap between reality and virtual frontiers, making complex technological operations accessible and actionable from any device, anywhere.</p>
</div>
<div>
<h3>Core Values</h3>
<p>Innovation, Security, Collaboration, and Exponential Growth. Our values guide every project, ensuring that our technology serves the greater good and empowers our users.</p>
</div>
</section>
<section id=”contact” style=”text-align:center; margin-top:50px;”>
<h2>Contact Us</h2>
<p>Email: <a href=”mailto:info@aiondeuscorporation.com”>info@aiondeuscorporation.com</a></p>
<p>LinkedIn: <a href=”https://www.linkedin.com/company/aiondeuscorporation” target=”_blank”>Aion Deus Corporation</a></p>
</section>
</main>
<footer>
© 2025 Aion Deus Corporation. All rights reserved.
</footer>
</body>
</html>