/* /Components/Contact/ContactForm.razor.rz.scp.css */
/* Contact-form styling lives in wwwroot/app.css (global), NOT here.
   Blazor CSS isolation does not add a scope attribute to elements rendered by
   child components (EditForm -> <form>, InputText -> <input>), so scoped rules
   for .contact-form / .input never matched. Keep these styles global. */
/* /Components/Layout/Logo.razor.rz.scp.css */
.logo[b-dw7rojgi0w] {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: 1.4rem;
    transition: opacity 200ms ease;
}

.logo:hover[b-dw7rojgi0w] {
    opacity: 0.9;
}

.logo__mark[b-dw7rojgi0w] {
    display: inline-flex;
    align-items: baseline;
}

.logo__num[b-dw7rojgi0w],
.logo__it[b-dw7rojgi0w] {
    color: var(--ink-800);
}

.logo__brace[b-dw7rojgi0w] {
    color: var(--violet-500);
    font-family: var(--font-mono);
    font-weight: 600;
    margin-inline: 0.02em;
}

.logo__node[b-dw7rojgi0w] {
    color: var(--violet-600);
}

/* Light-on-dark variant */
.logo--inverse .logo__num[b-dw7rojgi0w],
.logo--inverse .logo__it[b-dw7rojgi0w] {
    color: #ffffff;
}

.logo--inverse .logo__node[b-dw7rojgi0w] {
    color: var(--violet-500);
}

.logo--inverse .logo__brace[b-dw7rojgi0w] {
    color: var(--violet-200);
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-4amqd86tf3] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-4amqd86tf3] {
    flex: 1 0 auto;
    outline: none;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-wtxes0e9kn],
.components-reconnect-repeated-attempt-visible[b-wtxes0e9kn],
.components-reconnect-failed-visible[b-wtxes0e9kn],
.components-pause-visible[b-wtxes0e9kn],
.components-resume-failed-visible[b-wtxes0e9kn],
.components-rejoining-animation[b-wtxes0e9kn] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-wtxes0e9kn],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-wtxes0e9kn],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-wtxes0e9kn],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-wtxes0e9kn],
#components-reconnect-modal.components-reconnect-retrying[b-wtxes0e9kn],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-wtxes0e9kn],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-wtxes0e9kn],
#components-reconnect-modal.components-reconnect-failed[b-wtxes0e9kn],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-wtxes0e9kn] {
    display: block;
}


