/* Start custom CSS for html, class: .elementor-element-028bd02 *//* =========================================================
   NOVIUS SITE — GLOBAL CSS
========================================================= */

.novius-site {
    --blue: #1769ff;
    --black: #111111;
    --gray: #68717c;
    --light-gray: #f5f6f8;
    --border: #dfe3e8;
    --white: #ffffff;

    width: 100%;
    font-family:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    color: var(--black);
    background: #ffffff;
    overflow: hidden;
}

.novius-site *,
.novius-site *::before,
.novius-site *::after {
    box-sizing: border-box;
}

.nv-container {
    width: min(calc(100% - 80px), 1240px);
    margin: 0 auto;
}


/* =========================================================
   LABEL
========================================================= */

.nv-label {
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: .13em;
    color: var(--gray);
}


/* =========================================================
   SECTION TOP
========================================================= */

.nv-section-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 24px;

    border-bottom: 1px solid var(--border);
}


/* =========================================================
   HERO
========================================================= */

.nv-hero {
    min-height: 92vh;

    display: flex;
    align-items: center;

    background: #ffffff;
}

.nv-hero-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    min-height: 680px;
}

.nv-hero-copy {
    padding: 80px 0;
}

.nv-hero-copy h1 {
    margin: 0 0 35px;

    font-size: clamp(70px, 10vw, 145px);

    line-height: .82;

    font-weight: 400;

    letter-spacing: -.065em;
}

.nv-hero-copy h1 span {
    color: var(--blue);
}

.nv-hero-description {
    max-width: 430px;

    margin: 0 0 32px;

    font-size: 15px;

    line-height: 1.75;

    color: var(--gray);
}


/* =========================================================
   BUTTON
========================================================= */

.nv-button {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 13px 18px;

    border: 1px solid var(--black);

    border-radius: 10px;

    color: var(--black);

    background: #ffffff;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: .1em;

    transition: all .25s ease;
}

.nv-button span {
    font-size: 15px;
    line-height: 1;
}

.nv-button:hover {
    background: var(--black);
    color: #ffffff;
    border-color: var(--black);
}

.nv-button-small {
    padding: 10px 14px;

    margin-top: 22px;

    font-size: 9px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.nv-hero-visual {
    position: relative;

    width: min(42vw, 520px);

    aspect-ratio: 1 / 1;

    margin: auto;
}

.nv-hero-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 1px solid rgba(23, 105, 255, .18);

    border-radius: 50%;
}

.orbit-1 {
    width: 62%;
    height: 62%;

    animation:
        orbit-spin
        16s
        linear
        infinite;
}

.orbit-2 {
    width: 88%;
    height: 42%;

    transform:
        translate(-50%, -50%)
        rotate(35deg);

    animation:
        orbit-spin
        20s
        linear
        infinite reverse;
}

@keyframes orbit-spin {
    from {
        rotate: 0deg;
    }

    to {
        rotate: 360deg;
    }
}

.nv-hero-core {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 90px;
    height: 90px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: var(--blue);

    box-shadow:
        0 0 70px
        rgba(23, 105, 255, .22);
}

.nv-core-dot {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 12px;
    height: 12px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: #ffffff;
}

.nv-hero-line {
    position: absolute;

    width: 1px;
    height: 100px;

    background:
        linear-gradient(
            transparent,
            var(--blue),
            transparent
        );

    opacity: .5;
}

.line-1 {
    left: 50%;
    top: 0;
}

.line-2 {
    right: 18%;
    bottom: 12%;

    transform: rotate(55deg);
}

.line-3 {
    left: 18%;
    bottom: 12%;

    transform: rotate(-55deg);
}


/* =========================================================
   SCROLL
========================================================= */

.nv-scroll {
    display: flex;

    align-items: center;

    gap: 15px;

    padding-bottom: 30px;

    font-size: 9px;

    letter-spacing: .12em;

    color: var(--gray);
}

