/* =========================================================
   LUCENT SOFT
   HOME HERO
========================================================= */

.lucent-hero {
    position: relative;
    overflow: hidden;

    padding: 92px 0 0;

    background:
        radial-gradient(
            circle at 80% 12%,
            rgba(54, 117, 200, 0.17),
            transparent 29%
        ),
        radial-gradient(
            circle at 8% 88%,
            rgba(146, 28, 54, 0.08),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #07101c 0%,
            #0a1728 48%,
            #102640 100%
        );

    color: #ffffff;

    isolation: isolate;
}


/* =========================================================
   BACKGROUND
========================================================= */

.lucent-hero-bg {
    position: absolute;
    inset: 0;

    z-index: -1;

    overflow: hidden;

    pointer-events: none;
}


.lucent-hero-grid {
    position: absolute;
    inset: -80px;

    opacity: 0.52;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    animation:
        lucentHeroGridMove
        30s
        linear
        infinite;
}


.lucent-hero-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(2px);
}


.lucent-hero-glow-one {
    width: 560px;
    height: 560px;

    right: -190px;
    top: -260px;

    background:
        radial-gradient(
            circle,
            rgba(64, 134, 222, 0.14),
            transparent 69%
        );
}


.lucent-hero-glow-two {
    width: 430px;
    height: 430px;

    left: -220px;
    bottom: -250px;

    background:
        radial-gradient(
            circle,
            rgba(155, 24, 52, 0.085),
            transparent 70%
        );
}


.lucent-hero-orbit {
    position: absolute;

    border:
        1px solid
        rgba(255, 255, 255, 0.045);

    border-radius: 50%;
}


.lucent-hero-orbit-one {
    width: 390px;
    height: 390px;

    right: 4%;
    top: 7%;
}


.lucent-hero-orbit-two {
    width: 250px;
    height: 250px;

    right: 9%;
    top: 17%;
}


.lucent-hero-word {
    position: absolute;

    left: -35px;
    bottom: 40px;

    color: rgba(255, 255, 255, 0.018);

    font-size: 112px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: -7px;

    white-space: nowrap;

    user-select: none;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.lucent-hero-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(410px, 0.82fr);

    align-items: center;

    gap: clamp(64px, 7vw, 112px);

    padding-bottom: 72px;
}


/* =========================================================
   LEFT
========================================================= */

.lucent-hero-main {
    max-width: 720px;

    animation:
        lucentHeroMainIn
        0.75s
        ease
        both;
}


.lucent-hero-kicker {
    display: inline-flex;
    align-items: center;

    gap: 11px;

    margin-bottom: 20px;

    color: #91bceb;

    font-size: 10.5px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: 1.45px;
}


.lucent-hero-kicker-line {
    width: 23px;
    height: 2px;

    background: #b42d49;
}


/* =========================================================
   TITLE
========================================================= */

.lucent-hero-title {
    max-width: 710px;

    margin: 0;

    color: #ffffff;

    font-size: clamp(42px, 3.6vw, 52px);
    line-height: 1.1;

    font-weight: 735;

    letter-spacing: -1.55px;
}


.lucent-hero-title span {
    display: block;

    margin-top: 5px;

    color: #83b5ee;
}


/* =========================================================
   TEXT
========================================================= */

.lucent-hero-lead {
    max-width: 650px;

    margin: 25px 0 0;

    color: rgba(239, 245, 252, 0.9);

    font-size: 16px;
    line-height: 1.7;

    font-weight: 520;
}


.lucent-hero-description {
    max-width: 665px;

    margin: 14px 0 0;

    color: rgba(226, 235, 246, 0.62);

    font-size: 13.5px;
    line-height: 1.78;

    font-weight: 400;
}


/* =========================================================
   ACTIONS
========================================================= */

.lucent-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 22px;

    margin-top: 30px;
}


.lucent-hero-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 48px;

    padding: 0 20px;

    border:
        1px solid
        #3475c6;

    border-radius: 6px;

    background: #3475c6;

    color: #ffffff;

    font-size: 12.5px;
    line-height: 1;

    font-weight: 700;

    box-shadow:
        0 14px 32px
        rgba(25, 77, 145, 0.23);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.lucent-hero-primary-btn svg,
.lucent-hero-secondary-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;
}


.lucent-hero-primary-btn:hover {
    transform: translateY(-2px);

    background: #4283d2;
    border-color: #4283d2;

    box-shadow:
        0 18px 38px
        rgba(25, 77, 145, 0.3);
}


.lucent-hero-primary-btn:hover svg {
    transform: translateX(3px);
}


