/* =========================================================
   ARPIVA
   LIFE AT ARPIVA
   PREMIUM CAREERS PAGE
========================================================= */

.life-arpiva-page {
    width: 100%;
    overflow: hidden;
    background: #fff;
    color: #081b4b;
}

.life-arpiva-page .container {
    width: min(1180px, calc(100% - 80px));
    margin: auto;
}


/* =========================================================
   HERO
========================================================= */

.life-hero {
    position: relative;

    min-height: 630px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(47,128,237,.28),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #06163f,
            #123c8d
        );
}

.life-hero-grid {
    position: absolute;
    inset: 0;

    opacity: .13;

    background-image:
        linear-gradient(
            rgba(255,255,255,.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.08) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    animation:
        lifeGridMove
        22s
        linear
        infinite;
}

@keyframes lifeGridMove {

    from {
        transform: translate(0,0);
    }

    to {
        transform: translate(80px,80px);
    }

}

.life-hero-orb {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.life-orb-one {
    width: 450px;
    height: 450px;

    right: -170px;
    top: -200px;

    border: 1px solid rgba(255,255,255,.12);

    box-shadow:
        0 0 0 60px rgba(255,255,255,.025),
        0 0 0 120px rgba(255,255,255,.015);

    animation:
        lifeOrbFloat
        9s
        ease-in-out
        infinite
        alternate;
}

.life-orb-two {
    width: 300px;
    height: 300px;

    left: -170px;
    bottom: -170px;

    background: rgba(47,128,237,.08);

    animation:
        lifeOrbFloatTwo
        8s
        ease-in-out
        infinite
        alternate;
}

@keyframes lifeOrbFloat {

    from {
        transform: translate(0,0) scale(1);
    }

    to {
        transform: translate(-30px,25px) scale(1.08);
    }

}

@keyframes lifeOrbFloatTwo {

    from {
        transform: translate(0,0);
    }

    to {
        transform: translate(35px,-25px);
    }

}

.life-hero-content {
    position: relative;
    z-index: 4;

    max-width: 800px;

    padding: 120px 0;

    animation:
        lifeHeroReveal
        1s
        cubic-bezier(.22,1,.36,1)
        both;
}

@keyframes lifeHeroReveal {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.life-eyebrow {
    display: inline-flex;

    padding: 10px 20px;

    margin-bottom: 25px;

    border-radius: 50px;

    border: 1px solid rgba(255,255,255,.17);

    background: rgba(255,255,255,.07);

    color: #fff;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.6px;

    backdrop-filter: blur(10px);
}

.life-hero h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(52px,6vw,76px);

    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -3px;
}

.life-hero h1 span {
    display: block;

    color: #ff9f0a;
}

.life-hero p {
    max-width: 680px;

    margin: 28px 0 0;

    color: #d8e6ff;

    font-size: 18px;

    line-height: 1.8;
}

.life-hero-line {
    width: 75px;
    height: 3px;

    margin-top: 35px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #1769ff,
            #ff9f0a
        );

    animation:
        lifeLinePulse
        3s
        ease-in-out
        infinite;
}

@keyframes lifeLinePulse {

    0%,100% {
        width: 60px;
    }

    50% {
        width: 110px;
    }

}

.life-hero-scroll {
    position: absolute;

    bottom: 30px;
    left: 50%;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 10px;

    transform: translateX(-50%);

    color: rgba(255,255,255,.55);

    font-size: 10px;

    letter-spacing: 1px;
}

.life-hero-scroll span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #ff9f0a;

    animation:
        lifeScrollDot
        1.7s
        ease-in-out
        infinite;
}

@keyframes lifeScrollDot {

    0%,100% {
        transform: translateY(0);
        opacity: .5;
    }

    50% {
        transform: translateY(7px);
        opacity: 1;
    }

}


/* =========================================================
   CULTURE
========================================================= */

.life-culture {
    padding: 110px 0 120px;

    background: #fff;
}

.life-culture-grid {
    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 100px;

    margin-bottom: 65px;
}

.life-label {
    display: inline-block;

    color: #1769ff;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.6px;
}

