:root {
            --bg: #020814;
            --bg2: #061b38;
            --blue: #009dff;
            --blue2: #00c8ff;
            --text: #f4f8ff;
            --muted: #aebfd5;
            --border: rgba(0, 170, 255, .15);
            --gold: #d5b58c;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            width: 100%;
            height: 100%;
            overflow: hidden;
            font-family: "Segoe UI", sans-serif;
            color: var(--text);
        }

        body {
            background:
                radial-gradient(circle at 15% 20%, rgba(0, 180, 255, .18), transparent 35%),
                radial-gradient(circle at 85% 80%, rgba(0, 100, 255, .18), transparent 40%),
                linear-gradient(135deg,
                    #020814 0%,
                    #04152d 50%,
                    #071f49 100%);
        }

        .container {
            height: 100vh;
            max-height: 100vh;
            display: flex;
            flex-direction: column;
            padding: 20px 30px;
        }

        /* TOP BAR */

        .topbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
        }

        .brand img {
            width: 24px;
            height: 24px;
        }

        .top-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .coming {
            border: 1px solid var(--border);
            padding: 10px 20px;
            border-radius: 999px;
            font-size: .75rem;
            letter-spacing: 3px;
            font-weight: 700;
            background: rgba(255, 255, 255, .02);
        }

        /* HERO */

        .hero {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 18px;
            text-align: center;
        }

        .logo-card {
            width: 650px;
            max-width: 85vw;
            height: 130px;
            border-radius: 28px;
            border: 1px solid var(--border);
            background: rgba(3, 12, 28, .55);
            display: flex;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(10px);
            box-shadow:
                0 0 60px rgba(0, 130, 255, .12);
        }

        .logo-card img {
            margin-top: 25px;
            width: 500px;
            max-width: 80%;
            display: block;
        }

        .tagline {
            border: 1px solid rgba(0, 200, 255, .25);
            border-radius: 999px;
            padding: 10px 28px;
            font-size: .75rem;
            letter-spacing: 4px;
            color: var(--blue2);
            font-weight: 800;
        }

h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.line1 {
    display: block;
    color: #f4f8ff;
    font-size: clamp(3rem, 4vw, 4.5rem);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -2px;
    white-space: nowrap;
}

.line2 {
    display: block;
    color: var(--blue);
    font-size: clamp(3.2rem, 4.3vw, 4.8rem);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -2px;
}

        h1 span {
            color: var(--blue);
            display: block;
        }

        .description {
            max-width: 780px;
            color: var(--muted);
            font-size: 1rem;
            line-height: 1.5;
        }

        /* FEATURES */

        .features {
            width: 100%;
            max-width: 1000px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            margin-top: 10px;
        }

        .feature {
            background: rgba(3, 12, 28, .72);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 20px;
            transition: .25s ease;
        }

        .feature:hover {
            transform: translateY(-3px);
            border-color: rgba(0, 180, 255, .35);
            box-shadow: 0 0 25px rgba(0, 140, 255, .15);
        }

        .icon {
            width: 40px;
            height: 40px;
            margin: 0 auto 12px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 160, 255, .15);
            font-size: 1.1rem;
        }

        .feature h3 {
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .feature p {
            color: var(--muted);
            font-size: .82rem;
            line-height: 1.4;
        }

        /* FOOTER */

        .footer {
            text-align: center;
            color: var(--gold);
            letter-spacing: 4px;
            font-size: .75rem;
            font-weight: 700;
            padding-bottom: 10px;
        }

        @media(max-width:900px) {

            body {
                overflow-y: auto;
            }

            .container {
                height: auto;
                min-height: 100vh;
            }

            .features {
                grid-template-columns: repeat(2, 1fr);
            }

            .logo-card {
                height: 140px;
            }

            .logo-card img {
                padding-top: 100px;
                width: 380px;
            }
        }

        @media(max-width:600px) {

            .topbar {
                gap: 14px;
                align-items: flex-start;
            }

            .top-actions {
                gap: 8px;
            }

            .coming {
                padding: 9px 14px;
                letter-spacing: 2px;
            }

            .features {
                grid-template-columns: 1fr;
            }

            h1 {
                font-size: 2.4rem;
            }

            .description {
                font-size: .9rem;
            }
        }

.login-link {
    text-decoration: none;
    color: var(--text);
    cursor: pointer;
    transition: .25s ease;
}

.login-link:hover {
    border-color: rgba(0, 200, 255, .45);
    color: var(--blue2);
    box-shadow: 0 0 18px rgba(0, 160, 255, .18);
}
