/* =========================================================
   GROWTH DIGITAL STUDIO
   WHO WE HELP
========================================================= */

.who-section {

    position: relative;

    padding:
        150px 0 140px;

    overflow: hidden;

    background:
        #08090f;
}


/* =========================================================
   AMBIENT BACKGROUND
========================================================= */

.who-section::before {

    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    left: -350px;
    top: 15%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(112,71,255,.10),
            transparent 68%
        );

    filter: blur(45px);

    pointer-events: none;
}


.who-section::after {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -280px;
    bottom: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(21,155,255,.08),
            transparent 68%
        );

    filter: blur(45px);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.who-container {

    position: relative;

    z-index: 2;

    width: min(
        calc(100% - (var(--container-padding) * 2)),
        var(--container-width)
    );

    margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.who-header {

    margin-bottom: 75px;
}


.who-eyebrow {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 26px;

    color:
        var(--color-primary-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .23em;

}


.who-eyebrow-line {

    width: 38px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--color-primary-light),
            transparent
        );

}


.who-heading-wrap {

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(280px, .65fr);

    align-items: end;

    gap: 70px;

}


.who-title {

    margin: 0;

    max-width: 850px;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            3.2rem,
            6vw,
            6.5rem
        );

    font-weight: 700;

    line-height: .93;

    letter-spacing: -.06em;

    color:
        var(--color-white);

}


.who-title span {

    display: block;

    background:
        linear-gradient(
            110deg,
            #8e72ff 0%,
            #56b9ff 55%,
            #b879ff 100%
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.who-description {

    max-width: 450px;

    margin: 0 0 7px;

    color:
        var(--color-text-secondary);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   LIST
========================================================= */

.who-list {

    border-top:
        1px solid
        rgba(255,255,255,.09);

    border-bottom:
        1px solid
        rgba(255,255,255,.09);
}


/* =========================================================
   ITEM
========================================================= */

.who-item {

    position: relative;

    display: grid;

    grid-template-columns:
        90px
        minmax(0, 1fr)
        70px;

    align-items: center;

    gap: 25px;

    min-height: 145px;

    padding:
        20px 15px;

    border-top:
        1px solid
        rgba(255,255,255,.07);

    overflow: hidden;

    transition:
        background .45s ease,
        padding .45s cubic-bezier(.22,1,.36,1);
}


.who-item:first-child {

    border-top: 0;
}


.who-item::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(124,92,255,.10),
            rgba(124,92,255,.025),
            transparent
        );

    opacity: 0;

    transform:
        translateX(-20px);

    transition:
        opacity .5s ease,
        transform .6s cubic-bezier(.22,1,.36,1);

    pointer-events: none;
}


/* =========================================================
   NUMBER
========================================================= */

.who-item-number {

    position: relative;

    z-index: 2;

    align-self: flex-start;

    padding-top: 7px;

    color:
        rgba(255,255,255,.30);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .12em;

    transition:
        color .4s ease,
        text-shadow .4s ease;
}


/* =========================================================
   CONTENT
========================================================= */

.who-item-content {

    position: relative;

    z-index: 2;

}


.who-item-content h3 {

    margin: 0 0 9px;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            1.8rem,
            3vw,
            3.1rem
        );

    font-weight: 600;

    line-height: 1;

    letter-spacing: -.045em;

    color:
        rgba(255,255,255,.88);

    transition:
        color .4s ease,
        transform .5s cubic-bezier(.22,1,.36,1);
}


.who-item-content p {

    max-width: 570px;

    margin: 0;

    color:
        var(--color-text-secondary);

    font-size: 12px;

    line-height: 1.65;

    transition:
        color .4s ease;
}


/* =========================================================
   ARROW
========================================================= */

.who-item-arrow {

    position: relative;

    z-index: 2;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-left: auto;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius: 50%;

    color:
        rgba(255,255,255,.55);

    background:
        rgba(255,255,255,.025);

    font-size: 18px;

    transition:
        transform .5s cubic-bezier(.22,1,.36,1),
        color .4s ease,
        border-color .4s ease,
        background .4s ease,
        box-shadow .4s ease;
}


/* =========================================================
   HOVER
========================================================= */

