<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Virtustrat is now VSTRAT.ai</title>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap" rel="stylesheet">
    <style>
        :root {
            --default-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            --background-color: #060606;
            --text-color: rgba(255, 255, 255, 0.95);
            scroll-behavior: smooth;
        }

        body {
            color: var(--text-color);
            background-color: var(--background-color);
            font-family: var(--default-font);
            margin: 0;
            padding: 0;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .hero {
            width: 100%;
            min-height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero img {
            position: absolute;
            inset: 0;
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            opacity: 0.6;
        }

        .hero:before {
            content: "";
            background: linear-gradient(to bottom, rgba(6, 6, 6, 0.8), rgba(6, 6, 6, 0.9));
            position: absolute;
            inset: 0;
            z-index: 2;
        }

        .container {
            position: relative;
            z-index: 3;
            text-align: center;
            padding: 0 20px;
            max-width: 800px;
            animation: fadeIn 1s ease-out;
        }

        .hero h2 {
            margin: 0 0 1rem;
            font-size: 2.5rem;
            font-weight: 600;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .hero p {
            margin: 0 0 2rem;
            font-size: 1.25rem;
            font-weight: 300;
            opacity: 0.9;
        }

        a {
            color: var(--text-color);
            text-decoration: none;
            transition: opacity 0.2s ease;
        }

        a:hover {
            opacity: 0.8;
        }

        .btn-get-started {
            display: inline-block;
            padding: 0.8rem 2rem;
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: 0.02em;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .btn-get-started:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            opacity: 1;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            .hero h2 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }
        }
    </style>
</head>
<body>
    <section id="hero" class="hero">
        <img src="/images/000pic1.jpg" alt="">
        <div class="container">

            <h2>Level Unlocked: We're Growing</h2>

            <p>Virtustrat is now <a href="https://vstrat.ai">VSTRAT.ai</a>, a more advanced suite of AI Aided Management Tools.</p>
            
            <p>Check out our <a href="https://vstrat.ai">new home</a>. Registration is free.</p>

            <a href="https://vstrat.ai" class="btn-get-started">Start your journey with VSTRAT.ai</a>

        </div>
    </section>
</body>
</html>