/* =========================================================
   LUCENT SOFT
   HOME - COMPANY INTRO
========================================================= */

.home-company-intro {
    position: relative;
    overflow: hidden;

    padding: 96px 0 88px;

    background:
        linear-gradient(
            180deg,
            #f7f9fc 0%,
            #ffffff 100%
        );

    color: #16233a;
}


/* =========================================================
   DECOR
========================================================= */

.home-company-intro-decor {
    position: absolute;
    inset: 0;

    pointer-events: none;

    overflow: hidden;
}


.home-company-intro-grid {
    position: absolute;
    inset: 0;

    opacity: 0.55;

    background-image:
        linear-gradient(
            rgba(15, 36, 63, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 36, 63, 0.025) 1px,
            transparent 1px
        );

    background-size: 72px 72px;
}


.home-company-intro-word {
    position: absolute;

    right: -38px;
    top: 38px;

    color: rgba(16, 40, 70, 0.025);

    font-size: 165px;
    line-height: 0.82;

    font-weight: 800;

    letter-spacing: -9px;

    user-select: none;
}


.home-company-intro-word-soft {
    top: 165px;
    right: 28px;

    color: rgba(30, 90, 168, 0.028);
}


/* =========================================================
   TOP BAR
========================================================= */

.home-company-intro-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-bottom: 22px;

    border-bottom:
        1px solid
        #dce3ec;
}


.home-company-intro-label {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    color: #1e5aa8;

    font-size: 10px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 1.45px;
}


.home-company-intro-label > span {
    width: 23px;
    height: 2px;

    background: #9b1834;
}


.home-company-intro-top-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    justify-content: flex-end;

    gap: 10px;

    color: #7d8898;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.8px;
}


.home-company-intro-top-meta i {
    width: 18px;
    height: 1px;

    background: #cbd3de;
}


/* =========================================================
   HEADING
========================================================= */

.home-company-intro-heading-row {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        150px;

    align-items: end;

    gap: 60px;

    padding: 50px 0 54px;
}


.home-company-intro-heading {
    max-width: 790px;
}


.home-company-intro-heading h2 {
    margin: 0;

    color: #14213d;

    font-size: clamp(37px, 3.4vw, 48px);
    line-height: 1.1;

    font-weight: 735;

    letter-spacing: -1.5px;
}


.home-company-intro-heading h2 span {
    display: block;

    margin-top: 5px;

    color: #1e5aa8;
}


/* =========================================================
   MONOGRAM
========================================================= */

.home-company-intro-monogram {
    display: grid;

    grid-template-columns:
        auto
        1fr
        auto;

    align-items: center;

    gap: 10px;

    padding-bottom: 7px;
}


.home-company-intro-monogram span {
    color: #14213d;

    font-size: 31px;
    line-height: 1;

    font-weight: 750;

    letter-spacing: -1px;
}


.home-company-intro-monogram span:last-child {
    color: #1e5aa8;
}


.home-company-intro-monogram i {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #9b1834,
            #d2d9e3
        );
}


/* =========================================================
   CONTENT
========================================================= */

.home-company-intro-content {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(450px, 1.12fr);

    gap: clamp(70px, 8vw, 125px);

    align-items: start;
}


/* =========================================================
   COPY
========================================================= */

.home-company-intro-primary-copy {
    max-width: 590px;

    padding-left: 31px;

    border-left:
        1px solid
        #d6dee8;
}


.home-company-intro-lead {
    margin: 0 0 18px;

    color: #263a55;

    font-size: 16px;
    line-height: 1.72;

    font-weight: 560;
}


.home-company-intro-primary-copy > p:not(
    .home-company-intro-lead
) {
    margin: 0 0 15px;

    color: #6d798a;

    font-size: 13.5px;
    line-height: 1.78;
}


.home-company-intro-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-top: 11px;
    padding-bottom: 6px;

    color: #16233a;

    font-size: 12.5px;

    font-weight: 700;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}


.home-company-intro-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 38px;
    height: 2px;

    background: #9b1834;

    transition:
        width
        0.25s
        ease;
}


.home-company-intro-link svg {
    width: 15px;
    height: 15px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform
        0.25s
        ease;
}


.home-company-intro-link:hover {
    gap: 13px;

    color: #1e5aa8;
}


.home-company-intro-link:hover::after {
    width: 100%;
}


.home-company-intro-link:hover svg {
    transform: translateX(3px);
}


/* =========================================================
   PHILOSOPHY
========================================================= */

.home-company-intro-philosophy {
    border-top:
        1px solid
        #d8e0e9;
}


.home-company-intro-philosophy-head {
    display: grid;

    grid-template-columns:
        170px
        minmax(0, 1fr);

    gap: 26px;

    padding: 17px 0 18px;

    border-bottom:
        1px solid
        #d8e0e9;
}


.home-company-intro-philosophy-head span {
    color: #9b1834;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


.home-company-intro-philosophy-head p {
    max-width: 360px;

    margin: 0;

    color: #7b8797;

    font-size: 11px;
    line-height: 1.55;
}


.home-company-intro-philosophy-line {
    position: relative;

    border-bottom:
        1px solid
        #d8e0e9;
}


.home-company-intro-philosophy-line::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 0;
    height: 1px;

    background: #1e5aa8;

    transition:
        width
        0.3s
        ease;
}


.home-company-intro-philosophy-line > div {
    display: grid;

    grid-template-columns:
        38px
        110px
        minmax(0, 1fr);

    align-items: start;

    gap: 20px;

    padding: 22px 0;

    transition:
        transform
        0.3s
        ease;
}


