<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>Ops | LVO Holdings</title>

    <style>

        :root {

            --primary-bg: #0a0a0a;

            --accent-color: #ffffff;

            --text-secondary: #888888;

            --grid-color: rgba(255, 255, 255, 0.03);

        }


        body {

            margin: 0;

            padding: 0;

            background-color: var(--primary-bg);

            /* Subtle grid background for an "Ops" feel */

            background-image: linear-gradient(var(--grid-color) 1px, transparent 1px),

                              linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);

            background-size: 50px 50px;

            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;

        }


        .container {

            text-align: center;

            max-width: 800px;

            padding: 20px;

            z-index: 1;

        }


        .brand {

            font-size: 0.8rem;

            letter-spacing: 0.5rem;

            text-transform: uppercase;

            color: var(--text-secondary);

            margin-bottom: 1rem;

            animation: fadeIn 1.5s ease-out;

        }


        .title {

            font-size: 4rem;

            font-weight: 900;

            text-transform: uppercase;

            margin: 0;

            letter-spacing: 0.2rem;

            animation: slideUp 1s ease-out;

        }


        .subtitle {

            font-size: 1.1rem;

            margin-top: 1rem;

            color: var(--text-secondary);

            font-weight: 300;

            letter-spacing: 0.1rem;

            animation: fadeIn 2s ease-out;

        }


        .cta-button {

            margin-top: 3rem;

            padding: 12px 35px;

            background: var(--accent-color);

            border: 1px solid var(--accent-color);

            color: var(--primary-bg);

            text-transform: uppercase;

            letter-spacing: 0.2rem;

            font-size: 0.7rem;

            font-weight: 700;

            cursor: pointer;

            transition: all 0.3s ease;

            text-decoration: none;

            display: inline-block;

            animation: fadeIn 2.5s ease-out;

        }


        .cta-button:hover {

            background: transparent;

            color: var(--accent-color);

        }


        @keyframes fadeIn {

            from { opacity: 0; }

            to { opacity: 1; }

        }


        @keyframes slideUp {

            from { transform: translateY(20px); opacity: 0; }

            to { transform: translateY(0); opacity: 1; }

        }


        @media (max-width: 600px) {

            .title { font-size: 3rem; }

            .subtitle { font-size: 0.9rem; }

        }

    </style>

</head>

<body>


    <div class="container">

        <div class="brand">LVO Holdings</div>

        <h1 class="title">OPS</h1>

        <p class="subtitle">Precision Execution. Systems Optimization.</p>

        <a href="mailto:contact@wearelvo.com" class="cta-button">System Access</a>

    </div>


</body>

</html>