#components-reconnect-modal[b-wtxes0e9kn] {
    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-wtxes0e9kn 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-wtxes0e9kn 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-wtxes0e9kn 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-wtxes0e9kn]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-wtxes0e9kn 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-wtxes0e9kn {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-wtxes0e9kn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-wtxes0e9kn {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-wtxes0e9kn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-wtxes0e9kn] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-wtxes0e9kn] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-wtxes0e9kn] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-wtxes0e9kn] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-wtxes0e9kn] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-wtxes0e9kn] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-wtxes0e9kn 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-wtxes0e9kn] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-wtxes0e9kn {
    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/Layout/SiteFooter.razor.rz.scp.css */
.site-footer[b-863asuvw72] {
    padding-block: var(--space-12) var(--space-6);
    background: var(--ink-900);
    color: var(--slate-300);
}

.site-footer__inner[b-863asuvw72] {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    padding-bottom: var(--space-10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__brand[b-863asuvw72] {
    max-width: 30rem;
}

.site-footer__tagline[b-863asuvw72] {
    margin-top: 1rem;
    font-size: var(--text-lg);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
}

.site-footer__note[b-863asuvw72] {
    margin-top: 0.75rem;
    font-size: var(--text-sm);
    line-height: 1.6;
    color: var(--slate-400);
}

.site-footer__nav[b-863asuvw72] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.site-footer__heading[b-863asuvw72] {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 1rem;
}

.site-footer__col ul[b-863asuvw72] {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.site-footer__col a[b-863asuvw72] {
    color: var(--slate-300);
    font-size: var(--text-sm);
    transition: color var(--transition);
}

.site-footer__col a:hover[b-863asuvw72] {
    color: #fff;
}

.site-footer__bar[b-863asuvw72] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: var(--space-6);
    font-size: var(--text-xs);
    color: var(--slate-400);
}

.site-footer__meta[b-863asuvw72] {
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
}

@media (max-width: 720px) {
    .site-footer__inner[b-863asuvw72] {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}
/* /Components/Layout/SiteHeader.razor.rz.scp.css */
.site-header[b-yn6g1scivc] {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--border);
}

.site-header__inner[b-yn6g1scivc] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: var(--header-h);
}

.site-nav[b-yn6g1scivc] {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-nav__list[b-yn6g1scivc] {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.site-nav__link[b-yn6g1scivc] {
    color: var(--slate-600);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color var(--transition);
    position: relative;
}

.site-nav__link[b-yn6g1scivc]::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--violet-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.site-nav__link:hover[b-yn6g1scivc] {
    color: var(--ink-800);
}

.site-nav__link:hover[b-yn6g1scivc]::after {
    transform: scaleX(1);
}

.nav-toggle[b-yn6g1scivc] {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
}

.nav-toggle__bar[b-yn6g1scivc] {
    display: block;
    width: 18px;
    height: 2px;
    margin-inline: auto;
    background: var(--ink-700);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1)[b-yn6g1scivc] {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2)[b-yn6g1scivc] {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3)[b-yn6g1scivc] {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile ---- */
@media (max-width: 900px) {
    .nav-toggle[b-yn6g1scivc] {
        display: flex;
    }

    .site-nav[b-yn6g1scivc] {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
        background: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms;
    }

    .site-nav.is-open[b-yn6g1scivc] {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .site-nav__list[b-yn6g1scivc] {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
    }

    .site-nav__link[b-yn6g1scivc] {
        display: block;
        padding: 0.75rem 0.25rem;
        font-size: var(--text-base);
        border-bottom: 1px solid var(--border);
    }

    .site-nav__link[b-yn6g1scivc]::after {
        display: none;
    }

    .site-nav__cta[b-yn6g1scivc] {
        width: 100%;
        margin-top: 0.5rem;
    }
}
/* /Components/Pages/Lease.razor.rz.scp.css */
/* Lease Software as a Service — scoped styles. Reuses the global design system
   (tokens, .container, .btn, .eyebrow, .chip …); everything here is page-local
   layout on the ls-* elements this page owns. Mirrors the Solutions (cs-*) page
   so the two product/service pages feel like one family. */

/* ---- Hero ------------------------------------------------------------- */
.ls-hero[b-4bltvmzsem] {
    position: relative;
    padding-block: clamp(4.5rem, 9vw, 8rem) var(--section-y);
    overflow: hidden;
    text-align: center;
}

.ls-hero__halo[b-4bltvmzsem] {
    position: absolute;
    inset: 0;
    background: var(--grad-halo);
    pointer-events: none;
}

.ls-hero__inner[b-4bltvmzsem] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.ls-hero__chip[b-4bltvmzsem] {
    margin-bottom: var(--space-2);
}

.ls-hero__title[b-4bltvmzsem] {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.ls-hero__tagline[b-4bltvmzsem] {
    font-size: clamp(1.25rem, 2.4vw, 1.7rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink-700);
}

.ls-hero__lead[b-4bltvmzsem] {
    max-width: 44rem;
}

.ls-hero__actions[b-4bltvmzsem] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: var(--space-4);
}

/* ---- Intro ------------------------------------------------------------ */
.ls-intro__inner[b-4bltvmzsem] {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
    align-items: center;
}

.ls-intro em[b-4bltvmzsem] {
    font-style: normal;
    font-weight: 700;
    color: var(--ink-700);
}

/* ---- Benefits grid ---------------------------------------------------- */
.ls-grid[b-4bltvmzsem] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.ls-card[b-4bltvmzsem] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.ls-card:hover[b-4bltvmzsem] {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--violet-200);
}

.ls-card__icon[b-4bltvmzsem] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: var(--radius-md);
    background: var(--violet-50);
    border: 1px solid var(--violet-100);
    color: var(--violet-600);
    margin-bottom: 0.5rem;
}

.ls-card__title[b-4bltvmzsem] {
    font-size: var(--text-lg);
    font-weight: 700;
}

.ls-card p[b-4bltvmzsem] {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.55;
}

/* ---- How it works (steps) --------------------------------------------- */
.ls-steps[b-4bltvmzsem] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.ls-step[b-4bltvmzsem] {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
}

.ls-step__num[b-4bltvmzsem] {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--violet-500);
}

.ls-step__icon[b-4bltvmzsem] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: var(--radius-sm);
    background: var(--grad-accent);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.ls-step__title[b-4bltvmzsem] {
    font-size: var(--text-base);
    font-weight: 700;
}

.ls-step p[b-4bltvmzsem] {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.55;
}

/* Connecting arrows between steps on wide screens. */
.ls-step:not(:last-child)[b-4bltvmzsem]::after {
    content: "";
    position: absolute;
    top: 3.15rem;
    right: -0.85rem;
    width: 0.7rem;
    height: 0.7rem;
    border-top: 2px solid var(--violet-200);
    border-right: 2px solid var(--violet-200);
    transform: rotate(45deg);
}

/* ---- Lease vs. buy ---------------------------------------------------- */
.ls-compare__grid[b-4bltvmzsem] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 56rem;
    margin-inline: auto;
}

.ls-plan[b-4bltvmzsem] {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
}

.ls-plan--featured[b-4bltvmzsem] {
    border-color: var(--violet-200);
    box-shadow: var(--shadow-md);
    background: var(--violet-50);
}

.ls-plan__head[b-4bltvmzsem] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ls-plan__icon[b-4bltvmzsem] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: var(--radius-sm);
    background: var(--surface-2, #f2f3f8);
    border: 1px solid var(--border);
    color: var(--text-muted);
    flex-shrink: 0;
}

.ls-plan__icon--featured[b-4bltvmzsem] {
    background: var(--grad-accent);
    border: none;
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.ls-plan__title[b-4bltvmzsem] {
    font-size: var(--text-lg);
    font-weight: 700;
}

.ls-points[b-4bltvmzsem] {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ls-points li[b-4bltvmzsem] {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.5;
}

.ls-points__mark[b-4bltvmzsem] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 999px;
    background: var(--violet-100);
    color: var(--violet-700);
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.ls-points__mark--muted[b-4bltvmzsem] {
    background: var(--surface-2, #eceef5);
    color: var(--text-faint);
}

/* ---- CTA -------------------------------------------------------------- */
.ls-cta__inner[b-4bltvmzsem] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-4);
}

.ls-cta__lead[b-4bltvmzsem] {
    max-width: 34rem;
    color: #c5cbe0;
    font-size: var(--text-lg);
    line-height: 1.55;
}

.ls-cta__actions[b-4bltvmzsem] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: var(--space-2);
}

.ls-cta__back[b-4bltvmzsem] {
    color: #c5cbe0;
}

.ls-cta__back:hover[b-4bltvmzsem] {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* ---- Responsive ------------------------------------------------------- */
@media (max-width: 960px) {
    .ls-grid[b-4bltvmzsem] {
        grid-template-columns: 1fr 1fr;
    }
    .ls-steps[b-4bltvmzsem] {
        grid-template-columns: 1fr 1fr;
    }
    .ls-step:not(:last-child)[b-4bltvmzsem]::after {
        display: none;
    }
}

@media (max-width: 560px) {
    .ls-grid[b-4bltvmzsem],
    .ls-steps[b-4bltvmzsem],
    .ls-compare__grid[b-4bltvmzsem] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Solutions.razor.rz.scp.css */
/* CloudSpector product page — scoped styles. Reuses the global design system
   (tokens, .container, .card, .btn, .eyebrow …); everything here is page-local
   layout on the cs-* elements this page owns. */

/* ---- Hero ------------------------------------------------------------- */
.cs-hero[b-1rizvrf4ox] {
    position: relative;
    padding-block: clamp(4.5rem, 9vw, 8rem) var(--section-y);
    overflow: hidden;
    text-align: center;
}

.cs-hero__halo[b-1rizvrf4ox] {
    position: absolute;
    inset: 0;
    background: var(--grad-halo);
    pointer-events: none;
}

.cs-hero__inner[b-1rizvrf4ox] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.cs-hero__chip[b-1rizvrf4ox] {
    margin-bottom: var(--space-2);
}

.cs-hero__title[b-1rizvrf4ox] {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.cs-hero__tagline[b-1rizvrf4ox] {
    font-size: clamp(1.25rem, 2.4vw, 1.7rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink-700);
}

.cs-hero__lead[b-1rizvrf4ox] {
    max-width: 44rem;
}

.cs-hero__actions[b-1rizvrf4ox] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: var(--space-4);
}

/* ---- Intro ------------------------------------------------------------ */
.cs-intro__inner[b-1rizvrf4ox] {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
    align-items: center;
}

/* ---- Feature grid ----------------------------------------------------- */
.cs-grid[b-1rizvrf4ox] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.cs-card[b-1rizvrf4ox] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.75rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.cs-card:hover[b-1rizvrf4ox] {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--violet-200);
}

.cs-card__icon[b-1rizvrf4ox] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: var(--radius-md);
    background: var(--violet-50);
    border: 1px solid var(--violet-100);
    color: var(--violet-600);
    margin-bottom: 0.5rem;
}

.cs-card__title[b-1rizvrf4ox] {
    font-size: var(--text-lg);
    font-weight: 700;
}

.cs-card p[b-1rizvrf4ox] {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.55;
}

/* ---- How it works (steps) --------------------------------------------- */
.cs-steps[b-1rizvrf4ox] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    counter-reset: step;
}

.cs-step[b-1rizvrf4ox] {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
}

.cs-step__num[b-1rizvrf4ox] {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--violet-500);
}

