/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-p57714p7z8] {
    display: none;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    align-items: center;
    gap: 0.75rem;
    max-width: min(32rem, calc(100vw - 2rem));
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.9rem;
    background: rgba(12, 15, 21, 0.92);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    color: #f5f7fb;
    z-index: 1000;
}

#blazor-error-ui .reload[b-p57714p7z8],
#blazor-error-ui .dismiss[b-p57714p7z8] {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #f5f7fb;
    cursor: pointer;
    font: inherit;
    padding: 0.45rem 0.85rem;
    text-decoration: none;
}

#blazor-error-ui .dismiss[b-p57714p7z8] {
    margin-left: auto;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-jmv8ispswh],
.components-reconnect-repeated-attempt-visible[b-jmv8ispswh],
.components-reconnect-failed-visible[b-jmv8ispswh],
.components-pause-visible[b-jmv8ispswh],
.components-resume-failed-visible[b-jmv8ispswh],
.components-rejoining-animation[b-jmv8ispswh] {
    display: none;
}

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


#components-reconnect-modal[b-jmv8ispswh] {
    width: min(24rem, calc(100vw - 2rem));
    margin: 20vh auto;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: rgba(11, 14, 19, 0.94);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    opacity: 0;
    color: #f5f7fb;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-jmv8ispswh 0.5s both;
    &[open]

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

}

#components-reconnect-modal[b-jmv8ispswh]::backdrop {
    background-color: rgba(3, 5, 9, 0.72);
    animation: components-reconnect-modal-fadeInOpacity-b-jmv8ispswh 0.5s ease-in-out;
    opacity: 1;
}

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

#components-reconnect-modal button[b-jmv8ispswh] {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(154, 213, 255, 0.22), rgba(154, 213, 255, 0.12));
    color: #f5f7fb;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
}

#components-reconnect-modal button:hover[b-jmv8ispswh] {
    background: linear-gradient(180deg, rgba(154, 213, 255, 0.3), rgba(154, 213, 255, 0.18));
}