.life-section-heading h2 {
    margin: 17px 0 0;

    font-size: 47px;

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.life-section-heading h2 span {
    color: #1769ff;
}

.life-culture-copy p {
    margin: 0 0 20px;

    color: #63758f;

    font-size: 17px;

    line-height: 1.85;
}


/* =========================================================
   CULTURE CARDS
========================================================= */

.life-culture-cards {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 20px;
}

.life-culture-card {
    position: relative;

    min-height: 290px;

    padding: 30px;

    overflow: hidden;

    border-radius: 22px;

    background: #f8faff;

    border: 1px solid #e2eaf4;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        background .4s ease;
}

.life-culture-card:hover {
    transform: translateY(-9px);

    background: #fff;

    box-shadow:
        0 25px 60px rgba(8,27,75,.10);
}

.life-card-number {
    position: absolute;

    right: 22px;
    top: 20px;

    color: #d9e4f2;

    font-size: 12px;

    font-weight: 800;
}

.life-card-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 15px;

    background: #eaf2ff;

    color: #1769ff;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;
}

.life-card-icon svg {
    width: 25px;
    height: 25px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.life-culture-card:hover .life-card-icon {
    transform: scale(1.08);

    background: #1769ff;

    color: #fff;
}

.life-culture-card h3 {
    margin: 0 0 13px;

    font-size: 20px;

    font-weight: 800;
}

.life-culture-card p {
    margin: 0;

    color: #6b7c95;

    font-size: 13px;

    line-height: 1.7;
}

.life-card-line {
    position: absolute;

    left: 30px;
    bottom: 0;

    width: 40px;
    height: 3px;

    border-radius: 5px 5px 0 0;

    background: #ff9f0a;

    transition: width .4s ease;
}

.life-culture-card:hover .life-card-line {
    width: 85px;
}


/* =========================================================
   HOW WE WORK
========================================================= */

.life-how-we-work {
    padding: 105px 0;

    background: #f6f9fd;
}

.life-work-box {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

    padding: 70px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #06163f,
            #123c8d
        );

    box-shadow:
        0 30px 80px rgba(8,27,75,.18);

    overflow: hidden;
}

.life-work-content {
    max-width: 520px;
}

.life-work-content .life-label {
    color: #8ec0ff;
}

.life-work-content h2 {
    margin: 18px 0 22px;

    color: #fff;

    font-size: 46px;

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.life-work-content h2 span {
    color: #ff9f0a;
}

.life-work-content p {
    margin: 0;

    color: #d5e3ff;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   WORK ORBIT
========================================================= */

.life-work-visual {
    position: relative;

    width: 400px;
    height: 400px;

    margin: auto;
}

.life-work-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    border: 1px solid rgba(142,192,255,.25);

    transform: translate(-50%,-50%);
}

.work-ring-one {
    width: 360px;
    height: 360px;

    animation:
        workOrbit
        22s
        linear
        infinite;
}

.work-ring-two {
    width: 245px;
    height: 245px;

    border-color: rgba(255,159,10,.25);

    animation:
        workOrbitReverse
        16s
        linear
        infinite;
}

@keyframes workOrbit {

    from {
        transform:
            translate(-50%,-50%)
            rotate(0);
    }

    to {
        transform:
            translate(-50%,-50%)
            rotate(360deg);
    }
}

@keyframes workOrbitReverse {

    from {
        transform:
            translate(-50%,-50%)
            rotate(360deg);
    }

    to {
        transform:
            translate(-50%,-50%)
            rotate(0);
    }
}

.life-work-core {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 120px;
    height: 120px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    transform: translate(-50%,-50%);

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #2f80ed,
            #123c8d
        );

    color: #fff;

    box-shadow:
        0 25px 70px rgba(47,128,237,.45);

    animation:
        workCorePulse
        4s
        ease-in-out
        infinite;
}

.life-work-core span {
    font-size: 10px;

    letter-spacing: 2px;

    opacity: .75;
}

.life-work-core strong {
    margin-top: 5px;

    font-size: 17px;
}

@keyframes workCorePulse {

    0%,100% {
        transform:
            translate(-50%,-50%)
            scale(1);
    }

    50% {
        transform:
            translate(-50%,-50%)
            scale(1.06);
    }
}

.life-work-node {
    position: absolute;

    padding: 9px 14px;

    border-radius: 50px;

    background: #fff;

    color: #174b9b;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .5px;

    box-shadow:
        0 12px 30px rgba(0,0,0,.18);

    animation:
        workNodeFloat
        4s
        ease-in-out
        infinite;
}

.work-node-one {
    top: 22px;
    left: 160px;
}

.work-node-two {
    right: -5px;
    top: 175px;

    animation-delay: .7s;
}

.work-node-three {
    bottom: 22px;
    left: 160px;

    animation-delay: 1.4s;
}

.work-node-four {
    left: -5px;
    top: 175px;

    animation-delay: 2.1s;
}

@keyframes workNodeFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* =========================================================
   GROWTH
