.hero-banner {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 10%, rgba(45, 95, 220, 0.95), rgba(6, 18, 62, 0.35) 22%, rgba(1, 8, 34, 0.96) 55%),
        linear-gradient(90deg, #010824 0%, #02134d 44%, #010824 100%);
}

.hero-banner__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 8%, rgba(74, 136, 255, 0.85), transparent 24%),
        radial-gradient(circle at 86% 92%, rgba(39, 99, 255, 0.18), transparent 18%),
        linear-gradient(180deg, rgba(2, 8, 36, 0.02), rgba(2, 8, 36, 0.58));
}

.hero-banner__container {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    min-height: 100vh;
    padding: 42px 0 34px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 560px;
    gap: 54px;
    align-items: center;
}

.hero-banner__topbar {
    position: absolute;
    top: 42px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: #eef4ff;
    font-weight: 800;
}

.hero-banner__corner-dots {
    position: absolute;
    top: 44px;
    left: 0;
}

.hero-banner__corner-dots--right {
    position: absolute;
    top: 44px;
    right: 0;
}

.hero-banner__content {
    max-width: 560px;
    padding-top: 72px;
}

.hero-banner__eyebrow {
    margin-bottom: 34px;
}

.hero-banner__title {
    margin: 0 0 28px;
    font-size: 78px;
    line-height: 0.9;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.hero-banner__subtitle {
    margin: 0 0 32px;
    font-size: 18px;
    line-height: 1.72;
    color: #eef4ff;
    max-width: 620px;
}

.hero-banner__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-banner__tagline {
    font-size: 14px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: #f3f7ff;
    font-weight: 500;
}

.hero-banner__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner__visual::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: 12px;
    bottom: 12px;
    border-radius: 999px;
    background: rgba(70, 123, 255, 0.16);
    filter: blur(4px);
}

.hero-banner__visual-frame {
    position: relative;
    width: 100%;
    max-width: 590px;
    border-radius: 34px;
    padding: 22px;
    background: rgba(20, 37, 86, 0.72);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.03),
        0 30px 60px rgba(0,0,0,0.28);
}

.hero-banner__visual-frame::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
    z-index: 0;
    pointer-events: none;
}

.hero-banner__visual-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 26px;
    display: block;
    box-shadow: 0 0 50px rgba(24, 87, 255, 0.18);
}

@media (max-width: 1200px) {
    .hero-banner__container {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 86px;
    }

    .hero-banner__content {
        max-width: 100%;
        padding-top: 28px;
    }

    .hero-banner__visual-frame {
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-banner__container {
        width: min(100% - 32px, 1200px);
        padding: 82px 0 28px;
        min-height: auto;
    }

    .hero-banner__topbar {
        top: 28px;
        font-size: 11px;
        letter-spacing: 0.28em;
    }

    .hero-banner__corner-dots,
    .hero-banner__corner-dots--right {
        top: 30px;
    }

    .hero-banner__title {
        font-size: 48px;
    }

    .hero-banner__subtitle {
        font-size: 16px;
    }

    .hero-banner__buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-banner__tagline {
        font-size: 12px;
        letter-spacing: 0.24em;
        line-height: 1.8;
    }
}