.cs-step__icon[b-1rizvrf4ox] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: var(--radius-sm);
    background: var(--grad-accent);
    color: #fff;
    box-shadow: var(--shadow-sm);
}

.cs-step__title[b-1rizvrf4ox] {
    font-size: var(--text-base);
    font-weight: 700;
}

.cs-step p[b-1rizvrf4ox] {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.55;
}

/* Connecting arrows between steps on wide screens. */
.cs-step:not(:last-child)[b-1rizvrf4ox]::after {
    content: "";
    position: absolute;
    top: 3.15rem;
    right: -0.85rem;
    width: 0.7rem;
    height: 0.7rem;
    border-top: 2px solid var(--violet-200);
    border-right: 2px solid var(--violet-200);
    transform: rotate(45deg);
}

/* ---- Coverage --------------------------------------------------------- */
.cs-coverage__inner[b-1rizvrf4ox] {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.cs-coverage__copy[b-1rizvrf4ox] {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.cs-coverage__note[b-1rizvrf4ox] {
    font-size: var(--text-sm);
}

.cs-providers[b-1rizvrf4ox] {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.cs-provider[b-1rizvrf4ox] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
}

.cs-provider--live[b-1rizvrf4ox] {
    border-color: var(--violet-200);
    box-shadow: var(--shadow-sm);
}

.cs-provider__icon[b-1rizvrf4ox] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: var(--radius-sm);
    background: var(--violet-50);
    color: var(--violet-600);
    flex-shrink: 0;
}

.cs-provider__name[b-1rizvrf4ox] {
    font-weight: 600;
    color: var(--ink-700);
}

.cs-provider__status[b-1rizvrf4ox] {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    letter-spacing: 0.02em;
    color: var(--text-faint);
    white-space: nowrap;
}

.cs-provider__status--live[b-1rizvrf4ox] {
    color: var(--violet-700);
}

/* ---- Trust ------------------------------------------------------------ */
.cs-trust__card[b-1rizvrf4ox] {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    background: var(--violet-50);
    border: 1px solid var(--violet-100);
    border-radius: var(--radius-xl);
}

.cs-trust__icon[b-1rizvrf4ox] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid var(--violet-100);
    color: var(--violet-600);
    flex-shrink: 0;
}

