/* /Components/Home/FeatureCard.razor.rz.scp.css */
.feature-card[b-9c1sxszdb9] {
    background: var(--bg-surface);
    border: 1px solid var(--accent-border);
    border-radius: 12px;
    padding: 1.75rem;
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
    height: 100%;
}

.feature-card:hover[b-9c1sxszdb9] {
    transform: translateY(-4px);
    box-shadow: 0 0 24px rgba(14, 165, 233, 0.18);
    border-color: var(--accent);
}

.feature-card-icon[b-9c1sxszdb9] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--accent-fill-dim);
    border: 1px solid var(--accent-border);
    border-radius: 10px;
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card-title[b-9c1sxszdb9] {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card-desc[b-9c1sxszdb9] {
    color: var(--text-secondary);
    margin-bottom: 0;
}
/* /Components/Home/HeroSection.razor.rz.scp.css */
/* ══════════════════════════════════════════════════════════
   HeroSection — Full-viewport animated hero
   ══════════════════════════════════════════════════════════ */

.hero-section[b-koow6josvm] {
    position: relative;
    min-height: 100vh;
    background: var(--bg-page);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ── Dot-grid mesh background ──────────────────────────── */
.hero-mesh[b-koow6josvm] {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(14, 165, 233, 0.18) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    opacity: 0.45;
}

/* ── Radial glow behind the headline ──────────────────── */
.hero-glow[b-koow6josvm] {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Layout ────────────────────────────────────────────── */
.hero-container[b-koow6josvm] {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--nav-height) + 2rem);
    padding-bottom: 6rem;
}

.hero-content[b-koow6josvm] {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-left[b-koow6josvm] {
    flex: 1;
    min-width: 0;
}

.hero-right[b-koow6josvm] {
    flex: 0 0 460px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Badge ─────────────────────────────────────────────── */
.hero-badge[b-koow6josvm] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--accent-border);
    color: var(--accent-light);
    border-radius: 999px;
    padding: 0.3rem 1rem 0.3rem 0.65rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 0.5s ease both;
}

.hero-badge-dot[b-koow6josvm] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    animation: heroBadgePulse-b-koow6josvm 2.4s ease-in-out infinite;
}

@keyframes heroBadgePulse-b-koow6josvm {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.55; transform: scale(0.8); }
}