#components-reconnect-modal button:active[b-jmv8ispswh] {
    background: linear-gradient(180deg, rgba(154, 213, 255, 0.22), rgba(154, 213, 255, 0.12));
}

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

    .components-rejoining-animation div[b-jmv8ispswh] {
        position: absolute;
        border: 3px solid rgba(154, 213, 255, 0.88);
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-jmv8ispswh 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

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

@keyframes components-rejoining-animation-b-jmv8ispswh {
    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/Dashboard.razor.rz.scp.css */
.dashboard-page[b-w1sihkjg6o] {
    min-height: 100vh;
    padding: 1.35rem 0 2rem;
}

.dashboard-shell[b-w1sihkjg6o] {
    width: min(1260px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.6rem;
    background:
        linear-gradient(180deg, rgba(13, 16, 22, 0.96), rgba(8, 10, 15, 0.98)),
        rgba(9, 11, 16, 0.96);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.dashboard-shell__header[b-w1sihkjg6o],
.dashboard-shell__hero[b-w1sihkjg6o],
.dashboard-grid[b-w1sihkjg6o] {
    position: relative;
}

.dashboard-shell__header[b-w1sihkjg6o] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
}

.dashboard-shell__brand[b-w1sihkjg6o] {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 1rem;
    color: var(--color-text);
    text-decoration: none;
}

.dashboard-shell__brand-mark[b-w1sihkjg6o] {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 0.24rem;
    background: linear-gradient(180deg, rgba(154, 213, 255, 1), rgba(154, 213, 255, 0.58));
    box-shadow: 0 0 0 0.4rem rgba(154, 213, 255, 0.08);
}

.dashboard-shell__brand-name[b-w1sihkjg6o] {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 650;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.dashboard-shell__nav[b-w1sihkjg6o] {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    padding: 0.4rem;
}

.dashboard-shell__nav-link[b-w1sihkjg6o] {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.7rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-text-muted);
    text-decoration: none;
}

.dashboard-shell__nav-link--active[b-w1sihkjg6o] {
    border-color: rgba(154, 213, 255, 0.24);
    background: rgba(154, 213, 255, 0.08);
    color: var(--color-text);
}

.dashboard-shell__hero[b-w1sihkjg6o] {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem 0.35rem 1.5rem;
}

.dashboard-shell__eyebrow[b-w1sihkjg6o],
.dashboard-panel__eyebrow[b-w1sihkjg6o],
.dashboard-shell__status-label[b-w1sihkjg6o] {
    margin: 0;
    color: var(--color-accent);
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.dashboard-shell__title[b-w1sihkjg6o] {
    margin: 0.6rem 0 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.dashboard-shell__summary[b-w1sihkjg6o] {
    max-width: 44rem;
    margin: 1rem 0 0;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.dashboard-shell__status[b-w1sihkjg6o] {
    min-width: 17rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background:
        radial-gradient(circle at top right, rgba(154, 213, 255, 0.14), transparent 56%),
        rgba(255, 255, 255, 0.03);
}

.dashboard-shell__status-value[b-w1sihkjg6o] {
    margin: 0.7rem 0 0;
    color: var(--color-text);
    font-size: 1.05rem;
    font-weight: 620;
    letter-spacing: -0.02em;
}

.dashboard-shell__identity[b-w1sihkjg6o] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-shell__identity-label[b-w1sihkjg6o] {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dashboard-shell__identity-value[b-w1sihkjg6o] {
    margin: 0.45rem 0 0;
    color: var(--color-text);
    font-size: 0.96rem;
    font-weight: 560;
    line-height: 1.6;
}

.dashboard-shell__identity-meta[b-w1sihkjg6o] {
    margin: 0.35rem 0 0;
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

.dashboard-grid[b-w1sihkjg6o] {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
}

.dashboard-panel[b-w1sihkjg6o] {
    min-width: 0;
    padding: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
        rgba(10, 13, 19, 0.92);
}

.dashboard-panel--agents[b-w1sihkjg6o] {
    grid-column: span 3;
}

.dashboard-panel--snapshot[b-w1sihkjg6o] {
    grid-column: span 5;
}

.dashboard-panel--selected[b-w1sihkjg6o] {
    grid-column: span 4;
}

.dashboard-panel--inspector[b-w1sihkjg6o] {
    grid-column: span 7;
}

.dashboard-panel--chat[b-w1sihkjg6o] {
    grid-column: span 5;
}

.dashboard-panel__header[b-w1sihkjg6o] {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.dashboard-panel__title[b-w1sihkjg6o] {
    margin: 0.45rem 0 0;
    font-size: 1.25rem;
    font-weight: 650;
    letter-spacing: -0.03em;
}

.dashboard-panel__badge[b-w1sihkjg6o] {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.3rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-muted);
    font-size: 0.82rem;
    white-space: nowrap;
}

.dashboard-panel__body[b-w1sihkjg6o] {
    margin: 1.1rem 0 0;
    color: var(--color-text);
    font-size: 1.05rem;
    font-weight: 560;
    letter-spacing: -0.01em;
}

.dashboard-panel__meta[b-w1sihkjg6o] {
    margin: 0.7rem 0 0;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.dashboard-panel__canvas[b-w1sihkjg6o],
.dashboard-panel__list[b-w1sihkjg6o],
.dashboard-panel__chat-shell[b-w1sihkjg6o] {
    position: relative;
    overflow: hidden;
    margin-top: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.02);
}

.dashboard-panel__canvas[b-w1sihkjg6o] {
    min-height: 10rem;
}

.dashboard-panel__canvas[b-w1sihkjg6o]::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
}

.dashboard-panel__canvas-node[b-w1sihkjg6o] {
    position: absolute;
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
    background: rgba(154, 213, 255, 0.82);
    box-shadow: 0 0 0 0.45rem rgba(154, 213, 255, 0.08);
}

.dashboard-panel__canvas-node[b-w1sihkjg6o]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: 4.2rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(154, 213, 255, 0.45), rgba(154, 213, 255, 0));
}

.dashboard-panel__canvas-node--one[b-w1sihkjg6o] {
    top: 2rem;
    left: 2rem;
}

.dashboard-panel__canvas-node--two[b-w1sihkjg6o] {
    top: 4.4rem;
    left: 8.6rem;
}

.dashboard-panel__canvas-node--three[b-w1sihkjg6o] {
    top: 2.8rem;
    right: 3.4rem;
}

.dashboard-panel__canvas-node--three[b-w1sihkjg6o]::before {
    left: auto;
    right: 100%;
    background: linear-gradient(90deg, rgba(154, 213, 255, 0), rgba(154, 213, 255, 0.45));
}

.dashboard-panel__list[b-w1sihkjg6o] {
    display: grid;
    gap: 0.7rem;
    padding: 1rem;
}

.dashboard-panel__list-row[b-w1sihkjg6o] {
    height: 0.9rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
}

.dashboard-panel__list-row:nth-child(1)[b-w1sihkjg6o] {
    width: 44%;
}

.dashboard-panel__list-row:nth-child(2)[b-w1sihkjg6o] {
    width: 78%;
}

.dashboard-panel__list-row:nth-child(3)[b-w1sihkjg6o] {
    width: 63%;
}

.dashboard-panel__list-row:nth-child(4)[b-w1sihkjg6o] {
    width: 52%;
}

.dashboard-panel__chat-shell[b-w1sihkjg6o] {
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    min-height: 10rem;
}

.dashboard-panel__chat-line[b-w1sihkjg6o] {
    display: block;
    width: 100%;
    height: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.03);
}

.dashboard-panel__chat-line--short[b-w1sihkjg6o] {
    width: 78%;
}

@media (max-width: 980px) {
    .dashboard-shell__hero[b-w1sihkjg6o] {
        flex-direction: column;
        align-items: start;
    }

    .dashboard-shell__status[b-w1sihkjg6o] {
        min-width: 0;
        width: 100%;
    }

    .dashboard-panel--agents[b-w1sihkjg6o],
    .dashboard-panel--snapshot[b-w1sihkjg6o],
    .dashboard-panel--selected[b-w1sihkjg6o],
    .dashboard-panel--inspector[b-w1sihkjg6o],
    .dashboard-panel--chat[b-w1sihkjg6o] {
        grid-column: span 6;
    }
}

@media (max-width: 760px) {
    .dashboard-page[b-w1sihkjg6o] {
        padding-top: 1rem;
    }

    .dashboard-shell[b-w1sihkjg6o] {
        width: min(100%, calc(100% - 1rem));
        padding: 0.8rem;
    }

    .dashboard-shell__header[b-w1sihkjg6o] {
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-shell__nav[b-w1sihkjg6o] {
        padding-top: 0;
    }

    .dashboard-shell__nav-link[b-w1sihkjg6o] {
        flex: 1 1 0;
        justify-content: center;
    }

    .dashboard-grid[b-w1sihkjg6o] {
        grid-template-columns: 1fr;
    }

    .dashboard-panel--agents[b-w1sihkjg6o],
    .dashboard-panel--snapshot[b-w1sihkjg6o],
    .dashboard-panel--selected[b-w1sihkjg6o],
    .dashboard-panel--inspector[b-w1sihkjg6o],
    .dashboard-panel--chat[b-w1sihkjg6o] {
        grid-column: auto;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.landing[b-9vukzhad3y] {
    position: relative;
    padding: 0 0 5.5rem;
}

.landing[b-9vukzhad3y]::before,
.landing[b-9vukzhad3y]::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: -1;
    filter: blur(90px);
}

.landing[b-9vukzhad3y]::before {
    top: -8rem;
    left: -8rem;
    width: 28rem;
    height: 28rem;
    background: radial-gradient(circle, rgba(78, 111, 168, 0.26) 0%, rgba(78, 111, 168, 0) 70%);
}

.landing[b-9vukzhad3y]::after {
    top: 10rem;
    right: -8rem;
    width: 28rem;
    height: 28rem;
    background: radial-gradient(circle, rgba(182, 202, 228, 0.13) 0%, rgba(182, 202, 228, 0) 74%);
}

.landing__container[b-9vukzhad3y] {
    width: min(1100px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header[b-9vukzhad3y] {
    padding: 1.6rem 0 0.25rem;
}

.site-header__inner[b-9vukzhad3y] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-header__brand[b-9vukzhad3y] {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--color-text);
    text-decoration: none;
}

.site-header__nav[b-9vukzhad3y] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.site-header__link[b-9vukzhad3y] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-muted);
    font-size: 0.94rem;
    text-decoration: none;
}

.site-header__mark[b-9vukzhad3y] {
    position: relative;
    width: 2.45rem;
    height: 2.45rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.9rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
        rgba(15, 18, 24, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.site-header__mark[b-9vukzhad3y]::before,
.site-header__mark[b-9vukzhad3y]::after {
    content: "";
    position: absolute;
    border-color: rgba(154, 213, 255, 0.32);
}

.site-header__mark[b-9vukzhad3y]::before {
    top: 0.8rem;
    left: 0.78rem;
    width: 0.72rem;
    height: 0.58rem;
    border-left: 1px solid rgba(154, 213, 255, 0.24);
    border-bottom: 1px solid rgba(154, 213, 255, 0.24);
}

.site-header__mark[b-9vukzhad3y]::after {
    left: 1rem;
    top: 1rem;
    width: 0.82rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(154, 213, 255, 0.18), rgba(154, 213, 255, 0.4));
}

.site-header__mark span[b-9vukzhad3y] {
    position: absolute;
    border-radius: 999px;
    background: rgba(154, 213, 255, 0.8);
    box-shadow: 0 0 0 0.3rem rgba(154, 213, 255, 0.08);
}

.site-header__mark span:nth-child(1)[b-9vukzhad3y] {
    top: 0.55rem;
    left: 0.55rem;
    width: 0.34rem;
    height: 0.34rem;
}

.site-header__mark span:nth-child(2)[b-9vukzhad3y] {
    top: 1rem;
    right: 0.55rem;
    width: 0.38rem;
    height: 0.38rem;
}

.site-header__mark span:nth-child(3)[b-9vukzhad3y] {
    left: 1rem;
    bottom: 0.55rem;
    width: 0.34rem;
    height: 0.34rem;
}

.site-header__name[b-9vukzhad3y] {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 650;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero[b-9vukzhad3y] {
    padding: 2rem 0 0;
}

.hero__panel[b-9vukzhad3y] {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    overflow: hidden;
    border: 1px solid var(--color-border-strong);
    border-radius: 2.2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
        linear-gradient(135deg, rgba(13, 16, 22, 0.98), rgba(7, 8, 12, 0.98));
    box-shadow: var(--shadow-elevated);
}

.hero__panel[b-9vukzhad3y]::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(154, 213, 255, 0.11), transparent 28%),
        radial-gradient(circle at 78% 74%, rgba(154, 213, 255, 0.06), transparent 18%);
    pointer-events: none;
}

.hero__panel[b-9vukzhad3y]::after {
    content: "";
    position: absolute;
    top: 8%;
    bottom: 8%;
    left: 58%;
    width: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.hero__content[b-9vukzhad3y] {
    position: relative;
    z-index: 1;
    padding: clamp(2.6rem, 4.5vw, 5rem);
}

.hero__visual[b-9vukzhad3y] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 4vw, 3.2rem) clamp(1.4rem, 3vw, 2.8rem) clamp(2rem, 4vw, 3.2rem) 0;
}

.hero__visual[b-9vukzhad3y]::before {
    content: "";
    position: absolute;
    inset: 1.5rem 1.3rem 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.6rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.01));
}

.hero__eyebrow[b-9vukzhad3y] {
    display: inline-flex;
    margin: 0 0 1.3rem;
    padding: 0.52rem 0.76rem;
    border: 1px solid rgba(154, 213, 255, 0.18);
    border-radius: 999px;
    background: rgba(154, 213, 255, 0.06);
    color: var(--color-accent);
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 650;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero__title[b-9vukzhad3y] {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(2.1rem, 5vw, 3.7rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.065em;
}

.hero__subtitle[b-9vukzhad3y] {
    margin: 1.15rem 0 0;
    color: var(--color-text);
    font-size: clamp(1.22rem, 2vw, 1.62rem);
    font-weight: 600;
    letter-spacing: -0.03em;
}

.hero__body[b-9vukzhad3y] {
    max-width: 40rem;
    margin: 1.55rem 0 0;
    color: var(--color-text-muted);
    font-size: clamp(1rem, 1.55vw, 1.14rem);
    line-height: 1.85;
}

.hero__supporting[b-9vukzhad3y] {
    margin: 1.65rem 0 0;
    color: var(--color-text);
    font-size: 1.04rem;
    font-weight: 650;
    letter-spacing: -0.02em;
}

.hero__actions[b-9vukzhad3y] {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: flex-start;
    margin-top: 2.1rem;
}

.hero__tag[b-9vukzhad3y] {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 3.4rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-muted);
    font-size: 0.94rem;
    white-space: nowrap;
    width: 100%;
    max-width: 16.5rem;
    justify-content: center;
    text-align: center;
}

.hero__tag[b-9vukzhad3y]::before {
    content: "";
    width: 0.46rem;
    height: 0.46rem;
    border-radius: 50%;
    background: rgba(154, 213, 255, 0.76);
    box-shadow: 0 0 0 0.35rem rgba(154, 213, 255, 0.06);
}

.cta[b-9vukzhad3y] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.4rem;
    padding: 0.9rem 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text);
    font-size: 0.99rem;
    font-weight: 720;
    letter-spacing: -0.01em;
}

.cta--primary[b-9vukzhad3y] {
    min-width: 16.5rem;
    background: linear-gradient(180deg, rgba(211, 220, 232, 0.2), rgba(211, 220, 232, 0.08));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.18);
}

