* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    background: #07111f;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px 20px;
    background:
        radial-gradient(
            circle at top left,
            rgba(34, 211, 238, 0.20),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(59, 130, 246, 0.22),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #07111f 0%,
            #0f2741 55%,
            #0b1728 100%
        );
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
}

.hero::before {
    width: 280px;
    height: 280px;
    top: -130px;
    right: -90px;
    background: #22d3ee;
}

.hero::after {
    width: 240px;
    height: 240px;
    bottom: -120px;
    left: -80px;
    background: #3b82f6;
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 850px;
    text-align: center;
}

.hero__badge {
    display: inline-block;
    margin-bottom: 22px;
    padding: 9px 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.hero__logo {
    margin: 0;
    font-size: clamp(4rem, 10vw, 7.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    background: linear-gradient(
        90deg,
        #ffffff,
        #67e8f9,
        #60a5fa
    );
    background-clip: text;
    color: transparent;
}

.hero__title {
    margin: 22px 0 0;
    font-size: clamp(1.7rem, 4vw, 3rem);
}

.hero__description {
    max-width: 650px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero__line {
    width: 90px;
    height: 4px;
    margin: 30px auto;
    border-radius: 10px;
    background: linear-gradient(90deg, #22d3ee, #3b82f6);
}

.hero__status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.09);
}

.hero__dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #22d3ee;
    animation: pulse 1.8s infinite;
}

.hero__footer {
    margin-top: 35px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(34, 211, 238, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 30px 18px;
    }

    .hero__logo {
        letter-spacing: -2px;
    }

    .hero__description {
        font-size: 1rem;
    }
}