@media (hover: hover) {

    .who-item:hover {

        padding-left: 28px;

        background:
            rgba(255,255,255,.018);
    }


    .who-item:hover::before {

        opacity: 1;

        transform:
            translateX(0);
    }


    .who-item:hover .who-item-number {

        color:
            #a98cff;

        text-shadow:
            0 0 18px
            rgba(139,92,246,.45);
    }


    .who-item:hover .who-item-content h3 {

        color:
            #ffffff;

        transform:
            translateX(5px);
    }


    .who-item:hover .who-item-content p {

        color:
            #b9bac3;
    }


    .who-item:hover .who-item-arrow {

        transform:
            translate(3px,-3px)
            rotate(4deg);

        color:
            #ffffff;

        border-color:
            rgba(139,92,246,.4);

        background:
            rgba(139,92,246,.08);

        box-shadow:
            0 0 28px
            rgba(139,92,246,.10);
    }

}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.who-header {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity .8s ease,
        transform .9s cubic-bezier(.22,1,.36,1);
}


.who-section.is-visible .who-header {

    opacity: 1;

    transform:
        translateY(0);
}


.who-item {

    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity .7s ease,
        transform .8s cubic-bezier(.22,1,.36,1),
        background .45s ease,
        padding .45s cubic-bezier(.22,1,.36,1);
}


.who-section.is-visible .who-item {

    opacity: 1;

    transform:
        translateY(0);
}


.who-section.is-visible
.who-item:nth-child(1) {
    transition-delay: .05s;
}


.who-section.is-visible
.who-item:nth-child(2) {
    transition-delay: .12s;
}


.who-section.is-visible
.who-item:nth-child(3) {
    transition-delay: .19s;
}


.who-section.is-visible
.who-item:nth-child(4) {
    transition-delay: .26s;
}


.who-section.is-visible
.who-item:nth-child(5) {
    transition-delay: .33s;
}


.who-section.is-visible
.who-item:nth-child(6) {
    transition-delay: .40s;
}


/* =========================================================
   BOTTOM
========================================================= */

.who-bottom {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 28px;

    color:
        var(--color-text-secondary);

    font-size: 9px;

    letter-spacing: .16em;

    text-transform: uppercase;
}


.who-bottom-label {

    color:
        var(--color-primary-light);

    font-weight: 700;

    white-space: nowrap;
}


.who-bottom-line {

    width: 65px;
    height: 1px;

    background:
        rgba(255,255,255,.14);
}


.who-bottom-text {

    opacity: .6;

    letter-spacing: .07em;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .who-section {

        padding:
            120px 0 110px;
    }


    .who-heading-wrap {

        grid-template-columns: 1fr;

        gap: 25px;
    }


    .who-item {

        grid-template-columns:
            65px
            minmax(0,1fr)
            60px;

        min-height: 130px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .who-section {

        padding:
            90px 0 80px;
    }


    .who-header {

        margin-bottom: 48px;
    }


    .who-eyebrow {

        font-size: 9px;

        letter-spacing: .18em;
    }


    .who-title {

        font-size:
            clamp(
                2.8rem,
                13vw,
                4.2rem
            );

        line-height: .94;
    }


    .who-description {

        font-size: 13px;

        line-height: 1.7;
    }


    .who-item {

        grid-template-columns:
            42px
            minmax(0,1fr)
            42px;

        gap: 12px;

        min-height: 125px;

        padding:
            20px 5px;
    }


    .who-item-content h3 {

        font-size:
            clamp(
                1.55rem,
                7vw,
                2.2rem
            );

        line-height: 1.02;
    }


    .who-item-content p {

        font-size: 11px;

        line-height: 1.6;
    }


    .who-item-number {

        font-size: 9px;
    }


    .who-item-arrow {

        width: 36px;
        height: 36px;

        font-size: 14px;
    }


    .who-bottom {

        align-items: flex-start;

        flex-direction: column;

        gap: 8px;

        font-size: 8px;

        line-height: 1.5;
    }


    .who-bottom-line {

        width: 40px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .who-header,
    .who-item {

        opacity: 1 !important;

        transform: none !important;

        transition: none !important;
    }

}