.nv-scroll-line {
    width: 50px;
    height: 1px;

    background: var(--gray);
}


/* =========================================================
   DEPTH SECTION
========================================================= */

.nv-depth-section {
    padding: 130px 0;

    background: #f7f9fc;
}

.nv-depth-heading {
    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 100px;

    padding: 75px 0 70px;
}

.nv-depth-heading h2 {
    margin: 0;

    font-size: clamp(42px, 5vw, 72px);

    line-height: 1;

    font-weight: 400;

    letter-spacing: -.055em;
}

.nv-depth-heading h2 span {
    color: #7a838d;
}

.nv-depth-heading p {
    max-width: 430px;

    align-self: end;

    margin: 0;

    font-size: 14px;

    line-height: 1.8;

    color: var(--gray);
}


/* =========================================================
   DEPTH DEMO
========================================================= */

.novius-depth-demo {
    width: 100%;
}

.nd-flow {
    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        80px
        minmax(0,1fr)
        80px
        minmax(0,1fr);

    align-items: center;

    gap: 18px;
}

.nd-step {
    min-width: 0;
}

.nd-step-number {
    margin-bottom: 13px;

    font-size: 10px;

    letter-spacing: .12em;

    color: var(--blue);
}

.nd-title {
    margin-bottom: 20px;

    font-size: 13px;

    letter-spacing: .06em;
}

.nd-visual,
.nd-ai-visual {
    position: relative;

    width: 100%;

    aspect-ratio: 1.2 / 1;

    overflow: hidden;

    border-radius: 12px;
}


/* =========================================================
   INPUT IMAGE
========================================================= */

.nd-image-box {
    background:
        radial-gradient(
            circle at 50% 45%,
            #c5c9cd,
            #7d858e 48%,
            #343a40
        );
}

.nd-endoscope {
    position: absolute;

    width: 74%;
    height: 68%;

    left: 13%;
    top: 16%;

    border-radius: 50%;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 42% 38%,
            #e0e2e4,
            #8d959d 48%,
            #30363c
        );

    transform: rotate(-8deg);
}

.nd-organ {
    position: absolute;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(255,255,255,.5),
            rgba(80,90,100,.2) 45%,
            rgba(10,15,20,.5)
        );
}

.nd-organ-1 {
    width: 48%;
    height: 62%;

    left: 7%;
    top: 20%;
}

.nd-organ-2 {
    width: 58%;
    height: 72%;

    left: 30%;
    top: 5%;
}

.nd-organ-3 {
    width: 40%;
    height: 52%;

    right: -2%;
    bottom: 0;
}

.nd-highlight {
    position: absolute;

    width: 34%;
    height: 15%;

    left: 28%;
    top: 18%;

    border-radius: 50%;

    background: rgba(255,255,255,.4);

    filter: blur(8px);
}

.nd-scan {
    position: absolute;

    left: 0;
    top: 0;

    width: 2px;
    height: 100%;

    background:
        linear-gradient(
            transparent,
            #ffffff,
            transparent
        );

    box-shadow:
        0 0 20px
        rgba(255,255,255,.7);

    animation:
        nd-scan
        3.5s
        ease-in-out
        infinite;
}

@keyframes nd-scan {

    0% {
        left: 0;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        left: 50%;
    }

    85% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}


/* =========================================================
   AI INFERENCE
========================================================= */

.nd-ai-visual {
    background:
        radial-gradient(
            circle at center,
            #ffffff,
            #edf3fc
        );
}

.nd-data-field {
    position: absolute;
    inset: 0;
}

.nd-data-field span {
    position: absolute;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--blue);

    opacity: .3;

    animation:
        data-float
        3s
        ease-in-out
        infinite;
}

