.landing-hero-bg {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-image: url('../images/landing-hero-bg.jpg');
    min-height: 680px;
    display: flex;
    align-items: center;
    background-position: center 52%;
    background-size: cover;
}

.landing-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(249, 250, 255, .96) 0%, rgba(249, 250, 255, .84) 45%, rgba(238, 233, 255, .26) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(239, 235, 255, .2));
}

.landing-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .22;
    background-image:
        linear-gradient(rgba(58, 77, 126, .14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58, 77, 126, .14) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(90deg, #000, transparent 68%);
}

.landing-hero-bg .container {
    position: relative;
    z-index: 1;
}

.landing-hero-copy {
    width: 100%;
    padding: 54px 58px;
    border: 1px solid rgba(255, 255, 255, .52);
    border-radius: 30px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .76), rgba(255, 255, 255, .3));
    box-shadow: 0 26px 70px rgba(43, 34, 96, .1);
    backdrop-filter: blur(4px);
}

.landing-hero-copy .display-title {
    margin-top: 8px;
    max-width: none;
    font-size: clamp(2.5rem, 4.7vw, 4.65rem);
}

.landing-hero-copy .lead-copy {
    max-width: none;
}

.landing-hero-bg .browser {
    border-color: rgba(255, 255, 255, .78);
    box-shadow: 0 35px 80px rgba(62, 45, 132, .22);
}

.landing-audience-grid > div {
    display: flex;
}

.audience-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    border: 1px solid #e4e8f1;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(27, 45, 86, .08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(27, 45, 86, .15);
}

.audience-card.featured {
    border-color: rgba(61, 83, 224, .28);
}

.audience-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.audience-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(5, 20, 50, .64));
}

.audience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.audience-card:hover .audience-image img {
    transform: scale(1.06);
}

.audience-image > span {
    position: absolute;
    z-index: 1;
    left: 18px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 20px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.audience-content {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 27px 26px 25px;
}

.audience-content .card-number {
    position: absolute;
    top: 23px;
    right: 24px;
    color: #d9deea;
    font-size: 1.15rem;
    font-weight: 700;
}

.audience-content h3 {
    max-width: calc(100% - 42px);
    margin: 0 0 11px;
    font-size: 1.25rem;
}

.audience-content p {
    margin: 0 0 22px;
    color: #69758a;
    font-size: .95rem;
    line-height: 1.7;
}

.audience-content a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    padding: 12px 15px;
    border-radius: 12px;
    background: #eef3ff;
    color: #1769ff;
    font-weight: 600;
    transition: .25s ease;
}

.audience-content a:hover {
    background: linear-gradient(135deg, #1769ff, #7047eb);
    color: #fff;
}

@media (max-width: 991.98px) {
    .landing-hero-bg {
        min-height: auto;
        background-position: 68% center;
    }

    .landing-hero-bg::before {
        background: rgba(248, 248, 255, .82);
    }

    .landing-hero-copy {
        padding: 34px 30px;
        border-radius: 24px;
    }
}

@media (max-width: 575.98px) {
    .landing-hero-copy {
        padding: 26px 22px;
        border-radius: 20px;
    }

    .audience-image {
        height: 205px;
    }
}