.cs-trust__title[b-1rizvrf4ox] {
    margin-bottom: 0.5rem;
}

.cs-trust__card p[b-1rizvrf4ox] {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- CTA -------------------------------------------------------------- */
.cs-cta__inner[b-1rizvrf4ox] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-4);
}

.cs-cta__lead[b-1rizvrf4ox] {
    max-width: 34rem;
    color: #c5cbe0;
    font-size: var(--text-lg);
    line-height: 1.55;
}

.cs-cta__actions[b-1rizvrf4ox] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: var(--space-2);
}

.cs-cta__back[b-1rizvrf4ox] {
    color: #c5cbe0;
}

.cs-cta__back:hover[b-1rizvrf4ox] {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* ---- Responsive ------------------------------------------------------- */
@media (max-width: 960px) {
    .cs-grid[b-1rizvrf4ox] {
        grid-template-columns: 1fr 1fr;
    }
    .cs-steps[b-1rizvrf4ox] {
        grid-template-columns: 1fr 1fr;
    }
    .cs-step:not(:last-child)[b-1rizvrf4ox]::after {
        display: none;
    }
    .cs-coverage__inner[b-1rizvrf4ox] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .cs-grid[b-1rizvrf4ox],
    .cs-steps[b-1rizvrf4ox] {
        grid-template-columns: 1fr;
    }
    .cs-trust__card[b-1rizvrf4ox] {
        flex-direction: column;
    }
}
/* /Components/Sections/BestPracticesSection.razor.rz.scp.css */
.bp__grid[b-sch7ymzu70] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.bp__card[b-sch7ymzu70] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.bp__card:hover[b-sch7ymzu70] {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--violet-200);
}

.bp__icon[b-sch7ymzu70] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: var(--radius-sm);
    background: var(--violet-50);
    border: 1px solid var(--violet-100);
    color: var(--violet-600);
    margin-bottom: 0.4rem;
}

.bp__title[b-sch7ymzu70] {
    font-size: var(--text-base);
    font-weight: 700;
}

.bp__card p[b-sch7ymzu70] {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.55;
}

.bp__note[b-sch7ymzu70] {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 2.5rem auto 0;
    width: fit-content;
    padding: 0.75rem 1.25rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--slate-600);
    text-align: center;
}

