<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>PCV Hub | Secure Communications</title>

    <style>

        /* Sleek, modern dark mode reset */

        body {

            margin: 0;

            padding: 0;

            background-color: #0f172a; /* Deep Slate */

            color: #e2e8f0;

            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

            display: flex;

            flex-direction: column;

            align-items: center;

            justify-content: center;

            height: 100vh;

            text-align: center;

        }

       

        /* Typography */

        h1 {

            font-size: 3rem;

            margin-bottom: 0.5rem;

            color: #f8fafc;

            letter-spacing: -0.05em;

        }

       

        p {

            font-size: 1.25rem;

            color: #94a3b8;

            max-width: 600px;

            line-height: 1.6;

            padding: 0 20px;

        }

        /* Glowing Status Badge */

        .status-badge {

            margin-top: 2rem;

            padding: 0.5rem 1.25rem;

            background-color: #1e293b;

            border: 1px solid #334155;

            border-radius: 9999px;

            font-size: 0.875rem;

            font-weight: 600;

            color: #10b981; /* Emerald Green */

            display: inline-flex;

            align-items: center;

            gap: 10px;

            letter-spacing: 0.05em;

            text-transform: uppercase;

        }

        .pulse-dot {

            width: 10px;

            height: 10px;

            background-color: #10b981;

            border-radius: 50%;

            box-shadow: 0 0 10px #10b981;

            animation: pulse 2s infinite;

        }

        /* Simple animation for the online dot */

        @keyframes pulse {

            0% { opacity: 1; }

            50% { opacity: 0.4; }

            100% { opacity: 1; }

        }

    </style>

</head>

<body>

    <h1>PC Ventures</h1>

    <p>Next-generation digital infrastructure, B2B logistics, and secure communications.</p>

   

    <div class="status-badge">

        <div class="pulse-dot"></div>

        Core Engine Online

    </div>

</body>

</html>