.lucent-hero-secondary-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding-bottom: 5px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 12.5px;

    font-weight: 650;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}


.lucent-hero-secondary-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 35px;
    height: 1px;

    background: #83b5ee;

    transition:
        width
        0.25s
        ease;
}


.lucent-hero-secondary-link:hover {
    gap: 11px;

    color: #9bc8f8;
}


.lucent-hero-secondary-link:hover::after {
    width: 100%;
}


.lucent-hero-secondary-link:hover svg {
    transform: translateX(3px);
}


/* =========================================================
   SUPPORT LINE
========================================================= */

.lucent-hero-support-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 31px;
}


.lucent-hero-support-line span {
    color: rgba(255, 255, 255, 0.36);

    font-size: 9px;

    font-weight: 750;

    letter-spacing: 0.9px;
}


.lucent-hero-support-line i {
    width: 18px;
    height: 1px;

    background: rgba(255, 255, 255, 0.13);
}


/* =========================================================
   RIGHT PLATFORM AREA
========================================================= */

.lucent-hero-platform-area {
    position: relative;

    padding-left: 36px;

    animation:
        lucentHeroPlatformIn
        0.85s
        0.08s
        ease
        both;
}


.lucent-hero-platform-area::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 1px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255, 255, 255, 0.14) 10%,
            rgba(255, 255, 255, 0.14) 90%,
            transparent
        );
}


/* =========================================================
   PLATFORM HEAD
========================================================= */

.lucent-hero-platform-head {
    margin-bottom: 18px;
}


.lucent-hero-platform-head-label {
    display: block;

    margin-bottom: 9px;

    color: #91bceb;

    font-size: 9.5px;

    font-weight: 800;

    letter-spacing: 1.25px;
}


.lucent-hero-platform-head p {
    max-width: 390px;

    margin: 0;

    color: rgba(225, 234, 245, 0.52);

    font-size: 11.5px;
    line-height: 1.62;
}


/* =========================================================
   PLATFORM LIST
========================================================= */

.lucent-hero-platform-list {
    display: grid;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.09);
}


.lucent-hero-platform-item {
    position: relative;

    display: grid;

    grid-template-columns:
        34px
        minmax(0, 1fr)
        30px;

    align-items: center;

    gap: 14px;

    min-height: 113px;

    padding: 17px 5px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.09);

    transition:
        padding 0.3s ease,
        background 0.3s ease;
}


.lucent-hero-platform-item::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 0;
    height: 1px;

    background: #79afea;

    transition:
        width
        0.3s
        ease;
}


.lucent-hero-platform-item:hover {
    padding-left: 12px;
    padding-right: 12px;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035),
            transparent
        );
}


.lucent-hero-platform-item:hover::before {
    width: 100%;
}


.lucent-hero-platform-number {
    color: rgba(128, 177, 232, 0.5);

    font-size: 9.5px;

    font-weight: 800;
}


.lucent-hero-platform-content {
    min-width: 0;
}


.lucent-hero-platform-name {
    display: block;

    margin-bottom: 3px;

    color: rgba(145, 188, 235, 0.62);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.9px;

    text-transform: uppercase;
}


.lucent-hero-platform-content strong {
    display: block;

    color: #ffffff;

    font-size: 17px;
    line-height: 1.28;

    font-weight: 650;

    letter-spacing: -0.25px;
}


.lucent-hero-platform-content p {
    max-width: 345px;

    margin: 6px 0 0;

    color: rgba(225, 234, 244, 0.49);

    font-size: 10.8px;
    line-height: 1.55;
}


.lucent-hero-platform-arrow {
    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.11);

    border-radius: 50%;

    color: rgba(255, 255, 255, 0.6);

    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}


.lucent-hero-platform-arrow svg {
    width: 13px;
    height: 13px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.lucent-hero-platform-item:hover
.lucent-hero-platform-arrow {
    border-color: #3475c6;

    background: #3475c6;

    color: #ffffff;

    transform: translateX(3px);
}


/* =========================================================
   BOTTOM
========================================================= */

.lucent-hero-bottom {
    display: grid;

    grid-template-columns:
        minmax(220px, 0.75fr)
        minmax(0, 2fr);

    align-items: center;

    gap: 42px;

    min-height: 88px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.085);
}


.lucent-hero-bottom-intro span {
    display: block;

    margin-bottom: 5px;

    color: rgba(145, 188, 235, 0.56);

    font-size: 8.5px;

    font-weight: 800;

    letter-spacing: 1.05px;
}


.lucent-hero-bottom-intro strong {
    color: rgba(255, 255, 255, 0.72);

    font-size: 11.5px;

    font-weight: 600;
}