@media (max-width: 860px) {
    .bp__grid[b-sch7ymzu70] {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 540px) {
    .bp__grid[b-sch7ymzu70] {
        grid-template-columns: 1fr;
    }
    .bp__note[b-sch7ymzu70] {
        display: flex;
    }
}
/* /Components/Sections/DesignVsRealitySection.razor.rz.scp.css */
.dvr__diagram[b-t6261chr4b] {
    max-width: 40rem;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.dvr__inputs[b-t6261chr4b] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.dvr__node[b-t6261chr4b] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    width: 100%;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
}

.dvr__node--ai[b-t6261chr4b] {
    background: linear-gradient(180deg, rgba(74, 134, 232, 0.24), rgba(74, 134, 232, 0.08));
    border-color: rgba(111, 160, 238, 0.5);
    box-shadow: 0 8px 40px rgba(74, 134, 232, 0.32);
}

.dvr__node--delta[b-t6261chr4b] {
    border-color: rgba(111, 160, 238, 0.35);
    background: rgba(111, 160, 238, 0.08);
}

.dvr__node--action[b-t6261chr4b] {
    background: #fff;
    border-color: #fff;
}

.dvr__node-icon[b-t6261chr4b] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
}

.dvr__node--action .dvr__node-icon[b-t6261chr4b] {
    background: var(--violet-50);
    border-color: var(--violet-100);
    color: var(--violet-600);
}

.dvr__node-icon--glow[b-t6261chr4b] {
    background: var(--grad-accent);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 24px rgba(111, 160, 238, 0.6);
}

.dvr__node-label[b-t6261chr4b] {
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.dvr__node--action .dvr__node-label[b-t6261chr4b] {
    color: var(--ink-800);
}

.dvr__node-sub[b-t6261chr4b] {
    font-size: var(--text-sm);
    color: rgba(197, 203, 224, 0.85);
}

.dvr__node--action .dvr__node-sub[b-t6261chr4b] {
    color: var(--text-muted);
}

.dvr__merge[b-t6261chr4b] {
    color: var(--violet-500);
    display: inline-flex;
}

@media (max-width: 520px) {
    .dvr__inputs[b-t6261chr4b] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Sections/EarlyAccessSection.razor.rz.scp.css */
.early[b-drgygvr8tj] {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-subtle) 0%, #fff 100%);
}

.early__halo[b-drgygvr8tj] {
    position: absolute;
    inset: -30% -10% auto auto;
    width: 60%;
    height: 80%;
    background: var(--grad-halo);
    pointer-events: none;
}

.early__inner[b-drgygvr8tj] {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
}

.early__copy .eyebrow[b-drgygvr8tj] {
    margin-bottom: 1rem;
}

.early__title[b-drgygvr8tj] {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    margin-bottom: 1.25rem;
}

.early__lead[b-drgygvr8tj] {
    max-width: 32rem;
    margin-bottom: 1.75rem;
}

.early__benefits[b-drgygvr8tj] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.early__benefits li[b-drgygvr8tj] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--ink-700);
    font-size: var(--text-base);
}

.early__tick[b-drgygvr8tj] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    background: var(--violet-50);
    border: 1px solid var(--violet-100);
    color: var(--violet-600);
    flex-shrink: 0;
}

.early__direct[b-drgygvr8tj] {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.early__mail[b-drgygvr8tj] {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: inherit;
    width: fit-content;
}

.early__mail-icon[b-drgygvr8tj] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: var(--radius-md);
    background: var(--violet-50);
    border: 1px solid var(--violet-100);
    color: var(--violet-600);
    flex-shrink: 0;
    transition: background var(--transition), border-color var(--transition);
}

.early__mail:hover .early__mail-icon[b-drgygvr8tj] {
    background: var(--violet-100);
    border-color: var(--violet-200);
}

