/* Refined light, text-first hero shared by both site variants. */
.hero-banner-v1 {
    isolation: isolate;
    overflow: hidden;
    min-height: 700px;
    padding: 205px 0 105px;
    background:
        radial-gradient(circle at 12% 28%, rgba(89, 86, 233, .14), transparent 32%),
        radial-gradient(circle at 88% 70%, rgba(49, 199, 190, .16), transparent 30%),
        linear-gradient(135deg, #f8f9ff 0%, #eef5ff 50%, #f1fffc 100%);
}
.hero-banner-v1::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .5;
    background-image:
        linear-gradient(rgba(38, 68, 120, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(38, 68, 120, .045) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: linear-gradient(to bottom, #000, transparent 92%);
    mask-image: linear-gradient(to bottom, #000, transparent 92%);
}
.hero-banner-v1::after {
    width: 420px;
    height: 420px;
    top: 20%;
    right: -230px;
    left: auto;
    border: 1px solid rgba(89, 86, 233, .13);
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    filter: none;
    z-index: -1;
}
.hero-banner-v1 .bg-one,
.hero-banner-v1 .bg-two {
    position: absolute;
    border-radius: 50%;
    background: none;
}
.hero-banner-v1 .bg-one {
    left: -135px;
    bottom: 40px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(49, 199, 190, .18);
}
.hero-banner-v1 .bg-two {
    right: 12%;
    top: 150px;
    bottom: auto;
    width: 70px;
    height: 70px;
    border: 1px solid rgba(89, 86, 233, .12);
    background: rgba(255, 255, 255, .48);
    box-shadow: 0 18px 50px rgba(48, 75, 130, .08);
}
.hero-banner-v1 .hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}
.hero-banner-v1 .hero-content h1 {
    max-width: 880px;
    margin: 0 auto 28px;
    color: #162542;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.06;
    letter-spacing: -.04em;
}
.hero-banner-v1 .hero-content h1 span {
    color: #5956e9;
}
.hero-banner-v1 .hero-content p.hero-lead {
    max-width: 680px;
    margin: 0 auto 34px;
    color: #55627a;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.75;
}
.hero-banner-v1 .hero-actions {
    margin-bottom: 28px;
}
.hero-banner-v1 .hero-call-btn {
    display: inline-flex;
    min-width: 230px;
    height: 60px;
    padding: 0 30px;
    align-items: center;
    justify-content: center;
    border: 1px solid #5956e9;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #5956e9, #4542cf);
    box-shadow: 0 14px 30px rgba(89, 86, 233, .24);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}
.hero-banner-v1 .hero-call-btn:hover,
.hero-banner-v1 .hero-call-btn:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, #4845d9, #3734bd);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(89, 86, 233, .3);
}
.hero-banner-v1 .hero-call-btn:focus-visible {
    outline: 3px solid rgba(89, 86, 233, .28);
    outline-offset: 4px;
}
.hero-banner-v1 .hero-content p.hero-disclosure {
    max-width: 650px;
    margin: 0 auto;
    color: #78849a;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.65;
}
@media (max-width: 767px) {
    .hero-banner-v1 {
        min-height: auto;
        padding: 165px 0 78px;
    }
    .hero-banner-v1 .hero-content {
        padding: 0 4px;
    }
    .hero-banner-v1 .hero-content h1 {
        margin-bottom: 22px;
        font-size: clamp(39px, 12vw, 53px);
        line-height: 1.09;
    }
    .hero-banner-v1 .hero-content p.hero-lead {
        margin-bottom: 28px;
        font-size: 16px;
        line-height: 1.65;
    }
    .hero-banner-v1 .hero-call-btn {
        width: 100%;
        max-width: 310px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .hero-banner-v1 .hero-call-btn { transition: none; }
}
