/* =========================================================
   LUCENT SOFT
   HOME - FINAL CTA
========================================================= */

.home-cta {
    position: relative;
    overflow: hidden;
    padding: 82px 0 38px;
    color: #ffffff;
    background:
        radial-gradient(circle at 82% 28%, rgba(53, 119, 205, 0.16), transparent 30%),
        radial-gradient(circle at 10% 85%, rgba(155, 24, 52, 0.10), transparent 25%),
        linear-gradient(135deg, #0b1727 0%, #10213a 52%, #0b1829 100%);
    isolation: isolate;
}


/* =========================================================
   BACKGROUND
========================================================= */

.home-cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.home-cta-grid {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 72px 72px;
}

.home-cta-glow {
    position: absolute;
    display: block;
    border-radius: 50%;
}

.home-cta-glow-one {
    width: 600px;
    height: 600px;
    right: -330px;
    top: -120px;
    background:
        radial-gradient(circle, rgba(63, 133, 220, 0.16), transparent 70%);
}

.home-cta-glow-two {
    width: 500px;
    height: 500px;
    left: -310px;
    bottom: -220px;
    background:
        radial-gradient(circle, rgba(155, 24, 52, 0.10), transparent 70%);
}

.home-cta-word {
    position: absolute;
    right: -25px;
    top: 78px;
    color: rgba(255,255,255,0.018);
    font-size: 145px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -8px;
    white-space: nowrap;
    user-select: none;
}

.home-cta-line {
    position: absolute;
    display: block;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(117, 174, 235, 0.18),
        transparent
    );
}

.home-cta-line-one {
    width: 430px;
    right: -90px;
    top: 46%;
    transform: rotate(-24deg);
}

.home-cta-line-two {
    width: 350px;
    left: -100px;
    bottom: 25%;
    transform: rotate(21deg);
}


/* =========================================================
   TOP
========================================================= */

.home-cta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.home-cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #84b9f2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.home-cta-kicker > span {
    width: 22px;
    height: 2px;
    background: #b92c4b;
}

.home-cta-meta {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(205,220,238,0.52);
    font-size: 8px;
    font-weight: 750;
    letter-spacing: 0.85px;
}

.home-cta-meta i {
    display: block;
    width: 17px;
    height: 1px;
    background: rgba(255,255,255,0.17);
}


/* =========================================================
   MAIN
========================================================= */

.home-cta-main {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
    gap: clamp(70px, 9vw, 130px);
    align-items: center;
    padding: 54px 0 50px;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.home-cta-content {
    min-width: 0;
}

.home-cta-label {
    display: block;
    margin-bottom: 13px;
    color: #b9435d;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.1px;
}

.home-cta-content h2 {
    max-width: 700px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1.07;
    font-weight: 720;
    letter-spacing: -1.7px;
}

.home-cta-content h2 span {
    display: block;
    margin-top: 5px;
    color: #7db3ec;
}

.home-cta-description {
    max-width: 690px;
    margin-top: 22px;
    padding-left: 22px;
    border-left: 1px solid rgba(126,177,233,0.23);
}

.home-cta-description p {
    margin: 0;
    color: rgba(200,214,231,0.64);
    font-size: 12px;
    line-height: 1.7;
}

.home-cta-description p:first-child {
    margin-bottom: 9px;
    color: rgba(229,238,248,0.86);
    font-size: 13px;
}


/* =========================================================
   ACTIONS
========================================================= */

.home-cta-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.home-cta-primary,
.home-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 47px;
    padding: 0 20px;
    font-size: 10.8px;
    font-weight: 700;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        gap 0.25s ease,
        transform 0.25s ease;
}

.home-cta-primary {
    color: #ffffff;
    background: #1e5aa8;
    border: 1px solid #1e5aa8;
}

.home-cta-secondary {
    color: #e5eef8;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.18);
}

.home-cta-primary svg,
.home-cta-secondary svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}

.home-cta-primary:hover {
    gap: 13px;
    background: #276abb;
    border-color: #276abb;
    transform: translateY(-2px);
}

.home-cta-secondary:hover {
    gap: 13px;
    color: #ffffff;
    border-color: rgba(255,255,255,0.38);
    background: rgba(255,255,255,0.045);
    transform: translateY(-2px);
}