.cta--primary[disabled][b-9vukzhad3y] {
    opacity: 1;
    cursor: default;
}

.system-map[b-9vukzhad3y] {
    position: relative;
    z-index: 1;
    width: min(100%, 34rem);
    height: auto;
}

.system-map__grid-line[b-9vukzhad3y] {
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 1;
}

.system-map__panel[b-9vukzhad3y] {
    stroke: rgba(255, 255, 255, 0.12);
    stroke-width: 1.2;
}

.system-map__detail[b-9vukzhad3y] {
    stroke: rgba(255, 255, 255, 0.22);
    stroke-width: 1.4;
    stroke-linecap: round;
}

.system-map__path[b-9vukzhad3y] {
    fill: none;
    stroke: rgba(164, 204, 237, 0.42);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.system-map__node[b-9vukzhad3y] {
    fill: rgba(12, 16, 22, 0.96);
    stroke: rgba(255, 255, 255, 0.22);
    stroke-width: 1.6;
}

.system-map__node--accent[b-9vukzhad3y] {
    fill: rgba(154, 213, 255, 0.16);
    stroke: rgba(154, 213, 255, 0.68);
}

.section[b-9vukzhad3y] {
    padding-top: 4.4rem;
}

.section__title[b-9vukzhad3y] {
    margin: 0;
    color: var(--color-text);
    font-size: clamp(1.68rem, 3vw, 2.4rem);
    font-weight: 740;
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.section__body[b-9vukzhad3y],
.card__body[b-9vukzhad3y] {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.section__body[b-9vukzhad3y] {
    margin: 1rem 0 0;
}

.section--intro .section__split[b-9vukzhad3y],
.section--boundary .section__split[b-9vukzhad3y] {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(1.75rem, 5vw, 3.5rem);
    align-items: start;
}

.section--intro .section__split[b-9vukzhad3y] {
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.section__lead[b-9vukzhad3y] {
    max-width: 20rem;
}

.section__copy[b-9vukzhad3y] {
    padding-left: clamp(1.5rem, 3vw, 2.5rem);
    border-left: 1px solid var(--color-border);
}

.section__frame[b-9vukzhad3y] {
    padding: clamp(1.7rem, 3vw, 2.5rem);
    border: 1px solid var(--color-border);
    border-radius: 1.7rem;
    background: linear-gradient(180deg, rgba(16, 20, 27, 0.88), rgba(11, 14, 19, 0.9));
}

.section__frame--feature[b-9vukzhad3y] {
    position: relative;
    overflow: hidden;
}

.section__frame--feature[b-9vukzhad3y]::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(154, 213, 255, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 42%);
    pointer-events: none;
}

.section__intro[b-9vukzhad3y] {
    position: relative;
    z-index: 1;
    max-width: 43rem;
}

.section__intro--wide[b-9vukzhad3y] {
    max-width: 38rem;
}

.section__intro--compact[b-9vukzhad3y] {
    max-width: 24rem;
}

.section__stack[b-9vukzhad3y] {
    padding-top: 0.9rem;
    border-top: 1px solid var(--color-border);
}

.feature-grid[b-9vukzhad3y],
.audience-grid[b-9vukzhad3y],
.boundary-list[b-9vukzhad3y] {
    list-style: none;
    padding: 0;
}

.feature-grid[b-9vukzhad3y] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.8rem 0 0;
}

.feature-grid__item[b-9vukzhad3y],
.audience-grid__item[b-9vukzhad3y] {
    min-width: 0;
}

.card[b-9vukzhad3y] {
    position: relative;
    height: 100%;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.35rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
        rgba(10, 13, 18, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.card[b-9vukzhad3y]::before {
    content: "";
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: rgba(154, 213, 255, 0.78);
    box-shadow: 0 0 0 0.4rem rgba(154, 213, 255, 0.06);
}

.card[b-9vukzhad3y]::after {
    content: "";
    position: absolute;
    top: 1.22rem;
    right: 1.55rem;
    width: 3rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(154, 213, 255, 0.24), rgba(154, 213, 255, 0));
}

.card__title[b-9vukzhad3y] {
    margin: 0 0 0.78rem;
    color: var(--color-text);
    font-size: 1.14rem;
    font-weight: 660;
    letter-spacing: -0.02em;
}

.card__body[b-9vukzhad3y] {
    margin: 0;
}

.audience-grid[b-9vukzhad3y] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.95rem;
    margin: 1.7rem 0 0;
}

.audience-grid__item[b-9vukzhad3y] {
    position: relative;
    min-height: 9.25rem;
    padding: 1.4rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.01));
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 620;
    line-height: 1.5;
}