.nd-data-field span:nth-child(1){left:10%;top:20%}
.nd-data-field span:nth-child(2){left:18%;top:65%}
.nd-data-field span:nth-child(3){left:27%;top:14%}
.nd-data-field span:nth-child(4){left:35%;top:74%}
.nd-data-field span:nth-child(5){left:45%;top:10%}
.nd-data-field span:nth-child(6){left:54%;top:80%}
.nd-data-field span:nth-child(7){left:64%;top:20%}
.nd-data-field span:nth-child(8){left:73%;top:67%}
.nd-data-field span:nth-child(9){left:83%;top:29%}
.nd-data-field span:nth-child(10){left:91%;top:58%}
.nd-data-field span:nth-child(11){left:14%;top:43%}
.nd-data-field span:nth-child(12){left:29%;top:53%}
.nd-data-field span:nth-child(13){left:42%;top:39%}
.nd-data-field span:nth-child(14){left:57%;top:55%}
.nd-data-field span:nth-child(15){left:71%;top:43%}
.nd-data-field span:nth-child(16){left:85%;top:76%}
.nd-data-field span:nth-child(17){left:24%;top:84%}
.nd-data-field span:nth-child(18){left:65%;top:12%}
.nd-data-field span:nth-child(19){left:89%;top:18%}
.nd-data-field span:nth-child(20){left:8%;top:78%}
.nd-data-field span:nth-child(21){left:36%;top:88%}
.nd-data-field span:nth-child(22){left:76%;top:87%}
.nd-data-field span:nth-child(23){left:48%;top:61%}
.nd-data-field span:nth-child(24){left:58%;top:41%}
.nd-data-field span:nth-child(25){left:93%;top:45%}

@keyframes data-float {

    0%,100% {
        transform: translate(0,0);
        opacity: .25;
    }

    50% {
        transform: translate(6px,-5px);
        opacity: .85;
    }
}

.nd-inference {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 110px;
    height: 110px;

    transform: translate(-50%,-50%);
}

.nd-inference-core {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 54px;
    height: 54px;

    transform: translate(-50%,-50%);

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--blue);

    color: #ffffff;

    font-size: 12px;

    z-index: 3;

    box-shadow:
        0 0 35px
        rgba(23,105,255,.3);
}

.nd-inference-ring {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 80px;
    height: 80px;

    transform: translate(-50%,-50%);

    border:
        1px solid
        rgba(23,105,255,.35);

    border-radius: 50%;

    animation:
        nd-ring
        2.5s
        ease-out
        infinite;
}

.ring-2 {
    width: 110px;
    height: 110px;

    animation-delay: .8s;
}

@keyframes nd-ring {

    0% {
        transform:
            translate(-50%,-50%)
            scale(.7);

        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    100% {
        transform:
            translate(-50%,-50%)
            scale(1.2);

        opacity: 0;
    }
}

.nd-data-label {
    position: absolute;

    bottom: 14px;
    left: 17px;

    font-size: 8px;

    line-height: 1.5;

    letter-spacing: .12em;

    color: var(--gray);
}


/* =========================================================
   DEPTH MAP
========================================================= */

.nd-depth-box {
    background:
        linear-gradient(
            135deg,
            #edf4ff,
            #dce9ff
        );
}

.nd-depth-map {
    position: absolute;

    inset: 10%;

    transform:
        perspective(500px)
        rotateX(48deg)
        rotateZ(-6deg);

    transition:
        transform .2s ease-out;
}

.nd-depth-shape {
    position: absolute;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffffff,
            #a8c5f5 40%,
            #4d8cf0 70%,
            #1769ff
        );

    box-shadow:
        15px 20px 30px
        rgba(35,80,150,.18);
}

.depth-shape-1 {
    width: 52%;
    height: 64%;

    left: 7%;
    top: 23%;
}

.depth-shape-2 {
    width: 62%;
    height: 72%;

    left: 25%;
    top: 5%;
}

.depth-shape-3 {
    width: 38%;
    height: 48%;

    right: 0;
    bottom: 0;
}

