/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page-wrapper[b-kll2mdoixc] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.glass-header[b-kll2mdoixc] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 16, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.header-content[b-kll2mdoixc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger-btn[b-kll2mdoixc] {
    display: none;
}

.logo[b-kll2mdoixc] {
    display: flex;
    align-items: center;
}

.logo img[b-kll2mdoixc] {
    height: 55px;
    /* Slightly adjusted for balance */
    width: auto;
    transition: transform 0.3s;
    /* White glow effect for visibility on dark background */
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

.logo img:hover[b-kll2mdoixc] {
    transform: scale(1.05);
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
}

.dot[b-kll2mdoixc] {
    color: #7029f5;
    /* fallback */
    color: var(--primary-color);
}

.desktop-nav a[b-kll2mdoixc] {
    margin-left: 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: #d0d0d0;
    /* Increased brightness */
    /* fallback */
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.desktop-nav a:hover[b-kll2mdoixc] {
    color: white;
}

.btn-nav[b-kll2mdoixc] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--primary-color);
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--primary-color) !important;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-nav:hover[b-kll2mdoixc] {
    background: var(--primary-color);
    color: white !important;
    box-shadow: 0 0 15px var(--primary-glow);
}

.glass-footer[b-kll2mdoixc] {
    padding: 3rem 0;
    text-align: center;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Increased visibility */
    background: #0f0f12;
    margin-top: auto;
}

@media (max-width: 768px) {
    .header-content[b-kll2mdoixc] {
        /* No longer column direction by default, keep row for logo + burger */
        flex-direction: row;
        justify-content: space-between;
    }

    .hamburger-btn[b-kll2mdoixc] {
        display: block;
        /* Show burger on mobile */
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }

    .desktop-nav[b-kll2mdoixc] {
        /* Hidden by default */
        display: none;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 13, 16, 0.98);
        /* Less transparent for legibility */
        padding: 2rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .desktop-nav.mobile-open[b-kll2mdoixc] {
        display: flex;
        /* Show when open */
    }

    .desktop-nav a[b-kll2mdoixc] {
        margin-left: 0;
        font-size: 1.2rem;
        padding: 0.5rem 0;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-yu41eu2niy],
.components-reconnect-repeated-attempt-visible[b-yu41eu2niy],
.components-reconnect-failed-visible[b-yu41eu2niy],
.components-pause-visible[b-yu41eu2niy],
.components-resume-failed-visible[b-yu41eu2niy],
.components-rejoining-animation[b-yu41eu2niy] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-yu41eu2niy],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-yu41eu2niy],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-yu41eu2niy],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-yu41eu2niy],
#components-reconnect-modal.components-reconnect-retrying[b-yu41eu2niy],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-yu41eu2niy],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-yu41eu2niy],
#components-reconnect-modal.components-reconnect-failed[b-yu41eu2niy],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-yu41eu2niy] {
    display: block;
}


#components-reconnect-modal[b-yu41eu2niy] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-yu41eu2niy 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-yu41eu2niy 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-yu41eu2niy 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-yu41eu2niy]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-yu41eu2niy 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-yu41eu2niy {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-yu41eu2niy {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-yu41eu2niy {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-yu41eu2niy] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-yu41eu2niy] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-yu41eu2niy] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-yu41eu2niy] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-yu41eu2niy] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-yu41eu2niy] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-yu41eu2niy] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-yu41eu2niy 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-yu41eu2niy] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-yu41eu2niy {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Sections/FeaturesSection.razor.rz.scp.css */
.features-section[b-2tay1rqhgc] {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--surface-color) 100%);
}

.section-title[b-2tay1rqhgc] {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 5rem;
    font-weight: 700;
}

.text-gradient[b-2tay1rqhgc] {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid[b-2tay1rqhgc] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card[b-2tay1rqhgc] {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.feature-card:hover[b-2tay1rqhgc] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-card.highlight[b-2tay1rqhgc] {
    border-color: rgba(112, 41, 245, 0.3);
    background: linear-gradient(145deg, rgba(112, 41, 245, 0.08), rgba(0, 0, 0, 0));
}

.feature-card.highlight[b-2tay1rqhgc]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
}

.icon-wrapper[b-2tay1rqhgc] {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    transition: background 0.3s, color 0.3s;
}

.feature-card:hover .icon-wrapper[b-2tay1rqhgc] {
    background: var(--primary-color);
    color: white;
}

h3[b-2tay1rqhgc] {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

p[b-2tay1rqhgc] {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}
/* /Components/Sections/HeroSection.razor.rz.scp.css */
.hero-section[b-55nsqext5j] {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 140px;
}

.hero-bg[b-55nsqext5j] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.glow-orb[b-55nsqext5j] {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 41, 245, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse-b-55nsqext5j 4s infinite alternate;
}

@keyframes pulse-b-55nsqext5j {
    0% {
        opacity: 0.5;
        transform: translateX(-50%) scale(0.9);
    }

    100% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.1);
    }
}