/* ── Headline with word animations ────────────────────── */
.hero-headline[b-koow6josvm] {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.word-anim[b-koow6josvm] {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: wordFadeUp-b-koow6josvm 0.55s ease forwards;
}

.word-anim:nth-child(1)[b-koow6josvm] { animation-delay: 0.1s; }
.word-anim:nth-child(2)[b-koow6josvm] { animation-delay: 0.22s; }
.word-anim:nth-child(3)[b-koow6josvm] { animation-delay: 0.34s; }
.word-anim:nth-child(4)[b-koow6josvm] { animation-delay: 0.46s; }
.word-anim:nth-child(5)[b-koow6josvm] { animation-delay: 0.58s; }

@keyframes wordFadeUp-b-koow6josvm {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Sub-headline ──────────────────────────────────────── */
.hero-subheadline[b-koow6josvm] {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 36rem;
    margin-bottom: 2.25rem;
    opacity: 0;
    animation: fadeSlideUp 0.55s ease 0.55s forwards;
}

/* ── CTA buttons ───────────────────────────────────────── */
.hero-cta[b-koow6josvm] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    opacity: 0;
    animation: fadeSlideUp 0.5s ease 0.72s forwards;
}

/* ── Right column SVG ──────────────────────────────────── */
.hero-svg-wrap[b-koow6josvm] {
    position: relative;
    filter: drop-shadow(0 0 40px rgba(14, 165, 233, 0.12));
    opacity: 0;
    animation: svgEntrance-b-koow6josvm 0.7s ease 0.4s forwards;
}

@keyframes svgEntrance-b-koow6josvm {
    from { opacity: 0; transform: scale(0.9) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-cloud-svg[b-koow6josvm] {
    width: 100%;
    max-width: 460px;
    height: auto;
}

/* SVG animated elements */
.svg-line[b-koow6josvm] {
    animation: svgLineFade-b-koow6josvm 3s ease-in-out infinite alternate;
}

.svg-line:nth-child(odd)[b-koow6josvm]  { animation-delay: 0s; }
.svg-line:nth-child(even)[b-koow6josvm] { animation-delay: 1.5s; }

@keyframes svgLineFade-b-koow6josvm {
    from { opacity: 0.3; }
    to   { opacity: 0.9; }
}

.svg-cloud-path[b-koow6josvm] {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: pathDraw 1.5s ease 0.8s forwards;
}

.svg-orbit[b-koow6josvm] {
    animation: spin-b-koow6josvm 20s linear infinite;
    transform-origin: 240px 80px;
}

@keyframes spin-b-koow6josvm {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.svg-particle-a[b-koow6josvm] {
    animation: particlePulse-b-koow6josvm 2.8s ease-in-out infinite;
}

.svg-particle-b[b-koow6josvm] {
    animation: particlePulse-b-koow6josvm 3.4s ease-in-out 0.6s infinite;
}

.svg-particle-c[b-koow6josvm] {
    animation: particlePulse-b-koow6josvm 2.2s ease-in-out 1.2s infinite;
}

@keyframes particlePulse-b-koow6josvm {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50%       { opacity: 1;   transform: scale(1.4); }
}

/* ── Scroll indicator ──────────────────────────────────── */
.hero-scroll-indicator[b-koow6josvm] {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeSlideUp 0.5s ease 1.2s forwards;
}

.hero-scroll-arrow[b-koow6josvm] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--accent-border);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1rem;
    background: var(--accent-fill-dim);
    animation: bounceDown-b-koow6josvm 1.2s ease-in-out infinite alternate;
}

@keyframes bounceDown-b-koow6josvm {
    from { transform: translateY(0); }
    to   { transform: translateY(6px); }
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 991px) {
    .hero-content[b-koow6josvm] {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-left[b-koow6josvm] {
        order: 1;
    }

    .hero-right[b-koow6josvm] {
        order: 0;
        flex: none;
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }

    .hero-subheadline[b-koow6josvm] {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta[b-koow6josvm] {
        justify-content: center;
    }

    .hero-glow[b-koow6josvm] {
        left: 50%;
    }
}

@media (max-width: 575px) {
    .hero-right[b-koow6josvm] {
        display: none;
    }

    .hero-container[b-koow6josvm] {
        padding-top: calc(var(--nav-height) + 1rem);
        padding-bottom: 4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .word-anim[b-koow6josvm],
    .hero-badge[b-koow6josvm],
    .hero-subheadline[b-koow6josvm],
    .hero-cta[b-koow6josvm],
    .hero-scroll-indicator[b-koow6josvm] {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-svg-wrap[b-koow6josvm] {
        animation: none !important;
        opacity: 1 !important;
    }

    .svg-cloud-path[b-koow6josvm] {
        stroke-dashoffset: 0 !important;
        animation: none !important;
    }

    .svg-orbit[b-koow6josvm],
    .svg-particle-a[b-koow6josvm],
    .svg-particle-b[b-koow6josvm],
    .svg-particle-c[b-koow6josvm],
    .svg-line[b-koow6josvm],
    .hero-badge-dot[b-koow6josvm],
    .hero-scroll-arrow[b-koow6josvm] {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
/* /Components/Home/HowItWorksSection.razor.rz.scp.css */
.how-section[b-3rqduu20vl] {
    background: var(--bg-surface);
    padding: 5rem 0;
}

.how-heading[b-3rqduu20vl] {
    color: var(--text-primary);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
}

.how-subheading[b-3rqduu20vl] {
    color: var(--text-secondary);
    max-width: 520px;
    margin: 0 auto;
}

.how-steps-container[b-3rqduu20vl] {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    position: relative;
}

.how-step[b-3rqduu20vl] {
    position: relative;
    flex: 1;
    padding: 2rem 1.5rem;
    background: var(--bg-surface-raised);
    border: 1px solid var(--accent-border);
    border-radius: 14px;
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.how-step:hover[b-3rqduu20vl] {
    transform: translateY(-4px);
    box-shadow: 0 0 28px rgba(14, 165, 233, 0.15);
    border-color: var(--accent);
}

.how-step:not(:last-child)[b-3rqduu20vl]::after {
    content: '';
    position: absolute;
    top: 2.6rem;
    left: 100%;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--accent), transparent);
    z-index: 1;
    transition: width 0.6s ease 0.3s;
}

.how-step:not(:last-child).visible[b-3rqduu20vl]::after {
    width: 2rem;
}

.how-step-number[b-3rqduu20vl] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.8rem;
    background: var(--accent-fill-dim);
    margin-bottom: 1.25rem;
    letter-spacing: 0.04em;
}

.how-step-icon[b-3rqduu20vl] {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.how-step-title[b-3rqduu20vl] {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.how-step-desc[b-3rqduu20vl] {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.65;
}

@keyframes pathGrow-b-3rqduu20vl {
    from { width: 0; }
    to { width: 2rem; }
}

@media (max-width: 768px) {
    .how-steps-container[b-3rqduu20vl] {
        flex-direction: column;
    }

    .how-step:not(:last-child)[b-3rqduu20vl]::after {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .how-step:not(:last-child)[b-3rqduu20vl]::after {
        transition: none;
    }
}
/* /Components/Home/StatsSection.razor.rz.scp.css */
.stats-section[b-bldyv8vy7m] {
    background: var(--bg-page);
    padding: 4rem 0;
    border-top: 1px solid var(--accent-border-sub);
    border-bottom: 1px solid var(--accent-border-sub);
}

.stats-grid[b-bldyv8vy7m] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-block[b-bldyv8vy7m] {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.stat-block:not(:last-child)[b-bldyv8vy7m] {
    border-right: 1px solid var(--accent-border-sub);
}

.stat-value-row[b-bldyv8vy7m] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.1em;
    margin-bottom: 0.5rem;
}

.stat-count[b-bldyv8vy7m] {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--accent);
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.stat-suffix[b-bldyv8vy7m] {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--accent);
    font-weight: 800;
    line-height: 1;
}

.stat-label[b-bldyv8vy7m] {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.stat-icon-wrap[b-bldyv8vy7m] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.stat-check-icon[b-bldyv8vy7m] {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--accent);
    filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.5));
    animation: glowPulse 2.5s ease-in-out infinite;
}

@media (max-width: 768px) {
    .stats-grid[b-bldyv8vy7m] {
        grid-template-columns: 1fr;
    }

    .stat-block:not(:last-child)[b-bldyv8vy7m] {
        border-right: none;
        border-bottom: 1px solid var(--accent-border-sub);
    }
}

@media (prefers-reduced-motion: reduce) {
    .stat-check-icon[b-bldyv8vy7m] {
        animation: none;
    }
}
/* /Components/Layout/Footer.razor.rz.scp.css */
.cloudspector-footer[b-qcwxgp0yq4] {
    background: var(--bg-page);
    border-top: 1px solid rgba(14, 165, 233, 0.08);
}

.footer-logo[b-qcwxgp0yq4] {
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(14, 165, 233, 0.9)) drop-shadow(0 0 8px rgba(14, 165, 233, 0.4));
    opacity: 0.85;
}

.footer-tagline[b-qcwxgp0yq4] {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-link[b-qcwxgp0yq4] {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.18s;
}

.footer-link:hover[b-qcwxgp0yq4] {
    color: var(--accent-light);
}

.footer-divider[b-qcwxgp0yq4] {
    border-top: 1px solid rgba(14, 165, 233, 0.08);
}

.footer-copyright[b-qcwxgp0yq4] {
    color: var(--text-muted);
    font-size: 0.82rem;
    opacity: 0.6;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.cloudspector-layout[b-z3g8lvzjuw] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.cloudspector-layout main[b-z3g8lvzjuw] {
    flex: 1;
}

.min-vh-content[b-z3g8lvzjuw] {
    min-height: calc(100vh - 200px);
}

#blazor-error-ui[b-z3g8lvzjuw] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-z3g8lvzjuw] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavBar.razor.rz.scp.css */
.cloudspector-navbar[b-xzs12jqros] {
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--accent-border-sub);
    box-shadow: none;
    min-height: var(--nav-height);
}

.cloudspector-navbar .navbar-brand img[b-xzs12jqros] {
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(14, 165, 233, 0.9)) drop-shadow(0 0 8px rgba(14, 165, 233, 0.4));
}

.cloudspector-navbar .nav-link[b-xzs12jqros] {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem;
    transition: color 0.18s ease;
}

.cloudspector-navbar .nav-link:hover[b-xzs12jqros],
.cloudspector-navbar .nav-link.active[b-xzs12jqros] {
    color: var(--accent-light);
    opacity: 1;
}

.cloudspector-navbar .navbar-toggler[b-xzs12jqros] {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.4rem 0.6rem;
    background: transparent;
}

.cloudspector-navbar .navbar-toggler:focus[b-xzs12jqros] {
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.25);
}

.btn-nav-cta[b-xzs12jqros] {
    background: var(--accent-gradient);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.45rem 1.1rem;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
    transition: opacity 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-nav-cta:hover[b-xzs12jqros] {
    color: #ffffff;
    opacity: 0.92;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.45);
    transform: translateY(-1px);
}

.navbar-user-name[b-xzs12jqros] {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
}

@media (max-width: 991.98px) {
    .cloudspector-navbar .navbar-collapse[b-xzs12jqros] {
        background: var(--bg-nav);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid var(--accent-border-sub);
        padding: 0.75rem 0;
        margin-top: 0.5rem;
    }

    .cloudspector-navbar .navbar-nav[b-xzs12jqros] {
        gap: 0.25rem !important;
        align-items: flex-start !important;
    }

    .cloudspector-navbar .nav-link[b-xzs12jqros] {
        padding: 0.5rem 1rem;
    }

    .btn-nav-cta[b-xzs12jqros] {
        margin-left: 1rem;
        margin-top: 0.25rem;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-dumqp8wqj7] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-dumqp8wqj7] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-dumqp8wqj7] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-dumqp8wqj7] {
    font-size: 1.1rem;
}

.bi[b-dumqp8wqj7] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-dumqp8wqj7] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-dumqp8wqj7] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-dumqp8wqj7] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-dumqp8wqj7] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-dumqp8wqj7] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-dumqp8wqj7] {
        padding-bottom: 1rem;
    }

    .nav-item[b-dumqp8wqj7]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-dumqp8wqj7]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-dumqp8wqj7]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-dumqp8wqj7] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-dumqp8wqj7] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-dumqp8wqj7] {
        display: none;
    }

    .nav-scrollable[b-dumqp8wqj7] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-0o1mi32ieh],