.nd-depth-grid {
    position: absolute;

    inset: -20%;

    background-image:
        linear-gradient(
            rgba(23,105,255,.12)
            1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(23,105,255,.12)
            1px,
            transparent 1px
        );

    background-size: 18px 18px;
}

.nd-depth-label {
    position: absolute;

    right: 15px;
    bottom: 15px;

    font-size: 8px;

    letter-spacing: .14em;

    color: #365f9e;
}

.nd-step p {
    margin: 18px 0 0;

    font-size: 12px;

    line-height: 1.7;

    color: var(--gray);
}


/* =========================================================
   CONNECTOR
========================================================= */

.nd-connector {
    position: relative;

    height: 80px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.nd-line {
    position: absolute;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--blue),
            transparent
        );
}

.nd-arrow {
    position: relative;

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: var(--blue);

    z-index: 2;
}


/* =========================================================
   EXPLANATION
========================================================= */

.nd-explanation {
    display: grid;

    grid-template-columns: 1fr 2fr;

    gap: 80px;

    margin-top: 70px;

    padding-top: 30px;

    border-top:
        1px solid
        var(--border);
}

.nd-explanation-line {
    width: 45px;
    height: 2px;

    margin-top: 8px;

    background: var(--blue);
}

.nd-explanation-text {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.nd-explanation-text strong {
    font-size:
        clamp(25px,3vw,40px);

    line-height: 1.08;

    font-weight: 400;

    letter-spacing: -.04em;
}

.nd-explanation-text span {
    max-width: 620px;

    font-size: 14px;

    line-height: 1.8;

    color: var(--gray);
}


/* =========================================================
   02 / TECHNOLOGY
   WHITE BACKGROUND
========================================================= */

.nv-technology {
    background: #ffffff;

    color: #111111;

    padding: 130px 0;

    border-top:
        1px solid
        var(--border);
}

.nv-tech-heading {
    display: grid;

    grid-template-columns:
        1.2fr .8fr;

    gap: 100px;

    padding: 80px 0;
}

.nv-tech-heading h2 {
    margin: 0;

    font-size:
        clamp(46px,5vw,78px);

    line-height: .95;

    font-weight: 400;

    letter-spacing: -.055em;

    color: #111111;
}

.nv-tech-heading p {
    align-self: end;

    max-width: 430px;

    margin: 0;

    font-size: 14px;

    line-height: 1.8;

    color: #68717c;
}

.nv-tech-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    border-top:
        1px solid
        var(--border);
}

.nv-tech-item {
    display: grid;

    grid-template-columns:
        60px 1fr;

    gap: 30px;

    padding: 45px 30px 45px 0;

    border-bottom:
        1px solid
        var(--border);
}

.nv-tech-item:nth-child(odd) {
    border-right:
        1px solid
        var(--border);

    padding-right: 45px;
}

.nv-tech-item:nth-child(even) {
    padding-left: 45px;
}

.nv-tech-number {
    font-size: 10px;

    letter-spacing: .12em;

    color: var(--blue);
}

.nv-tech-item h3 {
    margin: 0 0 15px;

    font-size: 21px;

    line-height: 1.2;

    font-weight: 400;

    letter-spacing: -.02em;

    color: #111111;
}

.nv-tech-item p {
    max-width: 400px;

    margin: 0;

    font-size: 13px;

    line-height: 1.8;

    color: #68717c;
}

.nv-tech-bottom {
    display: flex;

    justify-content: space-between;

    padding-top: 25px;

    font-size: 9px;

    letter-spacing: .1em;

    color: #68717c;
}


/* =========================================================
   RESEARCH
========================================================= */

.nv-research {
    padding: 130px 0;

    background: #f5f6f8;
}

.nv-research-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 120px;

    padding-top: 80px;
}

.nv-research h2,
.nv-about h2 {
    margin: 0;

    font-size:
        clamp(45px,5vw,75px);

    line-height: .95;

    font-weight: 400;

    letter-spacing: -.055em;
}

