/* /Components/Buttons 2/Button.razor.rz.scp.css */
.agentis-button[b-0j1bl8w5h2] {
    border: 1px solid #8d8d8d;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    height: 36px;
    box-sizing: border-box;
    padding: 0 1.5rem;
    font-weight: 600;
    cursor: pointer;
    font-size: 12px;
    transition: background-color .2s ease, color .5s ease, border-color .2s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    filter: saturate(150%)
}

    .agentis-button:hover[b-0j1bl8w5h2] {
        color: black;
        background-color: rgba(255, 255, 255, 1);
        border-color: white;
    }


    
/* /Components/Features.razor.rz.scp.css */
.features[b-snhcss0j8a] {
    background-color: black;
    padding: 2rem clamp(1.5rem, 6vw, 12rem);
    color: white;
    box-sizing: border-box;
    overflow-x: hidden;
}

.header[b-snhcss0j8a] {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.left[b-snhcss0j8a] {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .left .title[b-snhcss0j8a] {
        font-size: clamp(2.5rem, 6vw, 4rem);
        line-height: 1;
    }

    .left .sub[b-snhcss0j8a] {
        font-size: clamp(1rem, 1.6vw, 1.25rem);
    }

.right[b-snhcss0j8a] {
    width: 35%;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.cards[b-snhcss0j8a] {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 1rem;
    margin-bottom: 4rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .cards[b-snhcss0j8a]::-webkit-scrollbar {
        display: none;
    }

.card[b-snhcss0j8a] {
    flex: 0 0 20rem;
}

.image-wrapper[b-snhcss0j8a] {
    width: 100%;
    aspect-ratio: 20 / 36;
    overflow: hidden;
    border-radius: 24px;
}

.cards .image-wrapper img[b-snhcss0j8a] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .features[b-snhcss0j8a] {
        padding: 2rem 1.5rem;
    }

    .header[b-snhcss0j8a] {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .left[b-snhcss0j8a],
    .right[b-snhcss0j8a] {
        width: 100%;
    }

    .cards[b-snhcss0j8a] {
        margin-bottom: 2rem;
    }

    .card[b-snhcss0j8a] {
        flex: 0 0 16rem;
    }
}
/* /Components/Footer.razor.rz.scp.css */
.footer[b-0f04ngk5mu] {
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
    flex-wrap: wrap;
    background-color: black;
    flex-direction: column;
    padding: 2rem 2rem;
    padding-bottom: 2rem;
    padding-top: 1rem;
}

.logo[b-0f04ngk5mu] {
    width: 20%;
    min-width: 12rem;;
    height: auto;
    
}

.links[b-0f04ngk5mu] {
    width: 90%;
    display:flex;
    flex-direction:column;
    gap: 1rem;
    justify-content: space-between;
    color:white;
    
    min-width: 250px;
    max-width: 45%;
}

.cp[b-0f04ngk5mu]{
    opacity: .8;
}


@media (max-width: 768px) {
    .footer[b-0f04ngk5mu] {
        
        padding: 2rem 2rem;
       
    }

    .logo[b-0f04ngk5mu] {
        width: 10rem;
        min-width: unset;
        align-self: start;
    
      

    }

    .links[b-0f04ngk5mu] {
       
        max-width: 100%;
    
        text-align: left;
    }
}
/* /Components/Hero.razor.rz.scp.css */
.hero[b-q9641ngmly] {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: clamp(6rem, 12vw, 16rem) clamp(1.5rem, 6vw, 12rem);
    overflow: hidden;
}

    .hero[b-q9641ngmly]::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url('/images/hero_background.png');
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 0;
    }

    .hero .banner[b-q9641ngmly] {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: clamp(2rem, 6vw, 10rem);
    }

    .hero video[b-q9641ngmly] {
        object-fit: cover;
        width: 60%;
        max-width: 35rem;
        min-width: 24rem;
        box-shadow: 0 4vw 10vw rgba(0,0,0,1), 0 0 7vw rgba(0,0,0,1), 0 0 12vw rgba(0,0,0,1);
    }

    .hero .text[b-q9641ngmly] {
        display: flex;
        flex-direction: column;
        color: white;
        width: calc(50vw - 10rem);
    }

    .hero .title[b-q9641ngmly] {
        letter-spacing: -0.05em;
        line-height: 1.1;
        font-size: clamp(2.5rem, 6vw, 5rem);
        margin-bottom: 1rem;
    }

    .hero .sub[b-q9641ngmly] {
        font-size: clamp(1rem, 1.6vw, 1.5rem);
        opacity: 0.9;
        margin-bottom: 2rem;
    }

    .hero button[b-q9641ngmly] {
        text-wrap: nowrap;
        padding: 8px 16px;
        font-size: clamp(1rem, 1.5vw, 1.5rem);
        border-radius: 999px;
        border: 1px solid white;
        color: white;
        background: none;
        width: fit-content;
    }

button:hover[b-q9641ngmly] {
    border-radius: 999px;
    border: 1px solid white;
    color: black;
    background-color: white;
    width: fit-content;
    cursor: pointer;
}

@media (max-width: 768px) {
    
    
    .hero[b-q9641ngmly]::before {
        inset: auto;
        width: 100vh;
        height: 100vw;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(90deg);
        transform-origin: center;
    }

    .hero .banner[b-q9641ngmly] {
        padding-top: 3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }

    .hero .text[b-q9641ngmly] {
        width: 100%;
    }

    .hero video[b-q9641ngmly] {
        
        width: 100%;
        min-width: 0;
        max-width: 32rem;
        align-self: center;
        margin-bottom: -4rem;
    }

    .hero .title[b-q9641ngmly] {
        font-size: 2.25rem;
    }

    .hero .sub[b-q9641ngmly] {
        font-size: 1rem;
    }

    .hero button[b-q9641ngmly] {
        position: relative;
        margin-bottom: 0rem;
        align-self: flex-start;
    }
}
/* /Components/Landing2 Parts/Accessible.razor.rz.scp.css */
.accessible-wrapper[b-6okycb8rzd]{
    padding: 4rem 0;
    /*border: 1px dotted white;*/
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
    gap: 1.5rem;
}

.header[b-6okycb8rzd]{
    font-weight: 700;
    font-size: 24px;
    margin-bottom: -1rem;
}

.desc[b-6okycb8rzd]{
    font-weight: 600;
    font-size: 14px;
}

.img-wrapper[b-6okycb8rzd]{
    position: absolute;
    height: 42rem;
    aspect-ratio: 1/1;
    left: -30%;
    top: -7rem;
    
}
/* /Components/Landing2 Parts/Conversation.razor.rz.scp.css */
.conversation-wrapper[b-9ha5v1a9sz] {
    /*border: 1px dotted white;*/
    padding: 4rem 2rem;
    display: flex;
    position: relative;
    flex-direction: column;
}

.text[b-9ha5v1a9sz]{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    align-items: center;
}

.header[b-9ha5v1a9sz]{
    font-size: 32px;
    font-weight: 700;
    line-height: 0;
}

.desc[b-9ha5v1a9sz]{
    font-weight: 600;
    font-size: 18px;
}

.row[b-9ha5v1a9sz]{
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    width: 65z%;
}

.section[b-9ha5v1a9sz]{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.image-wrapper img[b-9ha5v1a9sz]{
    width: 5rem;
    height: 5rem;
}

.section .subtext[b-9ha5v1a9sz]{
    width: 50%;
}

.graphic-wrapper[b-9ha5v1a9sz]{
    position: absolute;
    width: 38rem;
    right: -22%;
    top: -10%;
}

.video[b-9ha5v1a9sz]{
    height: 45rem;
}

.foreground-video[b-9ha5v1a9sz]{
    width: 100%;
    height: 100%;
}
/* /Components/Landing2 Parts/Flow.razor.rz.scp.css */
.flow-wrapper[b-ksnk5bmaqq] {
    /*border: 1px dotted white;*/
    padding: 6rem 4rem;
    position: relative;
    display: flex;
    gap: 1rem;
   
}

    .flow-wrapper[b-ksnk5bmaqq]::before {
        content: "";
        position: absolute;
        inset: 2rem;
        pointer-events: none;
        background: linear-gradient(120deg, #6749B2 0%, #C3A7E4 100%);
        filter: brightness(40%) saturate(200%) hue-rotate(20deg);
        
    }

    .flow-wrapper[b-ksnk5bmaqq]::after {
        content: "";
        position: absolute;
        inset: 2rem;
        pointer-events: none;
        opacity: 0.45;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        z-index: 0;
        filter: brightness(70%) contrast(250%);
    }

.text[b-ksnk5bmaqq] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
    text-align: right;
    align-items: end;
}

.subheader-wrapper[b-ksnk5bmaqq] {
    display: flex;
    margin-bottom: -3rem;
    align-items: center;
    gap: .5rem;
    opacity: .9;
    /*border: 1px dotted red;*/
}

.subheader[b-ksnk5bmaqq] {
    font-weight: 700;
    font-size: 20px;
}

.header[b-ksnk5bmaqq] {
    font-size: 52px;
    font-weight: 700;
}

.desc[b-ksnk5bmaqq] {
    width: 65%;
    font-weight: 600;
    font-size: 18px;
}

.image-wrapper[b-ksnk5bmaqq] {
    width: 100%;
    position: relative;
    z-index: 1;
    /*border: 1px dotted white;*/
    display: flex;
    justify-content: end;
}

.crop[b-ksnk5bmaqq] {
    overflow: hidden;
    /*border: 1px dotted blue;*/
    position: relative;
    max-height: 28rem;
    min-height: 16rem;
    display: flex;
    align-items: center;
    aspect-ratio: 1.9/1;
}

.image[b-ksnk5bmaqq] {
    object-fit: cover;
    width: 100%;
    /*border: 1px dotted red;*/
}

.arrow-wrapper[b-ksnk5bmaqq] {
    max-height: 16rem;
    width: 18rem;
    min-width: 10rem;
    z-index: 2;
    position: relative;
    /*border: 1px dotted green;*/
}

.arrow[b-ksnk5bmaqq] {
    position: relative;
    /*border: 1px dotted white;*/
    top: 10%;
    width: 150%;
    transform: rotate(119deg);
    z-index: 2;
}

.geometry-wrapper[b-ksnk5bmaqq] {
    right: 0;
    position: absolute;
    width: 40%;
    z-index: 0;
    bottom: -35%;
}

.subheader-img[b-ksnk5bmaqq] {
    width: 3rem;
   
}
/* /Components/Landing2 Parts/Footer2.razor.rz.scp.css */
.footer-wrapper[b-oybdlm6zhy] {
    padding: 4rem 2rem;
    /*border: 1px dotted white;*/
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-bottom: 1.5rem;
    overflow: hidden;
}

.row1[b-oybdlm6zhy]{
    display: flex;
    justify-content: space-between;

    margin-bottom: 3rem;
}

.half1[b-oybdlm6zhy]{
    display: flex;
    justify-self: start;
    gap: 4rem;

    /*border: 1px dotted red;*/
}

.products[b-oybdlm6zhy], .resources[b-oybdlm6zhy], .company[b-oybdlm6zhy]{
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.title[b-oybdlm6zhy]{
    font-weight: 600;
    margin-bottom: .5rem;
}

.item[b-oybdlm6zhy]{
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.half2[b-oybdlm6zhy]{
    justify-self: end;
}

.subtext[b-oybdlm6zhy]{
    font-weight: 600;
}

.headquartered[b-oybdlm6zhy] {
    font-weight: 600;
    width: 12rem;
    font-size: 14px;
}

.row3[b-oybdlm6zhy] {
    display: flex;
    justify-content: space-between;
}

.terms[b-oybdlm6zhy], span[b-oybdlm6zhy] {
    color: #d5d5d5;
    font-size: 14px;
}

.terms[b-oybdlm6zhy]{
    display: flex;
    gap: .75rem;
    justify-self: start;
}

.links[b-oybdlm6zhy] {
    justify-self: flex-end;
    display: flex;
    gap: 2rem;
}

    .links div[b-oybdlm6zhy] {
        width: 24px;
        height: 24px;
        /*border: 1px dotted white;*/
        cursor: pointer;
        overflow: hidden;
    }

    .links img[b-oybdlm6zhy] {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.graphic-wrapper[b-oybdlm6zhy] {
    position: absolute;
    width: 30rem;
    right: -10%;
    transform: rotate(45deg);
    pointer-events: none;
}

    .img-wrapper[b-oybdlm6zhy]{
        display: flex;
        justify-content: end;
    }

    .img-wrapper img[b-oybdlm6zhy]{
        width: 18rem;
        margin-bottom: .5rem;

        /*border: 1px dotted red;*/
    }

    .x[b-oybdlm6zhy]{
      
        
    }
/* /Components/Landing2 Parts/Header.razor.rz.scp.css */
.header-wrapper[b-rp5na2j41a] {
    display: flex;
    justify-content: space-between;
    padding: 10rem 2rem;
    /*border: 1px dotted white;*/
    position: relative;
    gap: 4rem;
    isolation: isolate;
    padding-bottom: 0rem;
}

.text[b-rp5na2j41a]{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    z-index: 1;
}

.header[b-rp5na2j41a]{
    font-weight: 700;
    font-size: 40px;
}

.desc[b-rp5na2j41a]{
    font-weight: 600;
    width: 50%;
}

.foreground-video[b-rp5na2j41a] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: flex;
    mix-blend-mode: lighten;
    filter: contrast(1.4) brightness(.8);
    position: relative;
    
}

.video[b-rp5na2j41a] {
    mix-blend-mode: lighten;
    /*border: 1px dotted red;*/
    position: relative;
    display: block;
    z-index: 2;
    width: 120%;
    transform: translateY(-10rem);
    filter: brightness(1.1);
    max-height: 38rem;
    
}

.bkg-video-wrapper[b-rp5na2j41a] {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    overflow: hidden;
    z-index: 0;
}

    .bkg-video-wrapper[b-rp5na2j41a]::before {
        inset: 0;
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        
        background: transparent;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    .bkg-video-wrapper[b-rp5na2j41a]::after {
        inset: 0;
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        background: linear-gradient( to bottom, black 0%, transparent 80% );
    }



.bkg-video[b-rp5na2j41a] {
    width: 100%;
    height: 100%;
    object-fit: cover;

    pointer-events: none;

    
}

.content[b-rp5na2j41a] {
    position: relative;
    z-index: 1;
}

/* /Components/Landing2 Parts/Innovate.razor.rz.scp.css */
.innovate-wrapper[b-e0gr8as9li] {
    display: flex;
    /*border: 1px dotted white;*/
    text-align: center;
    flex-direction: column;
    position: relative;
    align-items: center;
    gap: 1rem;
    padding: 4rem 2rem;
}

.header[b-e0gr8as9li]{
    font-size: 42px;
    font-weight: 700;
}

.subtext[b-e0gr8as9li]{
    font-size: 18px;
    font-weight: 600;
}

.graphic-wrapper[b-e0gr8as9li]{
    position: absolute;
    left: -17%;
    top: 15rem;
    width: 35rem;
}

.graphic-wrapper2[b-e0gr8as9li] {
    position: absolute;
    right: -25%;
    top: 7rem;
    width: 40rem;
    pointer-events: none;
    transform: rotate(35deg);
}


.cards[b-e0gr8as9li]{
    width: 60rem;
    height: 35rem;
    /*border: 1px dotted white;*/

    margin-top: 5rem;
    margin-bottom: 3rem;
}

.cards[b-e0gr8as9li]{

}

.cards img[b-e0gr8as9li]{
    object-fit: contain;
    width: 100%;
    height: 100%;
}
/* /Components/Landing2 Parts/Loop.razor.rz.scp.css */
@property --loop-speed {
    syntax: "<time>";
    inherits: true;
    initial-value: 20s;
}

.loop-wrapper[b-c62msfpxj2] {
    width: 100%;
    overflow: hidden;
    padding: .5rem 0;
    background-color: #1d1d1d;
    position: relative;
}

    .loop-wrapper[b-c62msfpxj2]::before {
        inset: 0;
        opacity: .9;
        position: absolute;
        content: "";
        z-index: 2;
        background: linear-gradient(90deg, black 0%, transparent 15%, transparent 50%, transparent 85%, black 100%)
    }

.loop-track[b-c62msfpxj2] {
    position: relative;
    z-index: 1;
    display: flex;
    width: max-content;
    animation: loop-right-b-c62msfpxj2 var(--loop-speed) linear infinite;
}

.slowed[b-c62msfpxj2]{

}

.img-wrapper[b-c62msfpxj2] {
    flex-shrink: 0;
    margin-right: 2rem;
}

    .img-wrapper img[b-c62msfpxj2] {
        display: block;
        width: 120px;
        height: 40px;
        object-fit: contain;
    }

@keyframes loop-right-b-c62msfpxj2 {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}
/* /Components/Landing2 Parts/NewNav.razor.rz.scp.css */
.nav-wrapper[b-gx1bk0zxu8]{
    position: fixed;
  
    z-index: 99;

    height: 4rem;
    /*border: 1px solid red;*/
    background-color: black;

    display: flex;
    justify-content: space-between;
    align-content: center;
    width: 100%;
    padding: 0 2rem;
}

.logo-wrapper[b-gx1bk0zxu8] {
    width: 12rem;
    height: 3rem;
    display: flex;
    align-items: center;
}

.logo-wrapper img[b-gx1bk0zxu8] {
    width: 100%;
    transform: translateY(5px);
}

.choices[b-gx1bk0zxu8]{
    display: flex;
    align-items: center;
    height: 100%;
    gap: 2rem;
}

.choice[b-gx1bk0zxu8] {
    position: relative;
    /*border: 1px dotted red;*/
    cursor: pointer;
}

.submenu[b-gx1bk0zxu8] {
    width: 12rem;
    position: absolute;
    overflow: hidden;
    /*border: 1px dotted white;*/
    transition: max-height .3s ease;
    background-color: white;
    
}

.option[b-gx1bk0zxu8] {
    display: inline;
    color: black;
}

.off[b-gx1bk0zxu8]{
    max-height: 0;
}

.on[b-gx1bk0zxu8]{
    max-height: 10rem;
}
/* /Components/Landing2 Parts/Paradox.razor.rz.scp.css */
.paradox-wrapper[b-ewe3fv1eot] {
    /*border: 1px dotted white;*/
    padding: 4rem 2rem;
    position: relative;
    display: flex;
    gap: 0rem;
}

.text[b-ewe3fv1eot]{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 50%;
}

.header[b-ewe3fv1eot]{
    font-weight: 700;
    font-size: 55px;
}

.desc[b-ewe3fv1eot]{
    font-weight: 600;
    font-size: 18px;
    width: 65%;

    opacity: .9;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.img-wrapper[b-ewe3fv1eot]{
    max-height: 35rem;
}

.foreground-video[b-ewe3fv1eot]{
    width: 100%;
    height: 100%;
}
/* /Components/Landing2 Parts/Questions.razor.rz.scp.css */
.questions-wrapper[b-h394l6v1of] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    gap: 2rem;
    /*border: 1px dotted white;*/
    padding-bottom: 4rem;
    align-items: center;
    padding-top: 0rem;
}

.img-wrapper[b-h394l6v1of]{
    /*border: 1px dotted white;*/
    height: 8rem;
    width: 9rem;
    position: relative;
    top: 1.5rem;
}

.header[b-h394l6v1of]{
    font-size: 38px;
    font-weight: 700;
    line-height: .7;
}

.desc[b-h394l6v1of]{
    font-weight: 600;
    font-size: 18px;
    width: 65%;
 }
/* /Components/Landing2 Parts/Ray.razor.rz.scp.css */
.ray-wrapper[b-8vle8878cz] {
    /*border: 1px dotted white;*/
    padding: 6rem 4rem;
    position: relative;
    display: flex;
    gap: 1rem;
    
    position: relative;
    
}

    .ray-wrapper[b-8vle8878cz]::before {
        content: "";
        position: absolute;
        inset: 2rem;
        pointer-events: none;
        background: linear-gradient(120deg, #6749B2 0%, #C3A7E4 100%);
        filter: brightness(40%) saturate(250%);
    }

    .ray-wrapper[b-8vle8878cz]::after {
        content: "";
        position: absolute;
        inset: 2rem;
        pointer-events: none;
        opacity: 0.45;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='2' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        z-index: 0;
        filter: brightness(70%) contrast(250%);
    }

.text[b-8vle8878cz]{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.subheader-wrapper[b-8vle8878cz]{
    display: flex;
    
    margin-bottom: -3.5rem;
    align-items: center;
    gap: .5rem;
    opacity: .9;

}

.subheader[b-8vle8878cz]{
    font-weight: 700;
    font-size: 20px;
}

.header[b-8vle8878cz]{
    font-size: 52px;
    font-weight: 700;
}

.desc[b-8vle8878cz] {
    width: 65%;
    font-weight: 600;
    font-size: 18px;
    
}

.image-wrapper[b-8vle8878cz] {
    width: 100%;
    position: relative;
    z-index: 1;
    /*border: 1px dotted white;*/
    display: flex;
    justify-content: end;
    
}

.crop[b-8vle8878cz] {
    overflow: hidden;
    /*border: 1px dotted blue;*/
    position: relative;
    max-height: 28rem;
    min-height: 16rem;
    display: flex;
    align-items: center;
    aspect-ratio: 1.9/1;

    
}

.image[b-8vle8878cz] {
    object-fit: cover;
    width: 100%;
    
    
    /*border: 1px dotted red;*/

}

.arrow-wrapper[b-8vle8878cz] {
    max-height: 16rem;
    width: 18rem;
    min-width: 10rem;
    z-index: 2;
    position: relative;
    /*border: 1px dotted green;*/
    
    
}

.arrow[b-8vle8878cz]{
    position: relative;
    /*border: 1px dotted white;*/
    top: 10%;
    width: 150%;
    transform: rotate(299deg);
    z-index: 2;
}

.geometry-wrapper[b-8vle8878cz] {
    right: 0;
    position: absolute;
    width: 40%;
    pointer-events: none;
    z-index: 0;
    bottom: -35%;
}

.subheader-img[b-8vle8878cz]{
    width: 4rem;
    padding-bottom: .5rem;
}

/* /Components/Landing2 Parts/Watches.razor.rz.scp.css */
.watches-wrapper[b-uj9r0jvxe8]{
    /*border: 1px dotted white;*/
    padding: 4rem 2rem;
    display: flex;
    position: relative;
}

.text[b-uj9r0jvxe8]{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 60%;
}

.title[b-uj9r0jvxe8]{
    font-weight: 700;
    font-size: 48px;
}

.desc[b-uj9r0jvxe8]{
    font-weight: 600;
    opacity: .9;
    width: 50%;z
}

.graphic[b-uj9r0jvxe8] {
    position: absolute;
    width: 36rem;
    pointer-events: none;
    top: -70%;
    left: -15%;
}

.img-wrapper[b-uj9r0jvxe8]{
    height: 25rem;
}

.filler[b-uj9r0jvxe8]{
    height: 100%;
    width: 100%;
}
/* /Components/LeadCaptureModal.razor.rz.scp.css */
.modal-backdrop[b-rigu2m6py0] {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-shell[b-rigu2m6py0] {
    position: relative;
    width: min(100%, 34rem);
    border-radius: 24px;
    background: rgba(14, 14, 14, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.modal-content[b-rigu2m6py0] {
    display: flex;
    flex-direction: column;
    gap: 0rem;
    padding: 4rem;
}

h2[b-rigu2m6py0] {
    margin: 0;
    color: white;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: .4rem;
}

.subtext[b-rigu2m6py0] {
    margin: 0 0 0.5rem 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    /*line-height: 1.5;*/
    margin-bottom: 2rem;
}

.field-group[b-rigu2m6py0] {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

label[b-rigu2m6py0] {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    line-height:1;
}

input[b-rigu2m6py0] {
    width: 100%;
    box-sizing: border-box;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

    input:focus[b-rigu2m6py0] {
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.07);
    }

.actions[b-rigu2m6py0] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    width: 100%;
}

    .actions button[b-rigu2m6py0] {
        flex: 1;
        width: 100%;
        padding: 0.4rem 1rem;
        font-size: 1rem;
        border-radius: 999px;
        border: 1px solid white;
        cursor: pointer;
      
    }

    button.primary[b-rigu2m6py0] {
        color: black;
        background: white;
    }

        button.primary:hover[b-rigu2m6py0] {
            opacity: .9;
        }

    button.secondary[b-rigu2m6py0] {
        color: white;
        background: transparent;
    }

        button.secondary:hover[b-rigu2m6py0] {
            color: black;
            background: white;
        }

    button:disabled[b-rigu2m6py0] {
        opacity: 0.6;
        cursor: not-allowed;
    }

.close-button[b-rigu2m6py0] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    display: grid;
    place-items: center;
    border:none;
    background: transparent;
    color: white;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    opacity:.7;
}

    .close-button:hover[b-rigu2m6py0]{
        opacity:1;
    }

.status-message[b-rigu2m6py0] {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
    border: 1px solid transparent;
}

.validation-message[b-rigu2m6py0],
.validation-errors[b-rigu2m6py0],
[b-rigu2m6py0] .validation-message {
    color: #ff9a9a;
    font-size: 0.9rem;
    border: 1px dotted red;
}

[b-rigu2m6py0] .validation-summary-errors {
    color: #ff9a9a;
}

@media (max-width: 640px) {
    .modal-content[b-rigu2m6py0] {
        padding: 1.5rem;
    }

    h2[b-rigu2m6py0] {
        font-size: 1.6rem;
    }

    .actions[b-rigu2m6py0] {
        flex-direction: column-reverse;
        align-items: stretch;
    }

        .actions button[b-rigu2m6py0] {
            width: 100%;
        }
}


[b-rigu2m6py0] .form-input {
    border-radius: 6px;
    height: 2rem;
    margin-bottom: 1rem;
    background-color: #1C1C1C;
    border: 1px solid #4B4B4B;
    color: white;
}
/* /Components/Misc/Graphic.razor.rz.scp.css */
.graphic-wrapper[b-vbg8cig7j4] {
    /*border: 1px dotted #222222;*/
    object-fit: cover;
    pointer-events: none;
}

img[b-vbg8cig7j4]{
    object-fit: cover;
    width: 100%;
    height: 100%;

    pointer-events: none;
}
/* /Components/Nav.razor.rz.scp.css */
.nav[b-8pqvza011o] {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 2rem);
    z-index: 2000;
    padding: 1.25rem 2.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    background-color: rgba(10, 10, 10, 0.1);
    backdrop-filter: blur(5px);
    box-sizing: border-box;
    overflow-x: clip;
}

    .nav.scrolled[b-8pqvza011o] {
        opacity: 0;
    }

    .nav:hover[b-8pqvza011o] {
        opacity: 1 !important;
    }

    .nav.menu-open[b-8pqvza011o] {
        opacity: 1 !important;
        background-color: rgba(10, 10, 10, 0.96) !important;
        backdrop-filter: blur(10px);
    }

        .nav.menu-open.scrolled[b-8pqvza011o] {
            opacity: 1 !important;
        }

.logo[b-8pqvza011o] {
    width: 160px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.5));
    cursor: pointer;
    position: relative;
    z-index: 2002;
    flex-shrink: 0;
}

.desktop-options[b-8pqvza011o] {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding-bottom: 16px;
    cursor: pointer;
}

    .desktop-options span[b-8pqvza011o],
    .mobile-menu span[b-8pqvza011o] {
        color: white;
        font-size: 20px;
        text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.9);
        cursor: pointer;
    }

button[b-8pqvza011o] {
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 999px;
    border: 1px solid white;
    color: white;
    background-color: black;
    width: fit-content;
    align-self: center;
}

    button:hover[b-8pqvza011o] {
        border: 1px solid white;
        color: black;
        background-color: white;
        cursor: pointer;
    }

.hamburger[b-8pqvza011o] {
    display: none;
    background: transparent;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 2002;
    flex-shrink: 0;
}

    .hamburger:hover[b-8pqvza011o] {
        background: transparent;
        border: none;
    }

    .hamburger span[b-8pqvza011o] {
        display: block;
        position: absolute;
        left: 50%;
        width: 28px;
        height: 2px;
        background: white;
        border-radius: 999px;
        text-shadow: none;
        transform: translateX(-50%);
        transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
    }

        .hamburger span:nth-child(1)[b-8pqvza011o] {
            top: 10px;
        }

        .hamburger span:nth-child(2)[b-8pqvza011o] {
            top: 18px;
        }

        .hamburger span:nth-child(3)[b-8pqvza011o] {
            top: 26px;
        }

.nav.menu-open .hamburger span:nth-child(1)[b-8pqvza011o] {
    top: 18px;
    transform: translateX(-50%) rotate(45deg);
}

.nav.menu-open .hamburger span:nth-child(2)[b-8pqvza011o] {
    opacity: 0;
}

.nav.menu-open .hamburger span:nth-child(3)[b-8pqvza011o] {
    top: 18px;
    transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu[b-8pqvza011o] {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 2rem);
    min-height: 100vh;
    z-index: 1999;
    background-color: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 7rem 2.25rem 2rem;
    box-sizing: border-box;
    overflow-x: clip;
}

    .mobile-menu button[b-8pqvza011o] {
        width: 100%;
        max-width: 220px;
    }

img[b-8pqvza011o] {
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav[b-8pqvza011o] {
        padding: 1.25rem 2rem;
        width: calc(100% + 1.5rem);
        opacity: 1 !important;
        background-color: rgba(10, 10, 10, 0.1) !important;
        backdrop-filter: blur(10px);
    }

        .nav.scrolled[b-8pqvza011o] {
            opacity: 1 !important;
            background-color: rgba(10, 10, 10, 0.96) !important;
            backdrop-filter: blur(10px);
        }

        .nav:hover[b-8pqvza011o] {
            opacity: 1 !important;
        }

    .logo[b-8pqvza011o] {
        width: 120px;
    }

    .desktop-options[b-8pqvza011o] {
        display: none;
    }

    .hamburger[b-8pqvza011o] {
        display: block;
    }

    .mobile-menu[b-8pqvza011o] {
        width: calc(100% + 1.5rem);
        padding: 7rem 2rem 2rem;
    }

        .mobile-menu span[b-8pqvza011o] {
            font-size: 18px;
        }
}
/* /Components/Pages/Landing.razor.rz.scp.css */
/* /Components/Pages/Leadership.razor.rz.scp.css */
.leadership[b-2whnge6oz9] {
    /*border: 1px dotted red;*/
    color: white;
    display: flex;
    padding: 4rem;
}

.grid[b-2whnge6oz9] {
    padding-left: 2rem;
    /*border: 1px green dotted;*/
    width: 60%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.title[b-2whnge6oz9] {
    font-weight: 500;
    font-size: 48px;
    width: 40%;
    
    /*border: 1px dashed blue;*/
}

.leader[b-2whnge6oz9]{
    margin-bottom: 2rem;
    display: flex;
}

.profile[b-2whnge6oz9]{
    min-width: 4rem;
    height: 4rem;
    background-color: white;
    border-radius: 999px;
    margin-right: 1rem;
}

.writing[b-2whnge6oz9]{
    position: relative;
    top: .5rem;
}

.position[b-2whnge6oz9]{
    opacity: .7;
}

.name[b-2whnge6oz9]{
    opacity: .9;
    margin-bottom: .5rem;
    font-size: 18px;
}

/* Breakpoint */
@media (max-width: 768px) {
    .grid[b-2whnge6oz9] {
        grid-template-columns: 1fr;
        width: 100%;
        padding-left: 0rem;
    }

    .leadership[b-2whnge6oz9] {
        flex-direction: column;
       
    }

    .title[b-2whnge6oz9]{
        font-size: 32px;
        width: 100%;
        margin-bottom: 2rem;
    }
}
/* /Components/Pages/NewLanding.razor.rz.scp.css */
/* /Components/Problem.razor.rz.scp.css */
.problem[b-hj3wzk8hxe] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem clamp(1.5rem, 6vw, 12rem);
    background-color: black;
}

.header[b-hj3wzk8hxe] {
    font-size: clamp(2rem, 3.2vw, 2.25rem);
    max-width: 50%;
    color: white;
    margin-bottom: 2rem;
}

.video-wrapper[b-hj3wzk8hxe] {
    align-self: center;
    width: min(85%, 56rem);
    overflow: hidden;
    margin-bottom: 2rem;
}

    .video-wrapper video[b-hj3wzk8hxe] {
        display: block;
        width: 105%;
        height: auto;
        object-fit: cover;
    }

span[b-hj3wzk8hxe] {
    max-width: 90%;
    color: white;
}

.bottom[b-hj3wzk8hxe] {
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    width: 100%;
}

    .bottom .right[b-hj3wzk8hxe] {
        align-self: flex-end;
    }


@media (max-width: 768px) {
    .problem[b-hj3wzk8hxe] {
        padding: 3rem 1.5rem;
        align-items: center;
    }

    .header[b-hj3wzk8hxe] {
        max-width: 100%;
        font-size: 2rem;
        text-align: left;
        align-self: flex-start;
    }

    .video-wrapper[b-hj3wzk8hxe] {
        width: 100%;
    }

        .video-wrapper video[b-hj3wzk8hxe] {
            width: 100%;
        }

    .bottom[b-hj3wzk8hxe] {
        width: 100% ;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

        .bottom span[b-hj3wzk8hxe] {
            max-width: 100%;
        }
}
/* /Components/Solution.razor.rz.scp.css */
.solution[b-nj9w375fuh] {
    background-color: black;
    padding: 2rem clamp(1.5rem, 6vw, 12rem);
    color: white;
    text-align: right;
    display: flex;
    flex-direction: column;
}

.head[b-nj9w375fuh] {
    font-size: 64px;
}

.sub[b-nj9w375fuh] {
    font-size: 20px;
    width: 60%;
    margin-left: auto;
    margin-bottom: 1.5rem;
}

.video[b-nj9w375fuh] {
    position: relative;
    width: min(100%, 1400px);
    aspect-ratio: 16 / 9;
    align-self: center;
    overflow: hidden;
    background: black;
}

    .video iframe[b-nj9w375fuh] {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        display: block;
        border: 0;
        z-index: 1;
       
    }

    .video .poster[b-nj9w375fuh] {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 2;
        opacity: 1;
        transition: opacity 0.6s ease;
    }

    .video.loaded .poster[b-nj9w375fuh] {
        opacity: 0;
        pointer-events: none;
    }

button[b-nj9w375fuh] {
    padding: 8px 16px;
    font-size: 24px;
    border-radius: 999px;
    border: 1px solid white;
    color: white;
    background-color: black;
    width: fit-content;
    align-self: end;
    margin-bottom: 4rem;
}

    button:hover[b-nj9w375fuh] {
        border: 1px solid white;
        color: black;
        background-color: white;
        cursor: pointer;
    }

@media (max-width: 768px) {
    .solution[b-nj9w375fuh] {
        padding: 2rem 1.5rem;
        text-align: left;
        align-items: flex-start;
    }

    .sub[b-nj9w375fuh] {
        width: 100%;
        margin-left: 0;
    }

    button[b-nj9w375fuh] {
        align-self: flex-start;
    }

    .head[b-nj9w375fuh] {
        font-size: 2.5rem;
    }

    .sub[b-nj9w375fuh] {
        font-size: 1rem;
    }

    button[b-nj9w375fuh] {
        font-size: 20px;
    }
}