.components-reconnect-repeated-attempt-visible[b-0o1mi32ieh],
.components-reconnect-failed-visible[b-0o1mi32ieh],
.components-pause-visible[b-0o1mi32ieh],
.components-resume-failed-visible[b-0o1mi32ieh],
.components-rejoining-animation[b-0o1mi32ieh] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-0o1mi32ieh],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-0o1mi32ieh],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-0o1mi32ieh],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-0o1mi32ieh],
#components-reconnect-modal.components-reconnect-retrying[b-0o1mi32ieh],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-0o1mi32ieh],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-0o1mi32ieh],
#components-reconnect-modal.components-reconnect-failed[b-0o1mi32ieh],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-0o1mi32ieh] {
    display: block;
}


#components-reconnect-modal[b-0o1mi32ieh] {
    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-0o1mi32ieh 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-0o1mi32ieh 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-0o1mi32ieh 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-0o1mi32ieh]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-0o1mi32ieh 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-0o1mi32ieh {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-0o1mi32ieh {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-0o1mi32ieh {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-0o1mi32ieh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-0o1mi32ieh] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-0o1mi32ieh] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-0o1mi32ieh] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-0o1mi32ieh] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-0o1mi32ieh] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-0o1mi32ieh] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-0o1mi32ieh 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-0o1mi32ieh] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-0o1mi32ieh {
    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/Pages/Demo.razor.rz.scp.css */
.demo-section[b-6z0r8jjbps] {
    min-height: 100vh;
    background: var(--bg-page);
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
}

.demo-headline[b-6z0r8jjbps] {
    color: var(--text-primary);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.demo-subtext[b-6z0r8jjbps] {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}

.demo-card[b-6z0r8jjbps] {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--accent-border);
    border-radius: 16px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.demo-card-body[b-6z0r8jjbps] {
    padding: 2.5rem;
}

.demo-info-block[b-6z0r8jjbps] {
    display: flex;
    align-items: center;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid var(--accent-border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.demo-info-block i[b-6z0r8jjbps] {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.demo-contact-label[b-6z0r8jjbps] {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.demo-contact-link[b-6z0r8jjbps] {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.18s;
}

.demo-contact-link:hover[b-6z0r8jjbps] {
    color: var(--accent-light);
    text-decoration: underline;
}

.demo-card input:focus[b-6z0r8jjbps],
.demo-card textarea:focus[b-6z0r8jjbps],
.demo-card select:focus[b-6z0r8jjbps] {
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.25);
    border-color: var(--accent);
    outline: none;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.problem-section[b-yadr6also0] {
    background: var(--bg-surface);
    padding: 5rem 0;
}

.problem-heading[b-yadr6also0] {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

.problem-body[b-yadr6also0] {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.problem-icon-cluster[b-yadr6also0] {
    position: relative;
}

.problem-svg[b-yadr6also0] {
    width: 100%;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 0 24px rgba(14, 165, 233, 0.08));
}

.product-section[b-yadr6also0] {
    background: var(--bg-page);
    padding: 5rem 0;
}

.product-heading[b-yadr6also0] {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 1rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-sub[b-yadr6also0] {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 38rem;
    margin: 0 auto;
}

.btn-lg-accent[b-yadr6also0] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.18s, box-shadow 0.18s;
}

.btn-lg-accent:hover[b-yadr6also0] {
    transform: translateY(-2px);
}

.cta-banner[b-yadr6also0] {
    background: var(--bg-surface);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-banner[b-yadr6also0]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(14, 165, 233, 0.07) 0%, transparent 65%);
    pointer-events: none;
    animation: spotlightPulse-b-yadr6also0 6s ease-in-out infinite;
}

@keyframes spotlightPulse-b-yadr6also0 {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

.cta-heading[b-yadr6also0] {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 1rem;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.cta-sub[b-yadr6also0] {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 36rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-actions[b-yadr6also0] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}


.section-label[b-yadr6also0] {
    display: inline-flex;
    align-items: center;
    background: var(--accent-fill-dim);
    border: 1px solid var(--accent-border);
    color: var(--accent);
    border-radius: 999px;
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    .cta-banner[b-yadr6also0]::before {
        animation: none !important;
    }
}
/* /Components/Pages/Pricing.razor.rz.scp.css */
.pricing-page[b-gcwgev85l3] {
    background: var(--bg-page);
    min-height: 100vh;
    padding-top: calc(var(--nav-height) + 2rem);
}

/* ─── Billing toggle ─────────────────────────────────────────── */
.pricing-page .pricing-toggle[b-gcwgev85l3] {
    display: inline-flex;
    align-items: center;
    background: var(--bg-surface);
    border: 1px solid var(--accent-border);
    border-radius: 999px;
    padding: 0.25rem;
    gap: 0.25rem;
}

.pricing-page .pricing-toggle-option[b-gcwgev85l3] {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.18s, background 0.18s;
    user-select: none;
}

.pricing-page .pricing-toggle-option:hover[b-gcwgev85l3] {
    color: var(--text-primary);
}

.pricing-page .pricing-toggle-active[b-gcwgev85l3] {
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 600;
}

.pricing-page .pricing-badge-save[b-gcwgev85l3] {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.18);
    color: var(--accent-light);
    border: 1px solid var(--accent-border);
    vertical-align: middle;
}

.pricing-page .pricing-toggle-active .pricing-badge-save[b-gcwgev85l3] {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* ─── Pricing cards ──────────────────────────────────────────── */
.pricing-page .pricing-card[b-gcwgev85l3] {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-radius: 16px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    overflow: hidden;
}

.pricing-page .pricing-card:hover[b-gcwgev85l3] {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-page .pricing-card-featured[b-gcwgev85l3] {
    box-shadow: 0 0 0 2px var(--accent), 0 0 40px rgba(14, 165, 233, 0.15) !important;
    border-color: var(--accent) !important;
}

.pricing-page .pricing-card-featured:hover[b-gcwgev85l3] {
    box-shadow: 0 0 0 2px var(--accent), 0 0 60px rgba(14, 165, 233, 0.25) !important;
    transform: translateY(-4px);
}

.pricing-page .pricing-ribbon[b-gcwgev85l3] {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: var(--accent-gradient);
    color: #fff;
    margin-bottom: 0.75rem;
}

.pricing-page .pricing-price[b-gcwgev85l3] {
    color: var(--text-primary);
}

.pricing-page .pricing-check[b-gcwgev85l3] {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 0.1rem;
}

/* ─── Subscribe / contact buttons ───────────────────────────── */
.pricing-page .btn-primary-accent[b-gcwgev85l3] {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.55rem 1.25rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
    transition: opacity 0.18s, transform 0.18s;
}

.pricing-page .btn-primary-accent:hover[b-gcwgev85l3] {
    opacity: 0.9;
    transform: translateY(-1px);
    color: #fff;
}

.pricing-page .btn-outline-accent[b-gcwgev85l3] {
    background: transparent;
    color: var(--accent-light);
    border: 1px solid var(--accent-border);
    border-radius: 8px;
    padding: 0.55rem 1.25rem;
    font-weight: 600;
    transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.pricing-page .btn-outline-accent:hover[b-gcwgev85l3] {
    background: var(--accent-fill-dim);
    border-color: var(--accent);
    color: var(--accent-light);
}

/* ─── Coverage CTA inside card ───────────────────────────────── */
.pricing-page .pricing-checks-cta[b-gcwgev85l3] {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 0.75rem;
    text-align: left;
}

.pricing-page .pricing-checks-cta:focus-visible[b-gcwgev85l3] {
    outline: none;
}

.pricing-page .pricing-checks-cta:focus-visible .pricing-checks-cta-inner[b-gcwgev85l3] {
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.35);
}

.pricing-page .pricing-checks-cta-inner[b-gcwgev85l3] {
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.06) 0%, rgba(99, 102, 241, 0.08) 100%);
    border: 1px solid var(--accent-border);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pricing-page .pricing-checks-cta:hover .pricing-checks-cta-inner[b-gcwgev85l3] {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.15);
    border-color: var(--accent);
}

.pricing-page .pricing-checks-cta-icon[b-gcwgev85l3] {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-fill-dim);
    border: 1px solid var(--accent-border);
    color: var(--accent);
    font-size: 1.35rem;
    flex-shrink: 0;
}

.pricing-page .pricing-checks-cta-title[b-gcwgev85l3] {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.pricing-page .pricing-checks-cta-meta[b-gcwgev85l3] {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.pricing-page .pricing-checks-cta-arrow[b-gcwgev85l3] {
    color: var(--accent);
    font-size: 1.5rem;
    line-height: 1;
    opacity: 0.9;
    transition: transform 0.18s ease;
    flex-shrink: 0;
}

.pricing-page .pricing-checks-cta:hover .pricing-checks-cta-arrow[b-gcwgev85l3] {
    transform: translateX(4px);
}

/* ─── Summary card ───────────────────────────────────────────── */
.pricing-page .pricing-summary-card[b-gcwgev85l3] {
    background: var(--bg-surface);
    border: 1px solid var(--accent-border);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.pricing-page .pricing-summary-card[b-gcwgev85l3]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0.7;
}

/* ─── Modal shell ────────────────────────────────────────────── */
.pricing-page .pricing-checks-modal[b-gcwgev85l3] {
    position: fixed;
    inset: 0;
    z-index: 1055;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: pricing-modal-root-in-b-gcwgev85l3 0.28s ease forwards;
}

@keyframes pricing-modal-root-in-b-gcwgev85l3 {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.pricing-page .pricing-checks-modal-backdrop[b-gcwgev85l3] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.pricing-page .pricing-checks-modal-animate .pricing-checks-modal-panel[b-gcwgev85l3] {
    animation: pricing-modal-panel-in-b-gcwgev85l3 0.32s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes pricing-modal-panel-in-b-gcwgev85l3 {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pricing-page .pricing-checks-modal-panel[b-gcwgev85l3] {
    position: relative;
    z-index: 1;
    width: min(44rem, 100%);
    max-height: min(90vh, 46rem);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 1rem;
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid var(--accent-border);
    box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(14, 165, 233, 0.08) inset;
}

/* ─── Modal header ───────────────────────────────────────────── */
.pricing-page .pricing-checks-modal-header[b-gcwgev85l3] {
    flex-shrink: 0;
    padding: 1.35rem 1.35rem 1.15rem;
    background: linear-gradient(155deg, #0f172a 0%, #1e293b 55%, #0f2238 100%);
    border-bottom: 1px solid var(--accent-border);
    position: relative;
}

.pricing-page .pricing-checks-modal-header[b-gcwgev85l3]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), rgba(14, 165, 233, 0.15));
}

.pricing-page .pricing-checks-modal-hero-icon[b-gcwgev85l3] {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-fill-dim);
    border: 1px solid var(--accent-border);
    color: var(--accent);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pricing-page .pricing-checks-modal-eyebrow[b-gcwgev85l3] {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: var(--accent);
}

.pricing-page .pricing-checks-modal-title[b-gcwgev85l3] {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.pricing-page .pricing-checks-modal-sub[b-gcwgev85l3] {
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--text-secondary);
}

.pricing-page .pricing-checks-modal-close[b-gcwgev85l3] {
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pricing-page .pricing-checks-modal-close:hover[b-gcwgev85l3] {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--text-primary);
}

.pricing-page .pricing-checks-modal-statrow[b-gcwgev85l3] {
    position: relative;
    z-index: 1;
}

.pricing-page .pricing-checks-stat-pill[b-gcwgev85l3] {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.15);
    color: var(--accent-light);
    border: 1px solid var(--accent-border);
}

.pricing-page .pricing-checks-stat-pill-muted[b-gcwgev85l3] {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-page .pricing-checks-stat-pill-accent[b-gcwgev85l3] {
    background: var(--accent);
    color: #0a0f1a;
    border-color: transparent;
    font-weight: 700;
}

/* ─── Toolbar + search ───────────────────────────────────────── */
.pricing-page .pricing-checks-modal-toolbar[b-gcwgev85l3] {
    flex-shrink: 0;
    padding: 1rem 1.35rem;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--accent-border-sub);
}

.pricing-page .pricing-checks-search[b-gcwgev85l3] {
    position: relative;
    display: block;
}

.pricing-page .pricing-checks-search-icon[b-gcwgev85l3] {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
}

.pricing-page .pricing-checks-search-input[b-gcwgev85l3] {
    display: block;
    width: 100%;
    padding: 0.65rem 1rem 0.65rem 2.65rem;
    font-size: 0.9rem;
    border: 1px solid var(--accent-border);
    border-radius: 999px;
    background: var(--bg-surface-raised);
    color: var(--text-primary);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pricing-page .pricing-checks-search-input:focus[b-gcwgev85l3] {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.pricing-page .pricing-checks-search-input[b-gcwgev85l3]::placeholder {
    color: var(--text-muted);
}

/* ─── Modal body / check list ────────────────────────────────── */
.pricing-page .pricing-checks-modal-body[b-gcwgev85l3] {
    overflow-y: auto;
    flex: 1 1 auto;
    min-height: 0;
    padding: 1.25rem 1.35rem 1.5rem;
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
}

.pricing-page .pricing-checks-modal-body[b-gcwgev85l3]::-webkit-scrollbar {
    width: 6px;
}

.pricing-page .pricing-checks-modal-body[b-gcwgev85l3]::-webkit-scrollbar-track {
    background: transparent;
}

.pricing-page .pricing-checks-modal-body[b-gcwgev85l3]::-webkit-scrollbar-thumb {
    background: var(--accent-border);
    border-radius: 3px;
}

.pricing-page .pricing-check-category[b-gcwgev85l3] {
    margin-bottom: 1.75rem;
    padding: 1.1rem 1.15rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--accent-border-sub);
}

.pricing-page .pricing-check-category:last-child[b-gcwgev85l3] {
    margin-bottom: 0;
}

.pricing-page .pricing-check-category-dot[b-gcwgev85l3] {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
    flex-shrink: 0;
}

.pricing-page .pricing-check-category-head h3[b-gcwgev85l3] {
    color: var(--text-primary);
}

.pricing-page .pricing-check-category-badge[b-gcwgev85l3] {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    background: var(--accent-fill-dim);
    color: var(--accent-light);
    border: 1px solid var(--accent-border);
}

.pricing-page .pricing-check-category-head[b-gcwgev85l3] {
    flex-wrap: wrap;
}

.pricing-page .pricing-check-lines[b-gcwgev85l3] {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.pricing-page .pricing-check-line[b-gcwgev85l3] {
    font-size: 0.84rem;
    line-height: 1.45;
    color: var(--text-secondary);
}

.pricing-page .pricing-check-line-icon[b-gcwgev85l3] {
    font-size: 0.95rem;
    color: var(--accent);
    margin-top: 0.15rem;
}

.pricing-page .pricing-check-line-text[b-gcwgev85l3] {
    flex: 1;
    min-width: 0;
}

.pricing-page .pricing-checks-empty-icon[b-gcwgev85l3] {
    display: inline-flex;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--accent-fill-dim);
    border: 1px solid var(--accent-border);
    color: var(--accent);
    font-size: 1.35rem;
}

.pricing-page .pricing-checks-empty p:first-of-type[b-gcwgev85l3] {
    color: var(--text-primary);
}

/* ─── Per-subscription note ──────────────────────────────── */
.pricing-page .pricing-per-sub-note[b-gcwgev85l3] {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-light);
    letter-spacing: 0.02em;
}

/* ─── AI Add-on card ─────────────────────────────────────── */
.pricing-page .pricing-addon-card[b-gcwgev85l3] {
    background: linear-gradient(145deg, #0f172a 0%, #0a0f1a 100%);
    border: 1px solid var(--accent-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.08), 0 0 40px rgba(14, 165, 233, 0.06);
}

.pricing-page .pricing-addon-header[b-gcwgev85l3] {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem 2rem 1.25rem;
    border-bottom: 1px solid var(--accent-border-sub);
    flex-wrap: wrap;
}

.pricing-page .pricing-addon-icon[b-gcwgev85l3] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 10px;
    background: var(--accent-fill-dim);
    border: 1px solid var(--accent-border);
    color: var(--accent);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.pricing-page .pricing-addon-features[b-gcwgev85l3] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem 2rem;
}

.pricing-page .pricing-addon-feature[b-gcwgev85l3] {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.pricing-page .pricing-addon-feature-icon[b-gcwgev85l3] {
    font-size: 1.1rem;
    color: var(--accent);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.pricing-page .pricing-addon-footer[b-gcwgev85l3] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1.25rem 2rem 1.75rem;
    border-top: 1px solid var(--accent-border-sub);
}
/* /Components/Pages/Privacy.razor.rz.scp.css */
.page-container[b-ibfg4xa0n0] { max-width: 720px; margin: auto; padding: 4rem 1.5rem; }
h1[b-ibfg4xa0n0], h2[b-ibfg4xa0n0] { color: var(--text-primary); }
p[b-ibfg4xa0n0], li[b-ibfg4xa0n0] { color: var(--text-secondary); }
a[b-ibfg4xa0n0] { color: var(--accent); }
/* /Components/Pages/Register.razor.rz.scp.css */
.page-container[b-lwy8iyeznb] { max-width: 720px; margin: auto; padding: 4rem 1.5rem; }
h1[b-lwy8iyeznb], h2[b-lwy8iyeznb] { color: var(--text-primary); }
p[b-lwy8iyeznb], li[b-lwy8iyeznb] { color: var(--text-secondary); }
a[b-lwy8iyeznb] { color: var(--accent); }

.register-card[b-lwy8iyeznb] {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--accent-border);
    border-radius: 16px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.form-control[b-lwy8iyeznb] {
    background: var(--bg-surface);
    color: var(--text-primary);
    border-color: var(--accent-border);
}

.form-control:focus[b-lwy8iyeznb] {
    background: var(--bg-surface);
    color: var(--text-primary);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.25);
}

.form-label[b-lwy8iyeznb] {
    color: var(--text-secondary);
}
/* /Components/Pages/Security.razor.rz.scp.css */
.page-container[b-5g72d991mq] { max-width: 720px; margin: auto; padding: 4rem 1.5rem; }
h1[b-5g72d991mq], h2[b-5g72d991mq] { color: var(--text-primary); }
p[b-5g72d991mq], li[b-5g72d991mq] { color: var(--text-secondary); }
a[b-5g72d991mq] { color: var(--accent); }
/* /Components/Pages/Terms.razor.rz.scp.css */
.page-container[b-zifo8tok07] { max-width: 720px; margin: auto; padding: 4rem 1.5rem; }
h1[b-zifo8tok07], h2[b-zifo8tok07] { color: var(--text-primary); }
p[b-zifo8tok07], li[b-zifo8tok07] { color: var(--text-secondary); }
a[b-zifo8tok07] { color: var(--accent); }