.hero-content[b-55nsqext5j] {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

h1[b-55nsqext5j] {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

p[b-55nsqext5j] {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.text-gradient[b-55nsqext5j] {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.delay-1[b-55nsqext5j] {
    animation-delay: 0.2s;
}

.delay-2[b-55nsqext5j] {
    animation-delay: 0.4s;
}

.delay-3[b-55nsqext5j] {
    animation-delay: 0.6s;
}

.hero-stats[b-55nsqext5j] {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 5rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item h3[b-55nsqext5j] {
    font-size: 2.5rem;
    margin: 0;
    color: var(--text-primary);
    font-weight: 600;
}

.stat-item span[b-55nsqext5j] {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.stat-divider[b-55nsqext5j] {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    h1[b-55nsqext5j] {
        font-size: 3rem;
    }

    p[b-55nsqext5j] {
        font-size: 1.1rem;
    }

    .hero-stats[b-55nsqext5j] {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider[b-55nsqext5j] {
        width: 50px;
        height: 1px;
    }
}
/* /Components/Sections/TestimonialsSection.razor.rz.scp.css */
.testimonials-section[b-c3cdbvpe3t] {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.section-title[b-c3cdbvpe3t] {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
}

.text-gradient[b-c3cdbvpe3t] {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-slider[b-c3cdbvpe3t] {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0.5rem;
    scroll-snap-type: x mandatory;
    width: 100%;
    /* Visually indicate scrolling */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-color);
}

.testimonials-slider[b-c3cdbvpe3t]::-webkit-scrollbar {
    height: 8px;
}

.testimonials-slider[b-c3cdbvpe3t]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.testimonials-slider[b-c3cdbvpe3t]::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.testimonial-card[b-c3cdbvpe3t] {
    min-width: 400px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
}

.testimonial-card:hover[b-c3cdbvpe3t] {
    transform: translateY(-5px);
}

.stars[b-c3cdbvpe3t] {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.review-text[b-c3cdbvpe3t] {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.reviewer[b-c3cdbvpe3t] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.avatar[b-c3cdbvpe3t] {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.info h4[b-c3cdbvpe3t] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.info span[b-c3cdbvpe3t] {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .testimonial-card[b-c3cdbvpe3t] {
        min-width: 300px;
    }

    .testimonials-slider[b-c3cdbvpe3t] {
        padding: 1rem;
    }
}
/* /Components/Sections/TrialFormSection.razor.rz.scp.css */
.trial-section[b-nmgwvzvc4x] {
    padding: 120px 0;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Background glow for form */
.trial-section[b-nmgwvzvc4x]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(112, 41, 245, 0.08), transparent 60%);
    z-index: -1;
}

.trial-container[b-nmgwvzvc4x] {
    max-width: 700px;
    width: 100%;
}

.trial-form-card[b-nmgwvzvc4x] {
    padding: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(20, 20, 25, 0.6);
    backdrop-filter: blur(20px);
}

h2[b-nmgwvzvc4x] {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.text-gradient[b-nmgwvzvc4x] {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle[b-nmgwvzvc4x] {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.form-group[b-nmgwvzvc4x] {
    margin-bottom: 1.5rem;
}

.form-row[b-nmgwvzvc4x] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label[b-nmgwvzvc4x] {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.glass-input[b-nmgwvzvc4x] {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: var(--font-main);
}

.glass-input:focus[b-nmgwvzvc4x] {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(112, 41, 245, 0.1);
    background: rgba(0, 0, 0, 0.5);
}

.glass-input[b-nmgwvzvc4x]::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.w-100[b-nmgwvzvc4x] {
    width: 100%;
}

.mt-4[b-nmgwvzvc4x] {
    margin-top: 2rem;
}

.text-center[b-nmgwvzvc4x] {
    text-align: center;
}

@media (max-width: 650px) {
    .form-row[b-nmgwvzvc4x] {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .trial-form-card[b-nmgwvzvc4x] {
        padding: 2rem;
    }

    h2[b-nmgwvzvc4x] {
        font-size: 2.2rem;
    }
}
