
<!DOCTYPE html>
<html lang="en">

<head>

<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>AGKTech | Coming Soon</title>

<style>

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Segoe UI, Arial, sans-serif;
background:#08111f;
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
color:#ffffff;
position:relative;
}

body:before{
content:"";
position:absolute;
width:600px;
height:600px;
background:#2563eb;
opacity:.15;
filter:blur(180px);
border-radius:50%;
top:-200px;
left:-200px;
}

body:after{
content:"";
position:absolute;
width:600px;
height:600px;
background:#7c3aed;
opacity:.15;
filter:blur(180px);
border-radius:50%;
bottom:-200px;
right:-200px;
}

.card{
position:relative;
z-index:10;
width:92%;
max-width:850px;
padding:70px 60px;
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(16px);
border-radius:32px;
box-shadow:0 30px 80px rgba(0,0,0,.45);
text-align:center;
}

.logo{
width:100px;
height:100px;
margin:auto;
margin-bottom:30px;
border-radius:28px;
background:linear-gradient(135deg,#2563eb,#7c3aed);
display:flex;
align-items:center;
justify-content:center;
font-size:44px;
}

.tag{
font-size:12px;
letter-spacing:6px;
color:#60a5fa;
font-weight:700;
margin-bottom:18px;
}

h1{
font-size:64px;
font-weight:800;
margin-bottom:22px;
}

h2{
font-size:30px;
font-weight:600;
color:#e2e8f0;
margin-bottom:30px;
}

.description{
max-width:700px;
margin:auto;
font-size:20px;
line-height:1.9;
color:#cbd5e1;
}

.button-area{
margin-top:45px;
}

.btn{
display:inline-block;
padding:16px 30px;
border-radius:14px;
text-decoration:none;
font-weight:600;
border:1px solid rgba(255,255,255,.15);
color:white;
transition:.3s;
}

.btn:hover{
background:rgba(255,255,255,.08);
}

.contact{
margin-top:55px;
color:#94a3b8;
font-size:15px;
}

.email{
color:#60a5fa;
text-decoration:none;
}

.footer{
margin-top:25px;
color:#64748b;
font-size:13px;
}

@media(max-width:768px){

.card{
padding:45px 25px;
}

h1{
font-size:42px;
}

h2{
font-size:24px;
}

.description{
font-size:17px;
}

}

</style>

</head>

<body>

<div class="card">

<div class="logo">⚡</div>

<div class="tag">
AGKTECH
</div>

<h1>
Building The Future
</h1>

<h2>
Something Amazing Is Coming Soon
</h2>

<div class="description">
We are developing innovative AI solutions, business automation platforms,
cloud integrations and modern digital tools designed to simplify workflows,
increase productivity and accelerate digital transformation.
</div>

<div class="button-area">


</div>

<div class="contact">

Contact Us

<br><br>

<a class="email"
href="mailto:hello@agktech.online">
hello@agktech.online
</a>

</div>

<div class="footer">
© 2026 AGKTech. All Rights Reserved.
</div>

</div>

</body>
</html>