193 lines
5.3 KiB
HTML
193 lines
5.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>AI Gateway</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap" rel="stylesheet">
|
|
<style>
|
|
:root {
|
|
--primary: #6366f1;
|
|
--primary-hover: #4f46e5;
|
|
--bg: #0f172a;
|
|
--text-main: #f8fafc;
|
|
--text-dim: #94a3b8;
|
|
--glass: rgba(30, 41, 59, 0.7);
|
|
--border: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Outfit', sans-serif;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--bg);
|
|
color: var(--text-main);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.bg-gradient {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: radial-gradient(circle at 50% 50%, #1e1b4b 0%, #0f172a 100%);
|
|
z-index: -1;
|
|
}
|
|
|
|
/* Animated background elements */
|
|
.blob {
|
|
position: absolute;
|
|
width: 500px;
|
|
height: 500px;
|
|
background: linear-gradient(135deg, rgba(99, 102, 241, 0.2) 0%, rgba(192, 132, 252, 0.2) 100%);
|
|
filter: blur(80px);
|
|
border-radius: 50%;
|
|
z-index: -1;
|
|
animation: move 20s infinite alternate;
|
|
}
|
|
|
|
.blob-2 {
|
|
width: 400px;
|
|
height: 400px;
|
|
background: linear-gradient(135deg, rgba(129, 140, 248, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
|
|
bottom: -100px;
|
|
right: -100px;
|
|
animation: move 15s infinite alternate-reverse;
|
|
}
|
|
|
|
@keyframes move {
|
|
from {
|
|
transform: translate(-10%, -10%) scale(1);
|
|
}
|
|
|
|
to {
|
|
transform: translate(10%, 10%) scale(1.1);
|
|
}
|
|
}
|
|
|
|
.container {
|
|
max-width: 600px;
|
|
width: 90%;
|
|
padding: 3rem;
|
|
background: var(--glass);
|
|
backdrop-filter: blur(20px);
|
|
-webkit-backdrop-filter: blur(20px);
|
|
border-radius: 32px;
|
|
border: 1px solid var(--border);
|
|
text-align: center;
|
|
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
|
|
animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
|
|
}
|
|
|
|
.logo {
|
|
font-size: 3rem;
|
|
font-weight: 800;
|
|
margin-bottom: 1.5rem;
|
|
background: linear-gradient(to right, #818cf8, #c084fc);
|
|
-webkit-background-clip: text;
|
|
background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
letter-spacing: -1px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.5rem;
|
|
font-weight: 400;
|
|
color: var(--text-dim);
|
|
margin-bottom: 2.5rem;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.contact-card {
|
|
background: rgba(15, 23, 42, 0.4);
|
|
padding: 1.5rem;
|
|
border-radius: 20px;
|
|
border: 1px solid var(--border);
|
|
display: inline-flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.contact-card:hover {
|
|
transform: translateY(-5px);
|
|
border-color: var(--primary);
|
|
box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.2);
|
|
}
|
|
|
|
.label {
|
|
font-size: 0.8rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
color: var(--primary);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.email {
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
color: var(--text-main);
|
|
text-decoration: none;
|
|
transition: color 0.3s ease;
|
|
}
|
|
|
|
.email:hover {
|
|
color: #818cf8;
|
|
}
|
|
|
|
@keyframes fadeInUp {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
/* Footer */
|
|
.footer {
|
|
position: fixed;
|
|
bottom: 2rem;
|
|
color: var(--text-dim);
|
|
font-size: 0.8rem;
|
|
opacity: 0.6;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="bg-gradient"></div>
|
|
<div class="blob"></div>
|
|
<div class="blob-2"></div>
|
|
|
|
<div class="container">
|
|
<div class="logo">AI Gateway</div>
|
|
<h1>Welcome to the internal AI Gateway services. Access is restricted to authorized personnel.</h1>
|
|
|
|
<div class="contact-card">
|
|
<span class="label">For inquiries</span>
|
|
<a href="mailto:paulo.reyes@sutherlandglobal.com" class="email">paulo.reyes@sutherlandglobal.com</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
© 2026 Paulo Reyes. All rights reserved.
|
|
</div>
|
|
</body>
|
|
|
|
</html> |