.early__mail-text[b-drgygvr8tj] {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.early__mail-label[b-drgygvr8tj] {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.early__mail-addr[b-drgygvr8tj] {
    font-weight: 600;
    color: var(--ink-700);
}

.early__mail:hover .early__mail-addr[b-drgygvr8tj] {
    color: var(--violet-700);
}

.early__reply[b-drgygvr8tj] {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
}

.early__card[b-drgygvr8tj] {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
    .early__inner[b-drgygvr8tj] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Sections/HeroSection.razor.rz.scp.css */
.hero[b-zagp9zcbfb] {
    position: relative;
    padding-block: clamp(5rem, 12vh, 9rem) clamp(3.5rem, 7vw, 6rem);
    overflow: hidden;
    background: var(--grad-surface);
    isolation: isolate;
}

/* Living node-network background — sits behind everything in the hero. */
.hero__canvas[b-zagp9zcbfb] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.hero__halo[b-zagp9zcbfb] {
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 70%;
    background: var(--grad-halo);
    pointer-events: none;
    z-index: -1;
}

.hero__inner[b-zagp9zcbfb] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 56rem;
}

.hero__chip[b-zagp9zcbfb] {
    margin-bottom: 1.75rem;
}

.hero__chip-dot[b-zagp9zcbfb] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(74, 134, 232, 0.18);
}

/* ---- Typewriter headline ---- */
.hero__title[b-zagp9zcbfb] {
    margin-bottom: 1.5rem;
    /* Reserve height for two lines so the cycling text never shifts the page. */
    min-height: calc(2em * 1.04);
    display: flex;
    align-items: center;
    justify-content: center;
}

.typewriter[b-zagp9zcbfb] {
    display: inline;
}

.typewriter__text[b-zagp9zcbfb] {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.typewriter__caret[b-zagp9zcbfb] {
    display: inline-block;
    width: 3px;
    height: 0.92em;
    margin-left: 0.06em;
    transform: translateY(0.12em);
    background: var(--blue-600);
    border-radius: 2px;
    animation: caret-blink-b-zagp9zcbfb 1s steps(1) infinite;
}

@keyframes caret-blink-b-zagp9zcbfb {
    0%, 50% { opacity: 1; }
    50.01%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .typewriter__caret[b-zagp9zcbfb] { animation: none; opacity: 1; }
}

.hero__lead[b-zagp9zcbfb] {
    max-width: 40rem;
    margin-bottom: 2.25rem;
    color: var(--slate-600);
}

.hero__actions[b-zagp9zcbfb] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 3rem;
}

/* ---- Capability markers (screenshot's stat row, without invented numbers) ---- */
.hero__markers[b-zagp9zcbfb] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(1.75rem, 5vw, 3.5rem);
}

.hero__marker[b-zagp9zcbfb] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.hero__marker-value[b-zagp9zcbfb] {
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero__marker-label[b-zagp9zcbfb] {
    font-size: var(--text-sm);
    color: var(--text-faint);
}

@media (max-width: 560px) {
    .hero__markers[b-zagp9zcbfb] {
        gap: 1.25rem 2rem;
    }
}
/* /Components/Sections/PillarsSection.razor.rz.scp.css */
.pillars__grid[b-f6m4l8xe51] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.pillar[b-f6m4l8xe51] {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
}

.pillar[b-f6m4l8xe51]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--grad-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.pillar:hover[b-f6m4l8xe51]::before {
    transform: scaleX(1);
}

.pillar__index[b-f6m4l8xe51] {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--violet-200);
    font-weight: 600;
}

.pillar__title[b-f6m4l8xe51] {
    font-size: var(--text-lg);
    line-height: 1.25;
}

.pillar p[b-f6m4l8xe51] {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.55;
}

.pillars__loop[b-f6m4l8xe51] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.pillars__loop svg[b-f6m4l8xe51] {
    color: var(--blue-600);
}

.pillars__loop strong[b-f6m4l8xe51] {
    color: var(--ink-700);
    font-weight: 600;
}

@media (max-width: 1040px) {
    .pillars__grid[b-f6m4l8xe51] {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 540px) {
    .pillars__grid[b-f6m4l8xe51] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Sections/PricingSection.razor.rz.scp.css */
.pricing__inner[b-4cg5ytl8jq] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

.pricing__statement .eyebrow[b-4cg5ytl8jq] {
    margin-bottom: 1rem;
}

.pricing__statement .h2[b-4cg5ytl8jq] {
    margin-bottom: 1rem;
}

.pricing__pending[b-4cg5ytl8jq] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.6rem 1rem;
    background: var(--bg-subtle);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-md);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--slate-600);
}

.pricing__pending svg[b-4cg5ytl8jq] {
    color: var(--violet-600);
}

.pricing__principles[b-4cg5ytl8jq] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing__principle[b-4cg5ytl8jq] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: background var(--transition), border-color var(--transition);
}

.pricing__principle:hover[b-4cg5ytl8jq] {
    background: var(--violet-50);
    border-color: var(--violet-100);
}

.pricing__check[b-4cg5ytl8jq] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: var(--grad-accent);
    color: #fff;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing__principle strong[b-4cg5ytl8jq] {
    display: block;
    color: var(--ink-800);
    margin-bottom: 0.2rem;
    letter-spacing: -0.01em;
}