.home-cta-primary:hover svg,
.home-cta-secondary:hover svg {
    transform: translateX(3px);
}


/* =========================================================
   PROJECT ENTRY
========================================================= */

.home-cta-entry {
    position: relative;
    padding: 28px 0 28px 30px;
    border-left: 1px solid rgba(126,177,233,0.22);
}

.home-cta-entry::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 0;
    width: 2px;
    height: 58px;
    background: linear-gradient(#b62f4c, #3c82d1);
}

.home-cta-entry-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.home-cta-entry-head > span {
    color: #7fb4ec;
    font-size: 7.5px;
    font-weight: 800;
    letter-spacing: 1px;
}

.home-cta-entry-head > small {
    color: rgba(190,208,228,0.43);
    font-size: 7.5px;
    font-weight: 700;
}

.home-cta-entry-title {
    padding: 20px 0 22px;
}

.home-cta-entry-title > span {
    display: block;
    margin-bottom: 6px;
    color: rgba(175,198,224,0.5);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.9px;
}

.home-cta-entry-title > strong {
    display: block;
    color: #f2f7fc;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 650;
}


/* =========================================================
   ENTRY FLOW
========================================================= */

.home-cta-entry-flow {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.home-cta-entry-step {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    padding: 12px 0;
}

.home-cta-entry-number {
    color: #70a8e3;
    font-size: 8px;
    font-weight: 800;
}

.home-cta-entry-step small {
    display: block;
    margin-bottom: 3px;
    color: rgba(142,181,224,0.5);
    font-size: 6.5px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.home-cta-entry-step strong {
    display: block;
    color: rgba(235,243,251,0.88);
    font-size: 10.8px;
    font-weight: 600;
}

.home-cta-entry-connector {
    display: block;
    width: 1px;
    height: 13px;
    margin-left: 3px;
    background: linear-gradient(
        to bottom,
        rgba(113,169,229,0.08),
        rgba(113,169,229,0.42),
        rgba(113,169,229,0.08)
    );
}


/* =========================================================
   ENTRY NOTE
========================================================= */

.home-cta-entry-note {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 17px;
}

.home-cta-entry-note > span {
    flex: 0 0 auto;
    width: 24px;
    height: 1px;
    margin-top: 8px;
    background: linear-gradient(90deg, #b72f4c, #4d8ed5);
}

.home-cta-entry-note p {
    max-width: 330px;
    margin: 0;
    color: rgba(187,205,225,0.52);
    font-size: 9.6px;
    line-height: 1.6;
}


/* =========================================================
   EQUAL PLATFORM RAIL
========================================================= */

.home-cta-platforms {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.home-cta-platform {
    position: relative;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 18px;
    gap: 15px;
    align-items: center;
    min-width: 0;
    padding: 21px 24px;
    color: #ffffff;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s ease;
}

.home-cta-platform:last-child {
    border-right: 0;
}

.home-cta-platform::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 2px;
    background: linear-gradient(90deg, #b72d4b, #397fce, #79afe8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}

.home-cta-platform:hover {
    background: rgba(63,130,209,0.065);
}

.home-cta-platform:hover::before {
    transform: scaleX(1);
}

.home-cta-platform-number {
    color: rgba(126,177,233,0.55);
    font-size: 8px;
    font-weight: 800;
}

.home-cta-platform-content {
    min-width: 0;
}

.home-cta-platform-content > span {
    display: block;
    margin-bottom: 5px;
    color: rgba(142,181,224,0.53);
    font-size: 6.8px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.home-cta-platform-content > strong {
    display: block;
    color: rgba(244,248,253,0.94);
    font-size: 14px;
    font-weight: 650;
}

.home-cta-platform > svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: #70a8e3;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}

.home-cta-platform:hover > svg {
    transform: translateX(4px);
}


/* =========================================================
   BOTTOM
========================================================= */

.home-cta-bottom {
    display: grid;
    grid-template-columns: auto minmax(50px, 1fr) auto;
    gap: 25px;
    align-items: center;
    padding-top: 23px;
}

.home-cta-bottom-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.home-cta-bottom-left > span {
    color: #eef5fc;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.home-cta-bottom-left > p {
    margin: 0;
    padding-left: 10px;
    color: rgba(175,196,219,0.48);
    font-size: 8px;
    border-left: 1px solid rgba(255,255,255,0.14);
}

.home-cta-bottom-line > span {
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.03),
        rgba(126,177,233,0.17),
        rgba(255,255,255,0.03)
    );
}

.home-cta-bottom-right {
    color: rgba(175,196,219,0.48);
    font-size: 8px;
    font-weight: 600;
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1120px) {

    .home-cta {
        padding: 76px 0 36px;
    }

    .home-cta-main {
        grid-template-columns: minmax(0, 1.12fr) minmax(310px, 0.88fr);
        gap: 60px;
    }

    .home-cta-content h2 {
        font-size: clamp(37px, 4vw, 47px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .home-cta {
        padding: 68px 0 34px;
    }

    .home-cta-main {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 43px 0 40px;
    }

    .home-cta-content {
        max-width: 760px;
    }

    .home-cta-entry {
        display: grid;
        grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
        gap: 0 38px;
        padding: 25px 0 25px 25px;
    }

    .home-cta-entry-head,
    .home-cta-entry-title,
    .home-cta-entry-note {
        grid-column: 1;
    }

    .home-cta-entry-flow {
        grid-column: 2;
        grid-row: 1 / span 3;
        align-self: center;
    }

    .home-cta-entry-title {
        padding-bottom: 14px;
    }

    .home-cta-entry-note {
        margin-top: 4px;
    }

    .home-cta-platform {
        padding: 19px 17px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .home-cta {
        padding: 50px 0 28px;
    }

    .home-cta-word {
        top: 100px;
        right: -20px;
        font-size: 75px;
        letter-spacing: -4px;
    }

    .home-cta-top {
        display: block;
        padding-bottom: 15px;
    }

    .home-cta-kicker {
        font-size: 8.8px;
    }

    .home-cta-meta {
        margin-top: 10px;
        flex-wrap: wrap;
        font-size: 7px;
    }

    .home-cta-meta i {
        width: 9px;
    }

    .home-cta-main {
        gap: 31px;
        padding: 32px 0;
    }

    .home-cta-label {
        margin-bottom: 10px;
        font-size: 7.3px;
    }

    .home-cta-content h2 {
        font-size: 30px;
        line-height: 1.13;
        letter-spacing: -0.85px;
    }

    .home-cta-description {
        margin-top: 18px;
        padding-left: 14px;
    }

    .home-cta-description p:first-child {
        font-size: 12px;
    }

    .home-cta-description p {
        font-size: 11px;
        line-height: 1.67;
    }

    .home-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 22px;
    }

    .home-cta-primary,
    .home-cta-secondary {
        width: 100%;
        min-height: 46px;
    }


    /* ENTRY */

    .home-cta-entry {
        display: block;
        padding: 21px 0 21px 17px;
    }

    .home-cta-entry-title {
        padding: 17px 0;
    }

    .home-cta-entry-title > strong {
        font-size: 17px;
    }

    .home-cta-entry-note {
        margin-top: 15px;
    }


    /* PLATFORM RAIL */

    .home-cta-platforms {
        grid-template-columns: 1fr;
    }

    .home-cta-platform {
        padding: 17px 8px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .home-cta-platform:last-child {
        border-bottom: 0;
    }

    .home-cta-platform::before {
        right: auto;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
        transform: scaleY(0);
        transform-origin: center;
    }

    .home-cta-platform:hover::before {
        transform: scaleY(1);
    }


    /* BOTTOM */

    .home-cta-bottom {
        display: block;
        padding-top: 19px;
    }

    .home-cta-bottom-line {
        margin: 13px 0;
    }

    .home-cta-bottom-right {
        line-height: 1.5;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .home-cta-content h2 {
        font-size: 28px;
    }

    .home-cta-bottom-left {
        display: block;
    }

    .home-cta-bottom-left > p {
        margin-top: 5px;
        padding-left: 0;
        border-left: 0;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .home-cta-primary,
    .home-cta-secondary,
    .home-cta-primary svg,
    .home-cta-secondary svg,
    .home-cta-platform,
    .home-cta-platform::before,
    .home-cta-platform > svg {
        transition: none !important;
    }

}