/* ================================
   WHO WE ARE / ABOUT SECTION
================================ */

.who-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 12%, rgba(32, 217, 232, 0.12), transparent 30%),
        radial-gradient(circle at 92% 20%, rgba(105, 231, 111, 0.10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
    color: #252525;
    padding: 92px 0 0;
}

.who-section *,
.who-section *::before,
.who-section *::after {
    box-sizing: border-box;
}

.who-bg {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(4px);
}

.who-bg-left {
    width: 260px;
    height: 260px;
    left: -120px;
    top: 130px;
    background: rgba(32, 217, 232, 0.11);
}

.who-bg-right {
    width: 280px;
    height: 280px;
    right: -130px;
    top: 140px;
    background: rgba(105, 231, 111, 0.1);
}

/* Top Area */

.who-top {
    position: relative;
    z-index: 2;
    min-height: 390px;
    display: grid;
    grid-template-columns: 270px minmax(320px, 720px) 270px;
    align-items: start;
    justify-content: center;
    column-gap: 46px;
    padding: 0 5vw 64px;
}

/* Text */

.who-copy {
    position: relative;
    z-index: 5;
    text-align: center;
    padding-top: 24px;
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.who-section.in-view .who-copy {
    opacity: 1;
    transform: translateY(0);
}

.who-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 0 10px;
    color: #18aeca;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.who-eyebrow::before,
.who-eyebrow::after {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #20d9e8, #69e76f);
}

.who-copy h2 {
    margin: 0 0 18px;
    color: #252525;
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.045em;
    font-weight: 950;
}

.who-copy p {
    max-width: 680px;
    margin: 0 auto;
    color: #6e7d82;
    font-size: 16px;
    line-height: 1.75;
}

/* Button */

.who-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    margin-top: 30px;
    min-height: 58px;
    padding: 8px 8px 8px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #20d9e8, #69e76f);
    color: #06242d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 18px 42px rgba(24, 174, 202, 0.22);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.who-btn i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(6, 36, 45, 0.92);
    color: #ffffff;
    font-size: 20px;
    font-style: normal;
    transition: transform 0.3s ease;
}

.who-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 68px rgba(24, 174, 202, 0.34);
}

.who-btn:hover i {
    transform: translateX(5px);
}

/* Hexagon Layout */

.who-hex-group {
    position: relative;
    min-height: 280px;
}

.hex,
.hex-image {
    position: absolute;
    clip-path: polygon(
        25% 6.7%,
        75% 6.7%,
        100% 50%,
        75% 93.3%,
        25% 93.3%,
        0% 50%
    );
}

.hex {
    background: #20b7cb;
}

.hex-large {
    width: 215px;
    height: 188px;
}

.hex-small {
    width: 122px;
    height: 106px;
}

.hex-cyan-light {
    background: #c7eef6;
}

.hex-cyan {
    background: #42c2d4;
}

.hex-blue {
    background: #1aaec4;
}

.hex-cyan-dark {
    background: #14a8bd;
}

/* Left Hex */

.who-hex-left {
    transform: translateX(-24px);
}

.who-hex-left .hex-cyan-light {
    left: -104px;
    top: 24px;
}

.who-hex-left .hex-cyan {
    left: -42px;
    top: 118px;
}

.who-hex-left .hex-blue {
    left: 64px;
    top: 174px;
}

.hex-image-left {
    width: 220px;
    height: 192px;
    left: 72px;
    top: 58px;
    z-index: 4;
}

/* Right Hex */

.who-hex-right {
    transform: translateX(22px);
}

.who-hex-right .hex-cyan-light {
    right: -110px;
    top: 82px;
}

.who-hex-right .hex-cyan-dark {
    right: -44px;
    top: 158px;
}

.hex-image-right-one {
    width: 192px;
    height: 168px;
    right: 108px;
    top: 42px;
    z-index: 4;
}

.hex-image-right-two {
    width: 192px;
    height: 168px;
    right: -4px;
    top: 42px;
    z-index: 3;
}

.hex-image {
    background: #dff8fc;
    border: 7px solid #ffffff;
    box-shadow: 0 22px 58px rgba(8, 43, 55, 0.18);
    opacity: 0;
    transform: translateY(26px) scale(0.94);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease,
        filter 0.45s ease,
        box-shadow 0.45s ease;
}

.who-section.in-view .hex-image {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hex-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.08);
    transition:
        transform 0.65s ease,
        filter 0.45s ease;
}

.hex-image:hover {
    transform: translateY(-12px) scale(1.05) !important;
    filter: saturate(1.15);
    box-shadow: 0 34px 84px rgba(8, 43, 55, 0.26);
    z-index: 10;
}