.pricing__principle p[b-4cg5ytl8jq] {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .pricing__inner[b-4cg5ytl8jq] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Sections/ProblemSection.razor.rz.scp.css */
.problem__grid[b-pw9uqza9aw] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.problem__card[b-pw9uqza9aw] {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.problem__card:hover[b-pw9uqza9aw] {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.problem__icon[b-pw9uqza9aw] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: var(--radius-sm);
    background: var(--bg-muted);
    color: var(--slate-600);
    margin-bottom: 1rem;
}

.problem__title[b-pw9uqza9aw] {
    font-size: var(--text-lg);
    margin-bottom: 0.4rem;
}

.problem__card p[b-pw9uqza9aw] {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: 1.55;
}

.problem__closing[b-pw9uqza9aw] {
    max-width: 44rem;
    margin: 2.5rem auto 0;
    text-align: center;
    font-size: var(--text-xl);
    line-height: 1.5;
    color: var(--ink-700);
}

.problem__closing strong[b-pw9uqza9aw] {
    color: var(--ink-800);
}

.problem__closing em[b-pw9uqza9aw] {
    font-style: normal;
    color: var(--violet-700);
    font-weight: 600;
}

@media (max-width: 860px) {
    .problem__grid[b-pw9uqza9aw] {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .problem__grid[b-pw9uqza9aw] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Sections/RoadmapSection.razor.rz.scp.css */
.roadmap__timeline[b-zu2au1nmml] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
}

.roadmap__phase[b-zu2au1nmml] {
    display: flex;
    flex-direction: column;
}

.roadmap__marker[b-zu2au1nmml] {
    position: relative;
    height: 2rem;
    margin-bottom: 0.75rem;
}

.roadmap__marker[b-zu2au1nmml]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-strong);
    transform: translateY(-50%);
}

.roadmap__phase:first-child .roadmap__marker[b-zu2au1nmml]::before {
    left: 50%;
}

.roadmap__phase:last-child .roadmap__marker[b-zu2au1nmml]::before {
    right: 50%;
}

.roadmap__marker span[b-zu2au1nmml] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--violet-500);
    z-index: 1;
}

.roadmap__phase:first-child .roadmap__marker span[b-zu2au1nmml] {
    background: var(--violet-600);
}

.roadmap__card[b-zu2au1nmml] {
    flex: 1;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-xs);
    transition: transform var(--transition), box-shadow var(--transition);
}

.roadmap__card:hover[b-zu2au1nmml] {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.roadmap__head[b-zu2au1nmml] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.roadmap__num[b-zu2au1nmml] {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-500);
}

.roadmap__status[b-zu2au1nmml] {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-pill);
    background: var(--bg-muted);
    border: 1px solid var(--border);
    color: var(--slate-500);
}

.roadmap__status--next[b-zu2au1nmml] {
    background: var(--violet-50);
    border-color: var(--violet-100);
    color: var(--violet-700);
}

.roadmap__title[b-zu2au1nmml] {
    font-size: var(--text-lg);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.roadmap__list[b-zu2au1nmml] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.roadmap__list li[b-zu2au1nmml] {
    position: relative;
    padding-left: 1rem;
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.45;
}

.roadmap__list li[b-zu2au1nmml]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--violet-400, var(--violet-500));
}

@media (max-width: 960px) {
    .roadmap__timeline[b-zu2au1nmml] {
        grid-template-columns: 1fr 1fr;
    }
    .roadmap__marker[b-zu2au1nmml] {
        display: none;
    }
}

@media (max-width: 560px) {
    .roadmap__timeline[b-zu2au1nmml] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Sections/ShiftLeftSection.razor.rz.scp.css */
.shiftleft__inner[b-70fqobjwqk] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

.shiftleft__copy .eyebrow[b-70fqobjwqk] {
    margin-bottom: 1rem;
}

.shiftleft__copy .h2[b-70fqobjwqk] {
    margin-bottom: 1rem;
}

.shiftleft__body[b-70fqobjwqk] {
    margin-top: 1rem;
}

.shiftleft__highlight[b-70fqobjwqk] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.75rem;
    padding: 1rem 1.25rem;
    background: var(--violet-50);
    border: 1px solid var(--violet-100);
    border-radius: var(--radius-md);
    color: var(--violet-700);
    font-size: var(--text-sm);
    line-height: 1.5;
}

.shiftleft__highlight svg[b-70fqobjwqk] {
    flex-shrink: 0;
    margin-top: 1px;
}

/* Vertical flow */
.flow[b-70fqobjwqk] {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 0.5rem;
}

.flow__step[b-70fqobjwqk] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
}

.flow__step:not(:last-child)[b-70fqobjwqk]::after {
    content: "";
    position: absolute;
    left: 2.15rem;
    bottom: -1.05rem;
    height: 1rem;
    width: 2px;
    background: var(--border-strong);
    z-index: 0;
}

.flow__step--mark[b-70fqobjwqk] {
    border-color: var(--violet-200);
    box-shadow: var(--shadow-glow);
}