========================================================= */

.life-growth {
    padding: 115px 0;

    background: #fff;
}

.life-growth-heading {
    max-width: 750px;

    margin-bottom: 60px;
}

.life-growth-heading h2 {
    margin: 17px 0 20px;

    font-size: 47px;

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.life-growth-heading h2 span {
    color: #1769ff;
}

.life-growth-heading p {
    margin: 0;

    color: #667892;

    font-size: 16px;

    line-height: 1.8;
}

.life-growth-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    border-top: 1px solid #e1e9f3;

    border-bottom: 1px solid #e1e9f3;
}

.life-growth-item {
    display: flex;

    gap: 17px;

    padding: 30px 25px;

    border-right: 1px solid #e1e9f3;

    transition:
        background .35s ease,
        transform .35s ease;
}

.life-growth-item:first-child {
    padding-left: 0;
}

.life-growth-item:last-child {
    border-right: 0;
}

.life-growth-item:hover {
    background: #f8faff;

    transform: translateY(-4px);
}

.life-growth-number {
    color: #1769ff;

    font-size: 12px;

    font-weight: 800;
}

.life-growth-item h3 {
    margin: 0 0 8px;

    font-size: 18px;
}

.life-growth-item p {
    margin: 0;

    color: #718198;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   FUTURE TEAM
========================================================= */

.life-future-team {
    padding: 105px 0;

    background: #f6f9fd;
}

.life-future-box {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

    padding: 70px;

    border-radius: 30px;

    background: #fff;

    border: 1px solid #e2eaf4;

    box-shadow:
        0 20px 60px rgba(8,27,75,.07);
}

.life-future-content {
    max-width: 560px;
}

.life-future-content h2 {
    margin: 18px 0 22px;

    font-size: 45px;

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.life-future-content h2 span {
    color: #1769ff;
}

.life-future-content p {
    margin: 0 0 30px;

    color: #647791;

    font-size: 16px;

    line-height: 1.8;
}

.life-cta,
.life-final-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 14px 21px;

    border-radius: 12px;

    background: #1769ff;

    color: #fff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(23,105,255,.22);

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.life-cta:hover,
.life-final-button:hover {
    color: #fff;

    background: #0e55d4;

    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(23,105,255,.30);
}

.life-cta span,
.life-final-button span {
    font-size: 17px;

    transition:
        transform .3s ease;
}

.life-cta:hover span,
.life-final-button:hover span {
    transform: translateX(4px);
}


/* FUTURE VISUAL */

.life-future-visual {
    position: relative;

    width: 380px;
    height: 380px;

    margin: auto;
}

.future-circle {
    position: absolute;

    left: 50%;
    top: 50%;

    border-radius: 50%;

    border: 1px solid #d7e4f4;

    transform: translate(-50%,-50%);
}

.circle-one {
    width: 350px;
    height: 350px;

    animation:
        futureRotate
        24s
        linear
        infinite;
}

.circle-two {
    width: 250px;
    height: 250px;

    border-color: #c6dbf5;

    animation:
        futureRotateReverse
        17s
        linear
        infinite;
}

.circle-three {
    width: 150px;
    height: 150px;

    border-color: #1769ff;

    opacity: .25;

    animation:
        futureRotate
        11s
        linear
        infinite;
}

@keyframes futureRotate {

    from {
        transform:
            translate(-50%,-50%)
            rotate(0);
    }

    to {
        transform:
            translate(-50%,-50%)
            rotate(360deg);
    }
}

@keyframes futureRotateReverse {

    from {
        transform:
            translate(-50%,-50%)
            rotate(360deg);
    }

    to {
        transform:
            translate(-50%,-50%)
            rotate(0);
    }
}

.future-center {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 120px;
    height: 120px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    transform: translate(-50%,-50%);

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #1769ff,
            #123c8d
        );

    color: #fff;

    box-shadow:
        0 25px 70px rgba(23,105,255,.25);

    animation:
        futureCorePulse
        4s
        ease-in-out
        infinite;
}

.future-center span {
    font-size: 9px;

    letter-spacing: 2px;

    opacity: .7;
}

.future-center strong {
    margin-top: 5px;

    font-size: 18px;
}

@keyframes futureCorePulse {

    0%,100% {
        transform:
            translate(-50%,-50%)
            scale(1);
    }

    50% {
        transform:
            translate(-50%,-50%)
            scale(1.06);
    }
}

.future-dot {
    position: absolute;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #1769ff;

    box-shadow:
        0 0 18px rgba(23,105,255,.55);

    animation:
        futureDotFloat
        3s
        ease-in-out
        infinite;
}

.future-dot-one {
    top: 45px;
    left: 185px;
}

.future-dot-two {
    top: 185px;
    right: 35px;

    background: #ff9f0a;

    animation-delay: .7s;
}

.future-dot-three {
    bottom: 45px;
    left: 185px;

    animation-delay: 1.4s;
}

.future-dot-four {
    top: 185px;
    left: 35px;

    animation-delay: 2.1s;
}

@keyframes futureDotFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* =========================================================
   FINAL CTA
========================================================= */

.life-final {
    position: relative;

    min-height: 470px;

    display: flex;

    align-items: center;

    overflow: hidden;

    text-align: center;

    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(47,128,237,.25),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #06163f,
            #123c8d
        );
}

