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

body {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    background: linear-gradient(135deg, #071320 0%, #0f172a 45%, #172554 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, .22), transparent 30%), radial-gradient(circle at 80% 30%, rgba(14, 165, 233, .16), transparent 28%), radial-gradient(circle at 50% 90%, rgba(59, 130, 246, .14), transparent 35%);
        pointer-events: none;
    }

.container {
    position: relative;
    z-index: 1;
    max-width: 880px;
    padding: 48px 28px;
    text-align: center;
}

.logo {
    width: 586px;
    max-width: 75%;
    margin-bottom: 34px;
    filter: drop-shadow(0 0 25px rgba(37, 99, 235, .35));
    height: 147px;
}

.badge {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    color: #93c5fd;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 28px;
    background: rgba(15, 23, 42, .45);
}

h1 {
    font-size: clamp(40px, 7vw, 68px);
    line-height: 1.05;
    font-weight: 600;
    margin-bottom: 22px;
}

.subtitle {
    color: #cbd5e1;
    font-size: clamp(16px, 2.4vw, 22px);
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto 34px auto;
}

.coming {
    display: inline-block;
    background: #2563eb;
    padding: 15px 34px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 18px 45px rgba(37, 99, 235, .28);
    margin-top: 8px;
}

.products {
    margin-top: 52px;
}

    .products span {
        display: inline-block;
        margin: 8px;
        padding: 12px 22px;
        border-radius: 10px;
        background: rgba(30, 41, 59, .82);
        border: 1px solid rgba(255, 255, 255, .08);
        color: #e2e8f0;
        font-size: 14px;
        letter-spacing: .08em;
    }

footer {
    margin-top: 48px;
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.8;
}

a {
    color: #93c5fd;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

@media (max-width: 600px) {
    .logo {
        width: 180px;
    }

    .container {
        padding: 36px 22px;
    }

    .coming {
        width: 100%;
    }
}
