<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vanguard | LVO Holdings</title>
<style>
:root {
--primary-bg: #050505;
--accent-color: #ffffff;
--muted-text: #666666;
--glow-color: rgba(255, 255, 255, 0.1);
}
body {
margin: 0;
padding: 0;
background-color: var(--primary-bg);
color: var(--accent-color);
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
overflow: hidden;
}
/* Subtle radial glow in the center */
body::before {
content: '';
position: absolute;
width: 100%;
height: 100%;
background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
z-index: 0;
}
.container {
text-align: center;
max-width: 900px;
padding: 20px;
z-index: 1;
}
.brand {
font-size: 0.75rem;
letter-spacing: 0.6rem;
text-transform: uppercase;
color: var(--muted-text);
margin-bottom: 1.5rem;
animation: fadeIn 2s ease-in-out;
}
.title {
font-size: 5rem;
font-weight: 900;
text-transform: uppercase;
margin: 0;
letter-spacing: 1.2rem; /* Wider spacing for Vanguard */
line-height: 1;
animation: expandFade 1.5s ease-out;
}
.subtitle {
font-size: 1rem;
margin-top: 1.5rem;
color: var(--accent-color);
font-weight: 300;
letter-spacing: 0.3rem;
text-transform: uppercase;
opacity: 0.8;
animation: fadeIn 2.5s ease-out;
}
.cta-button {
margin-top: 4rem;
padding: 14px 40px;
background: transparent;
border: 1px solid var(--muted-text);
color: var(--accent-color);
text-transform: uppercase;
letter-spacing: 0.4rem;
font-size: 0.65rem;
cursor: pointer;
transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
text-decoration: none;
display: inline-block;
animation: fadeIn 3s ease-out;
}
.cta-button:hover {
border-color: var(--accent-color);
letter-spacing: 0.6rem;
background: rgba(255, 255, 255, 0.05);
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes expandFade {
from {
letter-spacing: 0.2rem;
opacity: 0;
transform: scale(0.95);
}
to {
letter-spacing: 1.2rem;
opacity: 1;
transform: scale(1);
}
}
@media (max-width: 600px) {
.title { font-size: 2.5rem; letter-spacing: 0.5rem; }
.brand { letter-spacing: 0.3rem; }
.subtitle { font-size: 0.7rem; }
}
</style>
</head>
<body>
<div class="container">
<div class="brand">LVO Holdings</div>
<h1 class="title">VANGUARD</h1>
<p class="subtitle">Leading Edge Innovation</p>
<a href="mailto:contact@wearelvo.com" class="cta-button">Initiate</a>
</div>
</body>
</html>