.home-company-intro-philosophy-line:hover::before {
    width: 100%;
}


.home-company-intro-philosophy-line:hover > div {
    transform: translateX(7px);
}


.home-company-intro-philosophy-line span {
    padding-top: 3px;

    color: #1e5aa8;

    font-size: 9px;

    font-weight: 800;
}


.home-company-intro-philosophy-line strong {
    color: #182841;

    font-size: 13px;
    line-height: 1.4;

    font-weight: 700;
}


.home-company-intro-philosophy-line p {
    margin: 0;

    color: #748092;

    font-size: 11.5px;
    line-height: 1.65;
}


/* =========================================================
   BOTTOM RAIL
========================================================= */

.home-company-intro-bottom {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 22px;

    margin-top: 64px;
    padding-top: 23px;

    border-top:
        1px solid
        #dce3ec;
}


.home-company-intro-bottom span {
    color: #7e8998;

    font-size: 9px;

    font-weight: 750;

    letter-spacing: 0.8px;

    white-space: nowrap;
}


.home-company-intro-bottom i {
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d4dce6,
            transparent
        );
}


/* =========================================================
   ENTRY
========================================================= */

.home-company-intro-heading-row {
    animation:
        homeCompanyHeadingIn
        0.8s
        ease
        both;
}


.home-company-intro-content {
    animation:
        homeCompanyContentIn
        0.85s
        0.08s
        ease
        both;
}


@keyframes homeCompanyHeadingIn {

    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes homeCompanyContentIn {

    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .home-company-intro {
        padding: 82px 0 76px;
    }


    .home-company-intro-content {
        grid-template-columns:
            minmax(0, 0.82fr)
            minmax(410px, 1fr);

        gap: 65px;
    }


    .home-company-intro-heading h2 {
        font-size: 40px;
    }


    .home-company-intro-philosophy-line > div {
        grid-template-columns:
            34px
            95px
            minmax(0, 1fr);

        gap: 15px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .home-company-intro {
        padding: 70px 0;
    }


    .home-company-intro-top {
        align-items: flex-start;
    }


    .home-company-intro-top-meta {
        max-width: 340px;
    }


    .home-company-intro-heading-row {
        grid-template-columns: 1fr;

        gap: 28px;

        padding: 42px 0 46px;
    }


    .home-company-intro-monogram {
        max-width: 160px;
    }


    .home-company-intro-content {
        grid-template-columns: 1fr;

        gap: 48px;
    }


    .home-company-intro-primary-copy {
        max-width: 700px;
    }


    .home-company-intro-philosophy {
        max-width: 760px;
    }


    .home-company-intro-bottom {
        flex-wrap: wrap;

        gap: 12px 20px;
    }


    .home-company-intro-bottom i {
        min-width: 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .home-company-intro {
        padding: 54px 0;
    }


    .home-company-intro-word {
        font-size: 95px;

        right: -22px;
    }


    .home-company-intro-word-soft {
        top: 115px;
    }


    .home-company-intro-top {
        display: block;

        padding-bottom: 17px;
    }


    .home-company-intro-label {
        font-size: 9px;
    }


    .home-company-intro-top-meta {
        justify-content: flex-start;

        margin-top: 13px;

        font-size: 7.8px;
    }


    .home-company-intro-top-meta i {
        width: 10px;
    }


    .home-company-intro-heading-row {
        padding: 34px 0 37px;
    }


    .home-company-intro-heading h2 {
        font-size: 29px;
        line-height: 1.15;

        letter-spacing: -0.75px;
    }


    .home-company-intro-monogram span {
        font-size: 25px;
    }


    .home-company-intro-content {
        gap: 38px;
    }


    .home-company-intro-primary-copy {
        padding-left: 18px;
    }


    .home-company-intro-lead {
        margin-bottom: 15px;

        font-size: 14px;
        line-height: 1.68;
    }


    .home-company-intro-primary-copy > p:not(
        .home-company-intro-lead
    ) {
        margin-bottom: 13px;

        font-size: 12.8px;
        line-height: 1.72;
    }


    .home-company-intro-link {
        font-size: 12px;
    }


    .home-company-intro-philosophy-head {
        grid-template-columns: 1fr;

        gap: 7px;
    }


    .home-company-intro-philosophy-line > div {
        grid-template-columns:
            27px
            minmax(0, 1fr);

        gap: 7px 12px;

        padding: 19px 0;
    }


    .home-company-intro-philosophy-line strong {
        font-size: 12.5px;
    }


    .home-company-intro-philosophy-line p {
        grid-column: 2;

        font-size: 11px;
        line-height: 1.6;
    }


    .home-company-intro-philosophy-line:hover > div {
        transform: none;
    }


    .home-company-intro-bottom {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px 16px;

        margin-top: 42px;
        padding-top: 18px;
    }


    .home-company-intro-bottom span {
        position: relative;

        padding-left: 10px;

        font-size: 8px;

        white-space: normal;
    }


    .home-company-intro-bottom span::before {
        content: "";

        position: absolute;

        left: 0;
        top: 50%;

        width: 4px;
        height: 4px;

        border-radius: 50%;

        background: #9b1834;

        transform: translateY(-50%);
    }


    .home-company-intro-bottom i {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .home-company-intro-heading h2 {
        font-size: 27px;
    }


    .home-company-intro-bottom {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .home-company-intro-heading-row,
    .home-company-intro-content {
        animation: none !important;
    }


    .home-company-intro-link,
    .home-company-intro-link::after,
    .home-company-intro-link svg,
    .home-company-intro-philosophy-line::before,
    .home-company-intro-philosophy-line > div {
        transition: none !important;
    }

}