.hex-image:hover img {
    transform: scale(1.16);
}

/* Floating Animations */

.who-section.in-view .who-hex-left {
    animation: whoFloatLeft 5.5s ease-in-out infinite alternate;
}

.who-section.in-view .who-hex-right {
    animation: whoFloatRight 6s ease-in-out infinite alternate;
}

@keyframes whoFloatLeft {
    from {
        transform: translateX(-24px) translateY(0);
    }

    to {
        transform: translateX(-24px) translateY(-14px);
    }
}

@keyframes whoFloatRight {
    from {
        transform: translateX(22px) translateY(8px);
    }

    to {
        transform: translateX(22px) translateY(-12px);
    }
}

/* Bottom Team Image */

.who-team-image {
    position: relative;
    width: min(1180px, calc(100% - 40px));
    height: 420px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 38px 38px 0 0;
    background: #e9f4f6;
    box-shadow: 0 -10px 70px rgba(8, 43, 55, 0.12);
}

.who-team-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(2, 16, 24, 0.72), rgba(2, 16, 24, 0.08)),
        linear-gradient(180deg, transparent, rgba(2, 16, 24, 0.42));
    pointer-events: none;
}

.who-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.08);
    transition: transform 1.3s ease;
}

.who-section.in-view .who-team-image img {
    transform: scale(1);
}

.who-team-card {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 2;
    max-width: 430px;
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(2, 18, 28, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    backdrop-filter: blur(16px);
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.75s ease 0.2s,
        transform 0.75s ease 0.2s;
}

.who-section.in-view .who-team-card {
    opacity: 1;
    transform: translateY(0);
}

.who-team-card strong {
    display: block;
    margin-bottom: 7px;
    font-size: 22px;
    line-height: 1.1;
}

.who-team-card span {
    display: block;
    color: rgba(235, 250, 255, 0.82);
    line-height: 1.55;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1180px) {
    .who-top {
        grid-template-columns: 220px minmax(320px, 680px) 220px;
        column-gap: 24px;
    }

    .hex-large {
        width: 180px;
        height: 158px;
    }

    .hex-image-left {
        width: 188px;
        height: 164px;
        left: 54px;
    }

    .hex-image-right-one,
    .hex-image-right-two {
        width: 166px;
        height: 146px;
    }

    .hex-image-right-one {
        right: 88px;
    }

    .who-team-image {
        height: 380px;
    }
}

/* Tablet and mobile: hide side images, keep section clean */
@media (max-width: 960px) {
    .who-section {
        padding-top: 76px;
    }

    .who-top {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 0 24px 54px;
    }

    .who-hex-left,
    .who-hex-right {
        display: none;
    }

    .who-copy {
        max-width: 760px;
        margin: 0 auto;
        padding-top: 0;
    }

    .who-copy p {
        max-width: 720px;
    }

    .who-team-image {
        width: calc(100% - 48px);
        height: 340px;
        border-radius: 30px 30px 0 0;
    }
}

@media (max-width: 640px) {
    .who-section {
        padding-top: 62px;
    }

    .who-top {
        padding: 0 18px 42px;
    }

    .who-copy {
        text-align: left;
    }

    .who-eyebrow {
        justify-content: flex-start;
        font-size: 11px;
        letter-spacing: 0.14em;
    }

    .who-eyebrow::after {
        display: none;
    }

    .who-eyebrow::before {
        width: 30px;
    }

    .who-copy h2 {
        font-size: clamp(32px, 10vw, 44px);
        letter-spacing: -0.04em;
    }

    .who-copy p {
        font-size: 15px;
        line-height: 1.68;
    }

    .who-btn {
        width: 100%;
        justify-content: space-between;
        margin-top: 26px;
    }

    .who-team-image {
        width: calc(100% - 28px);
        height: 300px;
        border-radius: 26px 26px 0 0;
    }

    .who-team-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
        padding: 16px;
        border-radius: 18px;
    }

    .who-team-card strong {
        font-size: 19px;
    }

    .who-team-card span {
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .who-section {
        padding-top: 56px;
    }

    .who-top {
        padding-left: 14px;
        padding-right: 14px;
    }

    .who-copy h2 {
        font-size: 30px;
    }

    .who-copy p {
        font-size: 14px;
    }

    .who-team-image {
        width: calc(100% - 22px);
        height: 260px;
    }

    .who-team-card {
        padding: 14px;
    }

    .who-team-card strong {
        font-size: 18px;
    }

    .who-team-card span {
        font-size: 13px;
    }
}