.audience-grid__item[b-9vukzhad3y]::before,
.audience-grid__item[b-9vukzhad3y]::after {
    content: "";
    position: absolute;
    left: 1.25rem;
}

.audience-grid__item[b-9vukzhad3y]::before {
    top: 1rem;
    width: 0.46rem;
    height: 0.46rem;
    border-radius: 50%;
    background: rgba(154, 213, 255, 0.76);
    box-shadow: 0 0 0 0.4rem rgba(154, 213, 255, 0.06);
}

.audience-grid__item[b-9vukzhad3y]::after {
    top: 1.23rem;
    width: 2.7rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(154, 213, 255, 0.22), rgba(154, 213, 255, 0));
}

.section--boundary .section__split[b-9vukzhad3y] {
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.section__lead--boundary[b-9vukzhad3y] {
    max-width: 22rem;
}

.boundary-list[b-9vukzhad3y] {
    display: grid;
    gap: 0.9rem;
    margin: 0;
}

.boundary-list li[b-9vukzhad3y] {
    position: relative;
    padding: 1.1rem 1.15rem 1.1rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-text-muted);
    line-height: 1.75;
}

.boundary-list li[b-9vukzhad3y]::before {
    content: "";
    position: absolute;
    top: 1.38rem;
    left: 1.18rem;
    width: 0.54rem;
    height: 0.54rem;
    border-radius: 50%;
    background: rgba(154, 213, 255, 0.74);
    box-shadow: 0 0 0 0.35rem rgba(154, 213, 255, 0.08);
}