.life-final-orb {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.08);

    transform: translate(-50%,-50%);

    box-shadow:
        0 0 0 80px rgba(255,255,255,.02),
        0 0 0 160px rgba(255,255,255,.015);

    animation:
        lifeFinalOrb
        9s
        ease-in-out
        infinite
        alternate;
}

@keyframes lifeFinalOrb {

    from {
        transform:
            translate(-50%,-50%)
            scale(1);
    }

    to {
        transform:
            translate(-50%,-50%)
            scale(1.12);
    }
}

.life-final-content {
    position: relative;

    z-index: 3;

    max-width: 800px;

    margin: auto;
}

.life-final-content h2 {
    margin: 0 0 23px;

    color: #fff;

    font-size: 52px;

    line-height: 1.08;

    letter-spacing: -1.5px;
}

.life-final-content h2 span {
    color: #ff9f0a;
}

.life-final-content p {
    max-width: 650px;

    margin: 0 auto 30px;

    color: #d7e5ff;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px) {

    .life-arpiva-page .container {
        width: min(720px, calc(100% - 50px));
    }

    .life-culture-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .life-culture-cards {
        grid-template-columns:
            repeat(2,1fr);
    }

    .life-work-box {
        grid-template-columns: 1fr;

        padding: 55px;
    }

    .life-growth-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .life-growth-item {
        border-bottom: 1px solid #e1e9f3;
    }

    .life-future-box {
        grid-template-columns: 1fr;

        padding: 55px;
    }

}


@media(max-width:700px) {

    .life-arpiva-page .container {
        width: calc(100% - 36px);
    }

    .life-hero {
        min-height: 590px;
    }

    .life-hero-content {
        padding: 90px 0;
    }

    .life-hero h1 {
        font-size: 45px;
    }

    .life-hero p {
        font-size: 16px;
    }

    .life-hero-scroll {
        display: none;
    }

    .life-culture {
        padding: 75px 0 85px;
    }

    .life-section-heading h2 {
        font-size: 38px;
    }

    .life-culture-cards {
        grid-template-columns: 1fr;
    }

    .life-how-we-work {
        padding: 75px 0;
    }

    .life-work-box {
        padding: 35px 25px;
    }

    .life-work-content h2 {
        font-size: 37px;
    }

    .life-work-visual {
        width: 310px;
        height: 310px;
    }

    .work-ring-one {
        width: 285px;
        height: 285px;
    }

    .work-ring-two {
        width: 200px;
        height: 200px;
    }

    .life-work-core {
        width: 95px;
        height: 95px;
    }

    .work-node-one {
        top: 10px;
        left: 115px;
    }

    .work-node-two {
        right: -5px;
        top: 130px;
    }

    .work-node-three {
        bottom: 10px;
        left: 110px;
    }

    .work-node-four {
        left: -5px;
        top: 130px;
    }

    .life-growth {
        padding: 80px 0;
    }

    .life-growth-heading h2 {
        font-size: 38px;
    }

    .life-growth-grid {
        grid-template-columns: 1fr;
    }

    .life-growth-item,
    .life-growth-item:first-child {
        padding: 23px 0;

        border-right: 0;
    }

    .life-future-team {
        padding: 75px 0;
    }

    .life-future-box {
        padding: 35px 25px;
    }

    .life-future-content h2 {
        font-size: 37px;
    }

    .life-future-visual {
        width: 310px;
        height: 310px;
    }

    .circle-one {
        width: 285px;
        height: 285px;
    }

    .circle-two {
        width: 200px;
        height: 200px;
    }

    .circle-three {
        width: 125px;
        height: 125px;
    }

    .life-final {
        min-height: 440px;
    }

    .life-final-content h2 {
        font-size: 38px;
    }

}