/* /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/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/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/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;
        pointer-events: none;
    }

    .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;
    }
}