.status-band[b-9vukzhad3y] {
    position: relative;
    overflow: hidden;
    padding: 2rem 2.1rem 2rem 2.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.45rem;
    background:
        radial-gradient(circle at top right, rgba(154, 213, 255, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(15, 18, 24, 0.94), rgba(10, 13, 18, 0.94));
}

.status-band__rail[b-9vukzhad3y] {
    position: absolute;
    top: 1.5rem;
    bottom: 1.5rem;
    left: 1.35rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(154, 213, 255, 0), rgba(154, 213, 255, 0.75), rgba(154, 213, 255, 0));
}

.status-band[b-9vukzhad3y]::before {
    content: "";
    position: absolute;
    top: 2rem;
    left: 1.11rem;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: rgba(154, 213, 255, 0.82);
    box-shadow: 0 0 0 0.35rem rgba(154, 213, 255, 0.08);
}

.section__intro--status[b-9vukzhad3y] {
    max-width: 46rem;
}

.section--cta[b-9vukzhad3y] {
    padding-top: 4.8rem;
}

.cta-panel[b-9vukzhad3y] {
    position: relative;
    overflow: hidden;
    padding: clamp(2.8rem, 5vw, 4.2rem);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    background:
        radial-gradient(circle at top center, rgba(154, 213, 255, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(18, 22, 28, 0.96), rgba(10, 12, 17, 0.98));
    text-align: center;
}

.cta-panel[b-9vukzhad3y]::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.45rem;
    pointer-events: none;
}

