/* /Components/Common/BrandIcon.razor.rz.scp.css */
/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width: 1631px) {

    .brand-logo[b-v6n60vzwcg] {
        position: fixed;
        top: 0;
        left: 0;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: start;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
        z-index: 20;
    }

    .outer-shell[b-v6n60vzwcg] {
        display: flex;
        align-items: center;
        justify-content: end;
        border-radius: var(--border-radius);
        background: var(--white);
        height: 3.5rem;
        width: 4.5rem;
        padding-right: 0.25rem;
    }

    .inner-shell[b-v6n60vzwcg] {
        border-radius: var(--border-radius);
        background: var(--black);
        height: 3rem;
        width: 2rem;
    }

    .brand-logo:hover .inner-shell[b-v6n60vzwcg] {
        transform: translateX(-2rem);
        transition: transform 0.25s ease;
    }

    .brand-text[b-v6n60vzwcg] {
        color: var(--white);
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.05em;
    }
}

/**************************************/
/*                                    */
/*              Laptop                */
/*                                    */
/**************************************/

@media screen and (min-width: 1251px) and (max-width: 1630px) {

    .brand-logo[b-v6n60vzwcg] {
        position: fixed;
        top: 0;
        left: 0;
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        align-items: start;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
        z-index: 20;
    }

    .outer-shell[b-v6n60vzwcg] {
        display: flex;
        align-items: center;
        justify-content: end;
        border-radius: var(--border-radius);
        background: var(--white);
        height: 3.5rem;
        width: 4.5rem;
        padding-right: 0.25rem;
    }

    .inner-shell[b-v6n60vzwcg] {
        border-radius: var(--border-radius);
        background: var(--black);
        height: 3rem;
        width: 2rem;
    }

    .brand-logo:hover .inner-shell[b-v6n60vzwcg] {
        transform: translateX(-2rem);
        transition: transform 0.25s ease;
    }

    .brand-text[b-v6n60vzwcg] {
        color: var(--white);
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.05em;
    }
}

/**************************************/
/*                                    */
/*          Mobile & Tablet           */
/*                                    */
/**************************************/

@media screen and (max-width: 1250px) {

    .brand-logo[b-v6n60vzwcg] {
        position: fixed;
        top: 0;
        left: 0;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: start;
        text-decoration: none;
        -webkit-tap-highlight-color: transparent;
        z-index: 20;
    }

    .outer-shell[b-v6n60vzwcg] {
        display: flex;
        align-items: center;
        justify-content: end;
        border-radius: var(--border-radius);
        background: var(--white);
        height: 3.5rem;
        width: 4.5rem;
        padding-right: 0.25rem;
    }

    .inner-shell[b-v6n60vzwcg] {
        border-radius: var(--border-radius);
        background: var(--black);
        height: 3rem;
        width: 2rem;
    }

    .brand-logo:hover .inner-shell[b-v6n60vzwcg] {
        transform: translateX(-2rem);
        transition: transform 0.25s ease;
    }

    .brand-text[b-v6n60vzwcg] {
        color: var(--white);
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.05em;
    }

}
/* /Components/Common/Footer.razor.rz.scp.css */
/**************************************/
/*                                    */
/*         Footer (Base/Mobile)       */
/*                                    */
/**************************************/

.footer[b-zbvhqnxa0b] {
    position: relative;
    width: 90%;
    margin: 40px auto 20px;
    padding: 40px 0 20px;
    display: flex;
    flex-direction: column;
    color: var(--white);
    font-size: 0.9rem;
}

.footer[b-zbvhqnxa0b]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background: var(--gray);
    opacity: 0.4;
    pointer-events: none;
}

.footer-grid[b-zbvhqnxa0b] {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
}

.brand-tagline[b-zbvhqnxa0b] {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 280px;
    margin: 0;
}