.lucent-hero-bottom-services {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;

    gap: 8px 18px;
}


.lucent-hero-bottom-services span {
    position: relative;

    padding-left: 12px;

    color: rgba(255, 255, 255, 0.4);

    font-size: 9px;

    font-weight: 650;

    letter-spacing: 0.3px;
}


.lucent-hero-bottom-services span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #9b1834;

    transform: translateY(-50%);
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes lucentHeroMainIn {

    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes lucentHeroPlatformIn {

    from {
        opacity: 0;
        transform: translateX(22px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes lucentHeroGridMove {

    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(60px, 60px, 0);
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1100px) {

    .lucent-hero-layout {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(370px, 0.82fr);

        gap: 58px;
    }


    .lucent-hero-title {
        font-size: 44px;
    }


    .lucent-hero-platform-area {
        padding-left: 28px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .lucent-hero {
        padding-top: 70px;
    }


    .lucent-hero-layout {
        grid-template-columns: 1fr;

        gap: 52px;

        padding-bottom: 58px;
    }


    .lucent-hero-main {
        max-width: 760px;
    }


    .lucent-hero-title {
        max-width: 690px;

        font-size: 42px;
    }


    .lucent-hero-platform-area {
        max-width: 720px;

        padding-left: 0;
        padding-top: 26px;
    }


    .lucent-hero-platform-area::before {
        left: 0;
        top: 0;
        right: 0;
        bottom: auto;

        width: 100%;
        height: 1px;

        background:
            linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.15),
                transparent
            );
    }


    .lucent-hero-bottom {
        grid-template-columns: 1fr;

        gap: 18px;

        padding: 22px 0;
    }


    .lucent-hero-bottom-services {
        justify-content: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .lucent-hero {
        padding-top: 52px;
    }


    .lucent-hero-layout {
        gap: 42px;

        padding-bottom: 46px;
    }


    .lucent-hero-kicker {
        margin-bottom: 16px;

        font-size: 9px;
    }


    .lucent-hero-title {
        font-size: 31px;
        line-height: 1.14;

        letter-spacing: -0.8px;
    }


    .lucent-hero-title span {
        margin-top: 3px;
    }


    .lucent-hero-lead {
        margin-top: 20px;

        font-size: 14px;
        line-height: 1.65;
    }


    .lucent-hero-description {
        margin-top: 12px;

        font-size: 12.8px;
        line-height: 1.7;
    }


    .lucent-hero-actions {
        display: grid;

        grid-template-columns: 1fr;

        gap: 16px;

        margin-top: 24px;
    }


    .lucent-hero-primary-btn {
        width: 100%;
    }


    .lucent-hero-secondary-link {
        width: fit-content;
    }


    .lucent-hero-support-line {
        gap: 9px;

        margin-top: 24px;
    }


    .lucent-hero-support-line span {
        font-size: 8px;
    }


    .lucent-hero-support-line i {
        width: 11px;
    }


    .lucent-hero-platform-head p {
        font-size: 11px;
    }


    .lucent-hero-platform-item {
        grid-template-columns:
            28px
            minmax(0, 1fr)
            27px;

        gap: 10px;

        min-height: 106px;

        padding: 15px 2px;
    }


    .lucent-hero-platform-item:hover {
        padding-left: 2px;
        padding-right: 2px;

        background: transparent;
    }


    .lucent-hero-platform-content strong {
        font-size: 15.5px;
    }


    .lucent-hero-platform-content p {
        font-size: 10.3px;
        line-height: 1.52;
    }


    .lucent-hero-platform-arrow {
        width: 26px;
        height: 26px;
    }


    .lucent-hero-bottom {
        gap: 15px;

        min-height: 0;

        padding: 20px 0;
    }


    .lucent-hero-bottom-services {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px 14px;
    }


    .lucent-hero-bottom-services span {
        font-size: 8.5px;
    }


    .lucent-hero-word {
        font-size: 70px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .lucent-hero-title {
        font-size: 28px;
    }


    .lucent-hero-bottom-services {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .lucent-hero-main,
    .lucent-hero-platform-area,
    .lucent-hero-grid {
        animation: none !important;
    }


    .lucent-hero-primary-btn,
    .lucent-hero-primary-btn svg,
    .lucent-hero-secondary-link,
    .lucent-hero-secondary-link::after,
    .lucent-hero-secondary-link svg,
    .lucent-hero-platform-item,
    .lucent-hero-platform-item::before,
    .lucent-hero-platform-arrow {
        transition: none !important;
    }

}