.cta-panel[b-9vukzhad3y]::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -10rem;
    width: 28rem;
    height: 28rem;
    transform: translateX(-50%);
    border: 1px solid rgba(154, 213, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.cta-panel__inner[b-9vukzhad3y] {
    position: relative;
    z-index: 1;
    max-width: 42rem;
    margin: 0 auto;
}

.cta-panel .section__body[b-9vukzhad3y] {
    margin-left: auto;
    margin-right: auto;
}

.site-footer[b-9vukzhad3y] {
    padding-top: 2.8rem;
}

.site-footer__inner[b-9vukzhad3y] {
    padding-top: 1.3rem;
    border-top: 1px solid var(--color-border);
}

.site-footer__text[b-9vukzhad3y] {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .hero__panel[b-9vukzhad3y] {
        grid-template-columns: 1fr;
    }

    .hero__panel[b-9vukzhad3y]::after {
        display: none;
    }

    .hero__visual[b-9vukzhad3y] {
        padding: 0 1.5rem 2rem;
    }

    .hero__visual[b-9vukzhad3y]::before {
        inset: 0.4rem 1.2rem 0;
    }

    .system-map[b-9vukzhad3y] {
        width: min(100%, 28rem);
    }

    .audience-grid[b-9vukzhad3y] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .site-header__inner[b-9vukzhad3y] {
        align-items: stretch;
        flex-direction: column;
    }

    .site-header__nav[b-9vukzhad3y] {
        width: 100%;
    }

    .site-header__link[b-9vukzhad3y] {
        width: 100%;
    }

    .section[b-9vukzhad3y] {
        padding-top: 3.4rem;
    }

    .section--intro .section__split[b-9vukzhad3y],
    .section--boundary .section__split[b-9vukzhad3y] {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .section__copy[b-9vukzhad3y] {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid var(--color-border);
        padding-top: 1.25rem;
    }

    .feature-grid[b-9vukzhad3y],
    .audience-grid[b-9vukzhad3y] {
        grid-template-columns: 1fr;
    }

    .audience-grid__item[b-9vukzhad3y] {
        min-height: auto;
    }

    .hero__actions[b-9vukzhad3y] {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__tag[b-9vukzhad3y],
    .cta[b-9vukzhad3y] {
        width: 100%;
        justify-content: center;
    }
}