.nv-research p,
.nv-about p {
    max-width: 500px;

    margin: 0 0 25px;

    font-size: 14px;

    line-height: 1.8;

    color: var(--gray);
}

.nv-research-lead,
.nv-about-lead {
    font-size: 20px !important;

    line-height: 1.5 !important;

    color: #111111 !important;
}


/* =========================================================
   ABOUT
========================================================= */

.nv-about {
    padding: 130px 0;

    background: #ffffff;
}

.nv-about-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 120px;

    padding-top: 80px;
}


/* =========================================================
   FOOTER
========================================================= */

.nv-footer-space {
    padding: 70px 0 35px;

    background: #ffffff;
}

.nv-footer-line {
    width: 100%;

    height: 1px;

    background: var(--border);
}

.nv-footer-meta {
    display: flex;

    justify-content: space-between;

    padding-top: 25px;

    font-size: 9px;

    letter-spacing: .1em;

    color: var(--gray);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .nv-container {
        width: calc(100% - 50px);
    }

    .nv-hero-content {
        min-height: 600px;
    }

    .nd-flow {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nd-connector {
        height: 75px;
    }

    .nd-line {
        width: 1px;
        height: 100%;
    }

    .nd-arrow {
        transform: rotate(90deg);
    }

    .nv-depth-heading,
    .nv-tech-heading {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nv-research-grid,
    .nv-about-grid {
        gap: 70px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .nv-container {
        width: calc(100% - 36px);
    }

    .nv-section-top {
        flex-direction: column;

        align-items: flex-start;

        gap: 9px;
    }


    /* HERO */

    .nv-hero {
        min-height: auto;
    }

    .nv-hero-content {
        display: flex;

        flex-direction: column;

        min-height: auto;
    }

    .nv-hero-copy {
        padding: 65px 0 30px;
    }

    .nv-hero-copy h1 {
        font-size:
            clamp(62px,19vw,95px);
    }

    .nv-hero-description {
        font-size: 13px;
    }

    .nv-hero-visual {
        width: 80vw;

        max-width: 380px;

        margin: 25px auto 60px;
    }

    .nv-scroll {
        padding-bottom: 25px;
    }


    /* DEPTH */

    .nv-depth-section,
    .nv-technology,
    .nv-research,
    .nv-about {
        padding: 80px 0;
    }

    .nv-depth-heading {
        padding: 50px 0;
    }

    .nv-depth-heading h2,
    .nv-tech-heading h2 {
        font-size: 43px;
    }

    .nd-visual,
    .nd-ai-visual {
        aspect-ratio: 1.15 / 1;
    }

    .nd-explanation {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-top: 55px;
    }

    .nd-explanation-text strong {
        font-size: 28px;
    }


    /* TECHNOLOGY */

    .nv-tech-heading {
        padding: 50px 0;
    }

    .nv-tech-grid {
        grid-template-columns: 1fr;
    }

    .nv-tech-item,
    .nv-tech-item:nth-child(even),
    .nv-tech-item:nth-child(odd) {
        padding: 35px 0;

        border-right: none;
    }

    .nv-tech-bottom {
        flex-direction: column;

        gap: 10px;
    }


    /* RESEARCH / ABOUT */

    .nv-research-grid,
    .nv-about-grid {
        grid-template-columns: 1fr;

        gap: 50px;

        padding-top: 55px;
    }

    .nv-research h2,
    .nv-about h2 {
        font-size: 45px;
    }

    .nv-research-lead,
    .nv-about-lead {
        font-size: 18px !important;
    }


    /* FOOTER */

    .nv-footer-meta {
        flex-direction: column;

        gap: 10px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .nv-container {
        width: calc(100% - 28px);
    }

    .nv-hero-copy h1 {
        font-size: 58px;
    }

    .nv-button {
        padding: 12px 15px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .novius-site *,
    .novius-site *::before,
    .novius-site *::after {

        animation: none !important;

        transition: none !important;
    }

}/* End custom CSS */