.footer-links[b-zbvhqnxa0b] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-column[b-zbvhqnxa0b] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column h4[b-zbvhqnxa0b] {
    color: var(--white);
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.footer-column a[b-zbvhqnxa0b] {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover[b-zbvhqnxa0b] {
    color: var(--white);
}

.footer-bottom[b-zbvhqnxa0b] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    gap: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
}

/**************************************/
/*                                    */
/*          Desktop & Laptop          */
/*                                    */
/**************************************/

@media screen and (min-width: 1251px) {
    .footer[b-zbvhqnxa0b] {
        max-width: 1200px;
        margin: 80px auto 40px;
        padding: 60px 0 20px;
        width: 100%;
    }

    .footer-grid[b-zbvhqnxa0b] {
        flex-direction: row;
        justify-content: space-between;
        gap: 4rem;
    }

    .footer-brand[b-zbvhqnxa0b] {
        flex: 1;
        max-width: 300px;
    }

    .footer-links[b-zbvhqnxa0b] {
        flex: 2;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .footer-bottom[b-zbvhqnxa0b] {
        flex-direction: row;
        justify-content: space-between;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
main[b-f4ouf1ozc6] {
    background: var(--black);
    min-height: 100vh;
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ========== Base (mobile-first) ========== */

h1:focus[b-z86j0dcalf] {
    outline: none;
}

/**************** Layout ****************/

.home-section[b-z86j0dcalf] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 2rem 1.5rem;
    box-sizing: border-box;
    gap: 2rem;
}

.left-side[b-z86j0dcalf] {
    order: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    text-align: left;
    margin-top: 7rem;
}

.right-side[b-z86j0dcalf] {
    order: 2;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.canvas-container[b-z86j0dcalf] {
    position: relative; /* Lets it stack below the text on mobile */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 45vh; /* Takes up the bottom half of the phone screen */
    min-height: 400px;
    z-index: 10;
    pointer-events: none;
}

.primary-image[b-z86j0dcalf] {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    /*max-width: 500px;*/
}

.primary-image img[b-z86j0dcalf] {
    border-radius: var(--border-radius);
    width: 100%;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
    object-fit: cover;
}

.primary-image img.fade-out[b-z86j0dcalf] {
    opacity: 0;
}

/**************** Typography ****************/

.banner-title[b-z86j0dcalf] {
    font-size: 2rem;
    font-weight: 700;
    white-space: nowrap;
    color: var(--white);
}

.banner-description[b-z86j0dcalf] {
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.banner-subtitle[b-z86j0dcalf] {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
    text-align: left;
}

/**************** Buttons ****************/

.button-group[b-z86j0dcalf] {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 1rem;
    gap: 0.75rem;
}

.banner-button-1[b-z86j0dcalf],
.next-button[b-z86j0dcalf] {
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--sleek-border-radius);
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    color: var(--white);
    background: transparent;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid var(--white);
    box-shadow: 0 2px 4px 0 var(--shadow-color);
}

.next-button[b-z86j0dcalf] {
    border-color: transparent;
}

.banner-button-1:hover[b-z86j0dcalf],
.next-button:hover[b-z86j0dcalf] {
    color: var(--black);
    background: var(--white);
}

.banner-button-1 .button-icon[b-z86j0dcalf],
.next-button .button-icon[b-z86j0dcalf] {
    font-size: 1rem;
}

/**************** Contact ****************/

.contact-group[b-z86j0dcalf] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--gray);
    transition: color 0.3s ease;
}

.contact-group i[b-z86j0dcalf] {
    color: var(--white);
    font-size: 2rem;
    transition: color 0.3s ease;
}

.contact-group a[b-z86j0dcalf] {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-group:hover i[b-z86j0dcalf],
.contact-group:hover a[b-z86j0dcalf] {
    color: var(--white);
}

/**************** Stepper ****************/

.step-navigation-row[b-z86j0dcalf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
}

.dot-row[b-z86j0dcalf] {
    display: flex;
    justify-content: center;
}

.dot[b-z86j0dcalf], .dot-selected[b-z86j0dcalf] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    border: none;
}

.dot[b-z86j0dcalf] {
    background-color: var(--gray);
    opacity: 0.5;
}

.dot-selected[b-z86j0dcalf] {
    background-color: var(--white);
    opacity: 1;
}

/**************** Coming soon ****************/

.coming-soon-container[b-z86j0dcalf] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 10rem;
}

.coming-soon-text[b-z86j0dcalf] {
    color: rgba(255,255,255,0.7);
    font-size: 2rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    animation: fadePulse-b-z86j0dcalf 2s infinite ease-in-out;
}

/**************** Animations ****************/

@keyframes fadePulse-b-z86j0dcalf {
    0%,100% {
        opacity: .7
    }

    50% {
        opacity: 1
    }
}

@keyframes fadeIn-b-z86j0dcalf {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeOut-b-z86j0dcalf {
    from {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.slow-fade-in[b-z86j0dcalf] {
    animation: fadeIn-b-z86j0dcalf 1.5s ease-out forwards;
}

.slow-fade-out[b-z86j0dcalf] {
    animation: fadeOut-b-z86j0dcalf 1.5s ease-out forwards;
}

.fade-in[b-z86j0dcalf] {
    animation: fadeIn-b-z86j0dcalf 0.5s ease-out forwards;
}

.fade-out[b-z86j0dcalf] {
    animation: fadeOut-b-z86j0dcalf 0.5s ease-out forwards;
}

/**************************************/
/*                                    */
/*               Laptop               */
/*                                    */
/**************************************/

@media screen and (min-width:1251px) and (max-width:1630px) {
    .home-section[b-z86j0dcalf] {
        display: grid;
        grid-template-columns: 1fr 2fr;
        align-items: center;
        min-height: 100vh;
        column-gap: 4rem;
        width: 1200px;
        padding: 0;
    }

    .canvas-container[b-z86j0dcalf] {
        position: absolute;
        height: 100vh;
    }

    .right-side[b-z86j0dcalf] {
        height: 80%;
    }

    .primary-image img[b-z86j0dcalf] {
        height: 22rem;
    }

    .coming-soon-container[b-z86j0dcalf] {
        height: 22rem;
    }

    .left-side[b-z86j0dcalf] {
        margin-top: 0rem;
    }
}

/**************************************/
/*                                    */
/*              Desktop               */
/*                                    */
/**************************************/

@media screen and (min-width:1631px) {
    .home-section[b-z86j0dcalf] {
        display: grid;
        grid-template-columns: 2fr 3fr;
        align-items: center;
        min-height: 100vh;
        column-gap: 4rem;
        width: 1200px;
        padding: 0;
    }

    .canvas-container[b-z86j0dcalf] {
        position: absolute;
        height: 100vh;
    }

    .right-side[b-z86j0dcalf] {
        height: 80%;
    }

    .primary-image img[b-z86j0dcalf] {
        height: 22rem;
    }

    .coming-soon-container[b-z86j0dcalf] {
        height: 22rem;
    }

    .left-side[b-z86j0dcalf] {
        margin-top: 0rem;
    }
}
/* /Components/Pages/Privacy.razor.rz.scp.css */
/**************** Policy ****************/

h1:focus[b-svjpwxop8n] {
    outline: none;
}

.policy[b-svjpwxop8n] {
    max-width: 860px;
    margin-top: 120px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 8vh;
    padding: 0 24px 0px;
    color: var(--white);
    line-height: 1.6;
}

.policy h1[b-svjpwxop8n] {
    font-size: 2rem;
    margin: 0 0 8px;
}

.policy .updated[b-svjpwxop8n] {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.policy h2[b-svjpwxop8n] {
    font-size: 1.25rem;
    margin: 28px 0 8px;
}

.policy h3[b-svjpwxop8n] {
    font-size: 1.05rem;
    margin: 18px 0 6px;
    color: var(--white);
}

.policy p[b-svjpwxop8n] {
    margin: 8px 0 12px;
    color: var(--gray);
}

.policy a[b-svjpwxop8n] {
    color: var(--white);
}

.policy ul[b-svjpwxop8n] {
    margin: 8px 0 16px 18px;
}

.policy li[b-svjpwxop8n] {
    margin: 6px 0;
    color: var(--gray);
}

.policy blockquote[b-svjpwxop8n] {
    color: var(--gray);
    border-left: 4px solid var(--white);
    padding: 12px 14px;
    border-radius: 6px;
    color: var(--white);
}
/* /Components/Pages/TermsOfService.razor.rz.scp.css */
/**************** Policy ****************/

h1:focus[b-chbsbf2ww6] {
    outline: none;
}

.policy[b-chbsbf2ww6] {
    max-width: 860px;
    margin-top: 120px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 8vh;
    padding: 0 24px 0px;
    color: var(--white);
    line-height: 1.6;
}

.policy h1[b-chbsbf2ww6] {
    font-size: 2rem;
    margin: 0 0 8px;
}

.policy .updated[b-chbsbf2ww6] {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.policy h2[b-chbsbf2ww6] {
    font-size: 1.25rem;
    margin: 28px 0 8px;
}

.policy h3[b-chbsbf2ww6] {
    font-size: 1.05rem;
    margin: 18px 0 6px;
    color: var(--white);
}

.policy p[b-chbsbf2ww6] {
    margin: 8px 0 12px;
    color: var(--gray);
}

.policy a[b-chbsbf2ww6] {
    color: var(--white);
}

.policy ul[b-chbsbf2ww6] {
    margin: 8px 0 16px 18px;
}

.policy li[b-chbsbf2ww6] {
    margin: 6px 0;
    color: var(--gray);
}

.policy blockquote[b-chbsbf2ww6] {
    color: var(--gray);
    border-left: 4px solid var(--white);
    padding: 12px 14px;
    border-radius: 6px;
    color: var(--white);
}