.flow__node[b-70fqobjwqk] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--grad-accent);
    color: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.flow__text[b-70fqobjwqk] {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.flow__text strong[b-70fqobjwqk] {
    color: var(--ink-800);
    letter-spacing: -0.01em;
}

.flow__text span[b-70fqobjwqk] {
    font-size: var(--text-sm);
    color: var(--text-faint);
}

.flow__flag[b-70fqobjwqk] {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--violet-700);
    background: var(--violet-50);
    border: 1px solid var(--violet-100);
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

@media (max-width: 900px) {
    .shiftleft__inner[b-70fqobjwqk] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Sections/SolutionSection.razor.rz.scp.css */
.compare[b-uqh6kn3d8f] {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 1rem;
}

.compare__card[b-uqh6kn3d8f] {
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.compare__card--old[b-uqh6kn3d8f] {
    background: var(--bg-muted);
    border: 1px solid var(--border);
    color: var(--slate-600);
}

.compare__card--new[b-uqh6kn3d8f] {
    position: relative;
    background: linear-gradient(180deg, #fff 0%, var(--violet-50) 100%);
    border: 1px solid var(--violet-200);
    box-shadow: var(--shadow-glow);
}

.compare__tag[b-uqh6kn3d8f] {
    align-self: flex-start;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-500);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-pill);
    background: #fff;
    border: 1px solid var(--border);
}

.compare__tag--accent[b-uqh6kn3d8f] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--violet-700);
    background: #fff;
    border-color: var(--violet-200);
}

.compare__quote[b-uqh6kn3d8f] {
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--slate-500);
}

.compare__quote--accent[b-uqh6kn3d8f] {
    color: var(--ink-800);
}

.compare__list[b-uqh6kn3d8f] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    /* Start both lists at the same height so "Idea" lines up with "Idea".
       (No margin-top:auto — that bottom-aligned the unequal-length lists.) */
}

.compare__list li[b-uqh6kn3d8f] {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: var(--text-sm);
    line-height: 1.45;
}

.compare__list svg[b-uqh6kn3d8f] {
    margin-top: 1px;
    color: var(--slate-400);
    flex-shrink: 0;
}

.compare__list--accent li[b-uqh6kn3d8f] {
    color: var(--ink-700);
}

.compare__list--accent svg[b-uqh6kn3d8f] {
    color: var(--violet-600);
}

.compare__divider[b-uqh6kn3d8f] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare__vs[b-uqh6kn3d8f] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--slate-500);
}

@media (max-width: 820px) {
    .compare[b-uqh6kn3d8f] {
        grid-template-columns: 1fr;
    }

    .compare__divider[b-uqh6kn3d8f] {
        padding-block: 0.25rem;
    }
}
/* /Components/Sections/TeamSection.razor.rz.scp.css */
.team__inner[b-cnv01iduho] {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

.team__copy .eyebrow[b-cnv01iduho] {
    margin-bottom: 1rem;
}

.team__quote[b-cnv01iduho] {
    font-size: clamp(1.75rem, 3.2vw, 2.4rem);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.team__chips[b-cnv01iduho] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.75rem;
}

.team__visual[b-cnv01iduho] {
    display: flex;
    justify-content: center;
}

.team__nodes[b-cnv01iduho] {
    width: 100%;
    max-width: 22rem;
    height: auto;
    overflow: visible;
}

.team__edges line[b-cnv01iduho] {
    stroke: var(--violet-200);
    stroke-width: 1.5;
}

.team__dots circle[b-cnv01iduho] {
    fill: #fff;
    stroke: var(--violet-500);
    stroke-width: 2;
}

.team__dots .team__dot--accent[b-cnv01iduho] {
    fill: var(--violet-600);
    stroke: var(--violet-600);
}

/* gentle float */
.team__dots circle[b-cnv01iduho] {
    transform-box: fill-box;
    transform-origin: center;
    animation: floaty-b-cnv01iduho 6s ease-in-out infinite;
}

.team__dots circle:nth-child(2)[b-cnv01iduho] { animation-delay: -1.2s; }
.team__dots circle:nth-child(3)[b-cnv01iduho] { animation-delay: -2.4s; }
.team__dots circle:nth-child(4)[b-cnv01iduho] { animation-delay: -3.6s; }
.team__dots circle:nth-child(5)[b-cnv01iduho] { animation-delay: -0.6s; }
.team__dots circle:nth-child(6)[b-cnv01iduho] { animation-delay: -4.8s; }

@keyframes floaty-b-cnv01iduho {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@media (prefers-reduced-motion: reduce) {
    .team__dots circle[b-cnv01iduho] {
        animation: none;
    }
}

@media (max-width: 820px) {
    .team__inner[b-cnv01iduho] {
        grid-template-columns: 1fr;
    }
    .team__visual[b-cnv01iduho] {
        order: -1;
    }
    .team__nodes[b-cnv01iduho] {
        max-width: 16rem;
    }
}
