/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-dgxw9ao9my] {
    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-dgxw9ao9my] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/PublicHeader.razor.rz.scp.css */
.landing-header[b-wkiyohonp9] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 88px;
    padding: 18px clamp(24px, 4vw, 76px);
    border-bottom: 1px solid var(--landing-border);
    background: rgba(255, 255, 255, 0.96);
}

.landing-brand[b-wkiyohonp9] {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.landing-brand img[b-wkiyohonp9] {
    display: block;
    width: 206px;
    height: auto;
}

.landing-nav[b-wkiyohonp9] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 34px);
    flex: 1 1 auto;
    min-width: 0;
}

.landing-nav-menu[b-wkiyohonp9] {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.landing-nav-menu[b-wkiyohonp9]::after {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 10px;
    content: "";
}

.landing-nav-link[b-wkiyohonp9] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 2.5rem;
    color: #111827;
    font-size: 15px;
    font-weight: 650;
    line-height: 1;
    white-space: nowrap;
}

.landing-nav-link i[b-wkiyohonp9] {
    color: #536179;
    font-size: 11px;
}

.landing-nav-dropdown[b-wkiyohonp9] {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    display: grid;
    margin-top: 6px;
    min-width: 230px;
    padding: 8px;
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 140ms ease, transform 140ms ease;
}

.landing-nav-menu:hover .landing-nav-dropdown[b-wkiyohonp9],
.landing-nav-menu:focus-within .landing-nav-dropdown[b-wkiyohonp9] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.landing-nav-dropdown a[b-wkiyohonp9] {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 6px;
    color: #111827;
    font-size: 13px;
    font-weight: 750;
}

.landing-nav-dropdown a:hover[b-wkiyohonp9],
.landing-nav-dropdown a:focus-visible[b-wkiyohonp9] {
    background: var(--landing-soft);
    color: var(--landing-blue);
}

.landing-header-actions[b-wkiyohonp9] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    flex: 0 0 auto;
}

.landing-header-actions[b-wkiyohonp9]  authorized,
.landing-header-actions[b-wkiyohonp9]  not-authorized {
    display: flex;
    align-items: center;
    gap: 22px;
}

.landing-sign-in[b-wkiyohonp9] {
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.landing-button[b-wkiyohonp9] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid var(--landing-blue);
    border-radius: 8px;
    background: var(--landing-blue);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(8, 102, 255, 0.16);
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.landing-button:hover[b-wkiyohonp9],
.landing-button:focus-visible[b-wkiyohonp9] {
    background: var(--landing-blue-dark);
    border-color: var(--landing-blue-dark);
    box-shadow: 0 14px 26px rgba(8, 102, 255, 0.22);
    transform: translateY(-1px);
}

.landing-button-small[b-wkiyohonp9] {
    min-height: 50px;
    min-width: 144px;
    padding: 0 22px;
}

@media (max-width: 1320px) {
    .landing-header[b-wkiyohonp9] {
        gap: 22px;
    }

    .landing-brand img[b-wkiyohonp9] {
        width: 184px;
    }

    .landing-nav-link[b-wkiyohonp9] {
        font-size: 14px;
    }
}

@media (max-width: 980px) {
    .landing-header[b-wkiyohonp9] {
        flex-wrap: wrap;
        min-height: auto;
    }

    .landing-nav[b-wkiyohonp9] {
        order: 3;
        justify-content: flex-start;
        width: 100%;
        overflow: visible;
        padding-bottom: 4px;
    }
}

@media (max-width: 720px) {
    .landing-header[b-wkiyohonp9] {
        padding-right: 18px;
        padding-left: 18px;
    }

    .landing-header-actions[b-wkiyohonp9],
    .landing-header-actions[b-wkiyohonp9]  authorized,
    .landing-header-actions[b-wkiyohonp9]  not-authorized {
        gap: 14px;
    }

    .landing-brand img[b-wkiyohonp9] {
        width: 168px;
    }

    .landing-button-small[b-wkiyohonp9] {
        min-width: 0;
    }
}
/* /Components/Layout/PublicLandingLayout.razor.rz.scp.css */
.landing-page[b-zj3rnffm9q] {
    --landing-text: #0f172a;
    --landing-muted: #4c5872;
    --landing-soft: #eef2f7;
    --landing-border: #dfe5ee;
    --landing-blue: #0866ff;
    --landing-blue-dark: #064fd0;
    --landing-copper: #c7771f;
    --landing-copper-dark: #9d5611;
    width: 100%;
    min-width: 0;
    min-height: 100vh;
    background: #ffffff;
    color: var(--landing-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.landing-page[b-zj3rnffm9q]  a:not(.landing-button) {
    color: inherit;
    text-decoration: none;
}

#blazor-error-ui[b-zj3rnffm9q] {
    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-zj3rnffm9q] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-e36h91ugft],
.components-reconnect-repeated-attempt-visible[b-e36h91ugft],
.components-reconnect-failed-visible[b-e36h91ugft],
.components-pause-visible[b-e36h91ugft],
.components-resume-failed-visible[b-e36h91ugft],
.components-rejoining-animation[b-e36h91ugft] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-e36h91ugft],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-e36h91ugft],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-e36h91ugft],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-e36h91ugft],
#components-reconnect-modal.components-reconnect-retrying[b-e36h91ugft],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-e36h91ugft],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-e36h91ugft],
#components-reconnect-modal.components-reconnect-failed[b-e36h91ugft],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-e36h91ugft] {
    display: block;
}


#components-reconnect-modal[b-e36h91ugft] {
    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-e36h91ugft 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-e36h91ugft 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-e36h91ugft 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-e36h91ugft]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-e36h91ugft 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-e36h91ugft {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-e36h91ugft {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-e36h91ugft {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-e36h91ugft] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-e36h91ugft] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-e36h91ugft] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-e36h91ugft] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-e36h91ugft] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-e36h91ugft] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-e36h91ugft] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-e36h91ugft 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-e36h91ugft] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-e36h91ugft {
    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/Home.razor.rz.scp.css */
.studio-dashboard[b-xnqftv0uri] {
    display: grid;
    gap: 1rem;
}

.studio-kpi-grid[b-xnqftv0uri] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.studio-kpi-card[b-xnqftv0uri] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(6.5rem, 0.45fr);
    align-items: center;
    gap: 1rem;
    min-height: 6rem;
    padding: 1rem;
    border: 1px solid var(--tw-gray-200, #e5e7eb);
    border-radius: 0.5rem;
    color: var(--tw-gray-700, #374151);
    background: var(--tw-card, #ffffff);
    box-shadow: 0 0.35rem 1.2rem rgb(15 23 42 / 0.035);
    transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.studio-kpi-card:hover[b-xnqftv0uri] {
    border-color: color-mix(in srgb, #c48212 42%, var(--tw-gray-200, #e5e7eb));
    box-shadow: 0 0.75rem 1.6rem rgb(15 23 42 / 0.065);
    transform: translateY(-1px);
}

.studio-kpi-icon[b-xnqftv0uri] {
    display: inline-grid;
    place-items: center;
    width: 3.4rem;
    height: 3.4rem;
    border: 1px solid color-mix(in srgb, #c48212 24%, transparent);
    border-radius: 0.5rem;
    color: #c48212;
    background: color-mix(in srgb, #c48212 9%, transparent);
    font-size: 1.45rem;
}

.studio-kpi-image-icon[b-xnqftv0uri] {
    display: block;
    width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
}

.studio-kpi-card-warning .studio-kpi-icon[b-xnqftv0uri] {
    border-color: color-mix(in srgb, #f97316 24%, transparent);
    color: #f97316;
    background: color-mix(in srgb, #f97316 10%, transparent);
}

.studio-kpi-card-success .studio-kpi-icon[b-xnqftv0uri] {
    border-color: color-mix(in srgb, #16a34a 24%, transparent);
    color: #16a34a;
    background: color-mix(in srgb, #16a34a 10%, transparent);
}

.studio-kpi-copy[b-xnqftv0uri] {
    display: grid;
    gap: 0.18rem;
    min-width: 0;
}

.studio-kpi-label[b-xnqftv0uri] {
    color: var(--tw-gray-900, #111827);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.studio-kpi-copy strong[b-xnqftv0uri] {
    color: var(--tw-gray-950, #030712);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.05;
}

.studio-kpi-copy small[b-xnqftv0uri] {
    color: var(--tw-gray-700, #374151);
    font-size: 0.78rem;
    font-weight: 500;
}

.studio-kpi-copy span:last-child[b-xnqftv0uri] {
    color: var(--tw-gray-500, #6b7280);
    font-size: 0.78rem;
}

.studio-trend-positive[b-xnqftv0uri] {
    color: #16a34a !important;
}

.studio-trend-danger[b-xnqftv0uri],
.studio-value-danger[b-xnqftv0uri] {
    color: #ef4444 !important;
}

.studio-trend-muted[b-xnqftv0uri] {
    color: var(--tw-gray-500, #6b7280) !important;
}

.studio-sparkline[b-xnqftv0uri] {
    display: block;
    width: 100%;
    min-width: 5.5rem;
    height: 2.7rem;
}

.studio-sparkline polyline[b-xnqftv0uri] {
    fill: none;
    stroke: #c48212;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.studio-sparkline-danger polyline[b-xnqftv0uri] {
    stroke: #f97316;
}

.studio-dashboard-grid[b-xnqftv0uri] {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
}

.studio-panel[b-xnqftv0uri] {
    min-width: 0;
    overflow: hidden;
}

.studio-panel-wide[b-xnqftv0uri] {
    grid-column: span 6;
}

.studio-panel-third[b-xnqftv0uri] {
    grid-column: span 4;
}

.studio-panel-header[b-xnqftv0uri] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    min-height: 3.1rem;
    padding: 0.85rem 1rem 0.65rem;
}

.studio-panel-header h2[b-xnqftv0uri] {
    color: var(--tw-gray-950, #030712);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

.studio-panel-header a[b-xnqftv0uri],
.studio-panel-footer a[b-xnqftv0uri] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--tw-gray-700, #374151);
    font-size: 0.78rem;
    white-space: nowrap;
}

.studio-panel-header a:hover[b-xnqftv0uri],
.studio-panel-footer a:hover[b-xnqftv0uri],
.studio-row-link:hover[b-xnqftv0uri] {
    color: #c48212;
}

.studio-panel-select[b-xnqftv0uri] {
    width: auto;
    min-width: 8.4rem;
    height: 2rem;
    font-size: 0.78rem;
}

.studio-panel-footer[b-xnqftv0uri] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
}

.studio-chart-wrap[b-xnqftv0uri],
.studio-velocity-chart-wrap[b-xnqftv0uri] {
    padding: 0 1rem 0.8rem;
}

.studio-line-chart[b-xnqftv0uri],
.studio-velocity-chart[b-xnqftv0uri] {
    display: block;
    width: 100%;
    min-height: 12rem;
}

.studio-chart-gridline[b-xnqftv0uri] {
    stroke: var(--tw-gray-200, #e5e7eb);
    stroke-width: 1;
}

.studio-chart-y-label[b-xnqftv0uri] {
    fill: var(--tw-gray-500, #6b7280);
    font-size: 0.72rem;
}

.studio-chart-line[b-xnqftv0uri] {
    fill: none;
    stroke: #c48212;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.studio-chart-point[b-xnqftv0uri] {
    fill: var(--tw-card, #ffffff);
    stroke: #c48212;
    stroke-width: 2.2;
}

.studio-chart-point-group[b-xnqftv0uri] {
    cursor: pointer;
    outline: none;
}

.studio-chart-point-hit[b-xnqftv0uri] {
    fill: transparent;
    stroke: transparent;
    pointer-events: all;
}

.studio-chart-point-group:hover .studio-chart-point[b-xnqftv0uri],
.studio-chart-point-group:focus .studio-chart-point[b-xnqftv0uri] {
    fill: #c48212;
    stroke: var(--tw-card, #ffffff);
}

.studio-chart-point-group:focus-visible .studio-chart-point-hit[b-xnqftv0uri] {
    stroke: color-mix(in srgb, #c48212 45%, transparent);
    stroke-width: 2;
}

.studio-chart-tooltip[b-xnqftv0uri] {
    opacity: 0;
    pointer-events: none;
    transition: opacity 120ms ease;
}

.studio-chart-point-group:hover .studio-chart-tooltip[b-xnqftv0uri],
.studio-chart-point-group:focus .studio-chart-tooltip[b-xnqftv0uri] {
    opacity: 1;
}

.studio-chart-tooltip rect[b-xnqftv0uri] {
    fill: var(--tw-gray-950, #030712);
    stroke: color-mix(in srgb, var(--tw-card, #ffffff) 28%, transparent);
    stroke-width: 1;
}

.studio-chart-tooltip text[b-xnqftv0uri] {
    fill: var(--tw-card, #ffffff);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0;
    text-anchor: middle;
}

.studio-chart-axis[b-xnqftv0uri],
.studio-velocity-axis[b-xnqftv0uri] {
    display: grid;
    align-items: center;
    color: var(--tw-gray-600, #4b5563);
    font-size: 0.74rem;
}

.studio-chart-axis[b-xnqftv0uri] {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    padding-left: 2.6rem;
}

.studio-chart-axis span[b-xnqftv0uri] {
    text-align: center;
}

.studio-chart-legend[b-xnqftv0uri] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.7rem;
    color: var(--tw-gray-700, #374151);
    font-size: 0.8rem;
}

.studio-chart-legend span[b-xnqftv0uri] {
    width: 1.4rem;
    height: 0.12rem;
    border-radius: 999px;
    background: #c48212;
}

.studio-table-wrap[b-xnqftv0uri] {
    min-height: 0;
}

.studio-compact-table[b-xnqftv0uri] {
    font-size: 0.8rem;
}

.studio-compact-table th[b-xnqftv0uri],
.studio-compact-table td[b-xnqftv0uri] {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
    vertical-align: middle;
}

.studio-row-link[b-xnqftv0uri] {
    color: var(--tw-gray-500, #6b7280);
    font-size: 0.78rem;
}

.studio-stock-chart[b-xnqftv0uri] {
    display: grid;
    gap: 0.7rem;
    padding: 0.35rem 1rem 0.8rem;
}

.studio-stock-row[b-xnqftv0uri] {
    display: grid;
    grid-template-columns: minmax(5.2rem, 0.42fr) minmax(0, 1fr) minmax(3.4rem, auto);
    align-items: center;
    gap: 0.75rem;
    min-height: 1.25rem;
}

.studio-stock-label[b-xnqftv0uri],
.studio-stock-value[b-xnqftv0uri] {
    color: var(--tw-gray-800, #1f2937);
    font-size: 0.8rem;
}

.studio-stock-value[b-xnqftv0uri] {
    text-align: right;
}

.studio-stock-bar[b-xnqftv0uri] {
    display: flex;
    height: 0.72rem;
    overflow: hidden;
    background: var(--tw-gray-100, #f3f4f6);
}

.studio-stock-bar span[b-xnqftv0uri] {
    min-width: 0;
    height: 100%;
}

.studio-stock-boxed[b-xnqftv0uri] {
    background: #c8962b;
}

.studio-stock-handloaded[b-xnqftv0uri] {
    background: #18181b;
}

.studio-stock-components[b-xnqftv0uri] {
    background: #c7cad1;
}

.studio-stock-other[b-xnqftv0uri] {
    background: #e5e7eb;
}

.studio-stock-legend[b-xnqftv0uri] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    padding: 0.3rem 1rem 0;
    color: var(--tw-gray-600, #4b5563);
    font-size: 0.76rem;
}

.studio-stock-legend span[b-xnqftv0uri] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.studio-stock-legend i[b-xnqftv0uri] {
    width: 0.72rem;
    height: 0.72rem;
}

.studio-bar-list[b-xnqftv0uri] {
    display: grid;
    gap: 0.65rem;
    padding: 0.3rem 1rem 0.85rem;
}

.studio-bar-row[b-xnqftv0uri] {
    display: grid;
    grid-template-columns: minmax(8.5rem, 0.85fr) minmax(0, 1fr) minmax(3.2rem, auto);
    align-items: center;
    gap: 0.8rem;
    color: var(--tw-gray-800, #1f2937);
    font-size: 0.8rem;
}

.studio-bar-row > div[b-xnqftv0uri] {
    height: 0.5rem;
    overflow: hidden;
    background: var(--tw-gray-100, #f3f4f6);
}

.studio-bar-row > div span[b-xnqftv0uri] {
    display: block;
    height: 100%;
    background: #202124;
}

.studio-bar-row strong[b-xnqftv0uri] {
    color: var(--tw-gray-900, #111827);
    font-size: 0.78rem;
    font-weight: 600;
    text-align: right;
}

.studio-empty-chart[b-xnqftv0uri],
.studio-empty-panel[b-xnqftv0uri],
.studio-empty-target[b-xnqftv0uri] {
    display: grid;
    place-items: center;
    min-height: 8.5rem;
    color: var(--tw-gray-500, #6b7280);
    font-size: 0.85rem;
    text-align: center;
}

.studio-empty-chart[b-xnqftv0uri] {
    gap: 0.6rem;
}

.studio-empty-chart i[b-xnqftv0uri] {
    color: var(--tw-gray-400, #9ca3af);
    font-size: 1.65rem;
}

.studio-target-summary[b-xnqftv0uri] {
    display: grid;
    grid-template-columns: 8.3rem minmax(0, 1fr);
    gap: 1rem;
    padding: 0.35rem 1rem 0.9rem;
}

.studio-target-preview[b-xnqftv0uri] {
    position: relative;
    display: grid;
    place-items: center;
    width: 8.2rem;
    height: 8.2rem;
    overflow: hidden;
    border: 1px solid var(--tw-gray-200, #e5e7eb);
    border-radius: 0.25rem;
    background:
        linear-gradient(var(--tw-gray-100, #f3f4f6) 1px, transparent 1px),
        linear-gradient(90deg, var(--tw-gray-100, #f3f4f6) 1px, transparent 1px),
        var(--tw-card, #ffffff);
    background-size: 0.72rem 0.72rem;
}

.studio-target-preview-photo[b-xnqftv0uri] {
    background: var(--tw-gray-950, #030712);
}

.studio-target-preview img[b-xnqftv0uri] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-empty-target .studio-target-preview[b-xnqftv0uri] {
    margin-bottom: 0.85rem;
}

.studio-target-preview > span[b-xnqftv0uri] {
    width: 5.8rem;
    height: 5.8rem;
    border: 1px solid var(--tw-gray-300, #d1d5db);
    border-radius: 999px;
}

.studio-target-preview svg[b-xnqftv0uri] {
    width: 6.8rem;
    height: 6.8rem;
}

.studio-target-preview-photo svg[b-xnqftv0uri] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.studio-target-preview svg circle[b-xnqftv0uri],
.studio-target-preview svg line[b-xnqftv0uri] {
    fill: none;
    stroke: var(--tw-gray-400, #9ca3af);
    stroke-width: 0.8;
}

.studio-target-preview .studio-shot-marker[b-xnqftv0uri] {
    fill: #ef4444;
    stroke: #18181b;
    stroke-width: 0.7;
}

.studio-target-preview-photo .studio-shot-marker[b-xnqftv0uri] {
    stroke: #ffffff;
    stroke-width: 1;
    filter: drop-shadow(0 1px 2px rgb(0 0 0 / 0.55));
}

.studio-target-metrics[b-xnqftv0uri] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    align-self: start;
}

.studio-target-metrics div[b-xnqftv0uri],
.studio-target-meta div[b-xnqftv0uri] {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}

.studio-target-metrics span[b-xnqftv0uri],
.studio-target-meta span[b-xnqftv0uri] {
    color: var(--tw-gray-500, #6b7280);
    font-size: 0.76rem;
}

.studio-target-metrics strong[b-xnqftv0uri] {
    color: var(--tw-gray-950, #030712);
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.15;
}

.studio-target-meta[b-xnqftv0uri] {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--tw-gray-200, #e5e7eb);
}

.studio-target-meta strong[b-xnqftv0uri] {
    min-width: 0;
    color: var(--tw-gray-900, #111827);
    font-size: 0.78rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.studio-velocity-axis[b-xnqftv0uri] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-left: 3.4rem;
    padding-right: 1.2rem;
}

.studio-velocity-axis span[b-xnqftv0uri] {
    text-align: center;
}

.studio-velocity-chart-wrap p[b-xnqftv0uri] {
    margin-top: 0.65rem;
    color: var(--tw-gray-700, #374151);
    font-size: 0.8rem;
}

.studio-resume-list[b-xnqftv0uri] {
    display: grid;
    padding: 0 1rem 0.7rem;
}

.studio-resume-list a[b-xnqftv0uri] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
    min-height: 3.35rem;
    border-top: 1px solid var(--tw-gray-200, #e5e7eb);
    color: var(--tw-gray-700, #374151);
}

.studio-resume-list a:first-child[b-xnqftv0uri] {
    border-top: 0;
}

.studio-resume-list a > span:first-child[b-xnqftv0uri] {
    display: inline-grid;
    place-items: center;
    width: 2.3rem;
    height: 2.3rem;
    border: 1px solid color-mix(in srgb, #c48212 24%, transparent);
    border-radius: 0.45rem;
    color: #c48212;
    background: color-mix(in srgb, #c48212 9%, transparent);
}

.studio-resume-list a > span:nth-child(2)[b-xnqftv0uri] {
    display: grid;
    min-width: 0;
}

.studio-resume-list strong[b-xnqftv0uri] {
    color: var(--tw-gray-950, #030712);
    font-size: 0.86rem;
    font-weight: 700;
}

.studio-resume-list small[b-xnqftv0uri] {
    color: var(--tw-gray-500, #6b7280);
    font-size: 0.78rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.studio-resume-list a:hover[b-xnqftv0uri],
.studio-resume-list a:hover strong[b-xnqftv0uri] {
    color: #c48212;
}

.studio-bottom-strip[b-xnqftv0uri] {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    min-height: 3.6rem;
    padding: 0.65rem 1rem;
}

.studio-bottom-strip div[b-xnqftv0uri] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.1rem 0.85rem;
    align-items: center;
    min-width: 0;
    padding-inline: 1rem;
    border-left: 1px solid var(--tw-gray-200, #e5e7eb);
}

.studio-bottom-strip div:first-child[b-xnqftv0uri] {
    border-left: 0;
}

.studio-bottom-strip i[b-xnqftv0uri] {
    grid-row: span 2;
    color: var(--tw-gray-700, #374151);
    font-size: 1.35rem;
}

.studio-bottom-strip span[b-xnqftv0uri] {
    color: var(--tw-gray-500, #6b7280);
    font-size: 0.78rem;
}

.studio-bottom-strip strong[b-xnqftv0uri] {
    color: var(--tw-gray-950, #030712);
    font-size: 1rem;
    font-weight: 700;
}

@media (max-width: 1399px) {
    .studio-kpi-grid[b-xnqftv0uri] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .studio-panel-wide[b-xnqftv0uri],
    .studio-panel-third[b-xnqftv0uri] {
        grid-column: span 6;
    }
}

@media (max-width: 991px) {
    .studio-dashboard-grid[b-xnqftv0uri] {
        grid-template-columns: 1fr;
    }

    .studio-panel-wide[b-xnqftv0uri],
    .studio-panel-third[b-xnqftv0uri],
    .studio-bottom-strip[b-xnqftv0uri] {
        grid-column: 1;
    }

    .studio-target-summary[b-xnqftv0uri] {
        grid-template-columns: 1fr;
    }

    .studio-target-preview[b-xnqftv0uri] {
        width: 100%;
        max-width: 12rem;
        justify-self: start;
    }

    .studio-target-meta[b-xnqftv0uri],
    .studio-bottom-strip[b-xnqftv0uri] {
        grid-template-columns: 1fr;
    }

    .studio-bottom-strip div[b-xnqftv0uri] {
        border-top: 1px solid var(--tw-gray-200, #e5e7eb);
        border-left: 0;
        padding-block: 0.75rem;
    }

    .studio-bottom-strip div:first-child[b-xnqftv0uri] {
        border-top: 0;
    }
}

@media (max-width: 767px) {
    .studio-kpi-grid[b-xnqftv0uri] {
        grid-template-columns: 1fr;
    }

    .studio-kpi-card[b-xnqftv0uri] {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .studio-sparkline[b-xnqftv0uri] {
        grid-column: 1 / -1;
    }

    .studio-panel-header[b-xnqftv0uri] {
        align-items: flex-start;
        flex-direction: column;
    }

    .studio-panel-select[b-xnqftv0uri] {
        width: 100%;
    }

    .studio-chart-axis[b-xnqftv0uri],
    .studio-velocity-axis[b-xnqftv0uri] {
        padding-left: 0;
        font-size: 0.66rem;
    }

    .studio-chart-axis span:nth-child(even)[b-xnqftv0uri] {
        display: none;
    }

    .studio-stock-row[b-xnqftv0uri],
    .studio-bar-row[b-xnqftv0uri] {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.35rem;
    }

    .studio-stock-value[b-xnqftv0uri],
    .studio-bar-row strong[b-xnqftv0uri] {
        text-align: left;
    }

    .studio-target-metrics[b-xnqftv0uri],
    .studio-target-meta[b-xnqftv0uri] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Public/EnergyCalculatorPage.razor.rz.scp.css */
.energy-page[b-7a38m36oop] {
    display: grid;
    gap: 28px;
    padding: 24px clamp(24px, 4vw, 76px) 42px;
}

.energy-breadcrumb[b-7a38m36oop] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #536179;
    font-size: 13px;
    font-weight: 700;
}

.energy-breadcrumb a[b-7a38m36oop] {
    color: var(--landing-blue);
}

.energy-heading[b-7a38m36oop] {
    max-width: 820px;
}

.energy-eyebrow[b-7a38m36oop] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--landing-border);
    border-radius: 999px;
    color: #44506a;
    background: #ffffff;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.energy-eyebrow i[b-7a38m36oop] {
    color: var(--landing-copper);
}

.energy-heading h1[b-7a38m36oop] {
    margin: 20px 0 12px;
    color: #111827;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0;
}

.energy-heading p[b-7a38m36oop] {
    margin: 0;
    color: var(--landing-muted);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.65;
}

.energy-workspace[b-7a38m36oop] {
    display: grid;
    grid-template-columns: minmax(0, 1.34fr) minmax(18rem, 0.66fr);
    gap: 18px;
    align-items: start;
}

.energy-card[b-7a38m36oop],
.energy-side-panel[b-7a38m36oop],
.energy-reference-card[b-7a38m36oop],
.energy-safety-card[b-7a38m36oop],
.energy-related[b-7a38m36oop] {
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.energy-card[b-7a38m36oop] {
    display: grid;
    gap: 20px;
    min-width: 0;
    padding: 20px;
}

.energy-card-header[b-7a38m36oop] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.energy-card-header h2[b-7a38m36oop],
.energy-result-panel h2[b-7a38m36oop],
.energy-summary h2[b-7a38m36oop],
.energy-side-section h2[b-7a38m36oop],
.energy-reference-card h2[b-7a38m36oop],
.energy-safety-card h2[b-7a38m36oop],
.energy-related h2[b-7a38m36oop] {
    margin: 0;
    color: #111827;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.25;
}

.energy-card-header p[b-7a38m36oop],
.energy-side-section p[b-7a38m36oop] {
    margin: 5px 0 0;
    color: #536179;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.55;
}

.energy-form-grid[b-7a38m36oop] {
    display: grid;
    grid-template-columns: minmax(11rem, 1fr) minmax(10rem, 0.72fr) minmax(11rem, 1fr) minmax(10rem, 0.72fr);
    gap: 14px;
    align-items: start;
}

.energy-field[b-7a38m36oop] {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.energy-action-button[b-7a38m36oop],
.energy-copy-button[b-7a38m36oop],
.energy-example-list button[b-7a38m36oop] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    background: #ffffff;
    color: #111827;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: border-color 140ms ease, color 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
}

.energy-action-button:hover[b-7a38m36oop],
.energy-action-button:focus-visible[b-7a38m36oop],
.energy-copy-button:hover[b-7a38m36oop],
.energy-copy-button:focus-visible[b-7a38m36oop],
.energy-example-list button:hover[b-7a38m36oop],
.energy-example-list button:focus-visible[b-7a38m36oop] {
    border-color: #b7c3d4;
    background: #f8fafc;
    color: var(--landing-blue);
}

.energy-validation[b-7a38m36oop] {
    color: #dc2626;
    font-size: 12px;
    font-weight: 700;
}

.energy-inline-note[b-7a38m36oop],
.energy-range-note[b-7a38m36oop] {
    margin: 0;
    color: #536179;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.energy-inline-note code[b-7a38m36oop] {
    color: #111827;
    font-weight: 900;
}

.energy-range-note[b-7a38m36oop] {
    padding: 12px 14px;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    background: #fff7ed;
    color: #9a3412;
}

.energy-result-panel[b-7a38m36oop] {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(8, 102, 255, 0.2);
    border-radius: 8px;
    background: #eff6ff;
}

.energy-result-panel > span[b-7a38m36oop] {
    color: #536179;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.energy-result-panel h2[b-7a38m36oop] {
    color: var(--landing-blue);
    font-size: 32px;
    line-height: 1.1;
}

.energy-result-panel p[b-7a38m36oop] {
    margin: 0;
    color: #334155;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.55;
}

.energy-result-grid[b-7a38m36oop] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.energy-result-item[b-7a38m36oop] {
    display: grid;
    gap: 6px;
    min-width: 0;
    min-height: 74px;
    padding: 12px;
    border: 1px solid rgba(8, 102, 255, 0.16);
    border-radius: 8px;
    background: #ffffff;
}

.energy-result-item span[b-7a38m36oop] {
    color: #536179;
    font-size: 12px;
    font-weight: 750;
}

.energy-result-item strong[b-7a38m36oop] {
    color: #111827;
    font-size: 17px;
    font-weight: 900;
    overflow-wrap: anywhere;
}

.energy-result-item-primary[b-7a38m36oop] {
    border-color: rgba(8, 102, 255, 0.42);
    box-shadow: inset 0 0 0 1px rgba(8, 102, 255, 0.12);
}

.energy-result-item-primary strong[b-7a38m36oop] {
    color: var(--landing-blue);
}

.energy-result-actions[b-7a38m36oop] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.energy-result-actions span[b-7a38m36oop] {
    color: #536179;
    font-size: 12px;
    font-weight: 650;
}

.energy-copy-button[b-7a38m36oop] {
    border-color: rgba(8, 102, 255, 0.28);
    min-height: 34px;
}

.energy-summary[b-7a38m36oop] {
    display: grid;
    gap: 12px;
}

.energy-summary dl[b-7a38m36oop] {
    display: grid;
    gap: 10px;
    margin: 0;
}

.energy-summary dl div[b-7a38m36oop] {
    display: grid;
    grid-template-columns: minmax(7rem, 0.35fr) minmax(0, 1fr);
    gap: 12px;
    align-items: baseline;
    min-height: 36px;
    padding: 8px 0;
    border-bottom: 1px solid var(--landing-border);
}

.energy-summary dt[b-7a38m36oop] {
    color: #64748b;
    font-size: 12px;
    font-weight: 750;
}

.energy-summary dd[b-7a38m36oop] {
    margin: 0;
    color: #111827;
    font-size: 13px;
    font-weight: 850;
    text-align: right;
}

.energy-side-panel[b-7a38m36oop] {
    position: sticky;
    top: 18px;
    display: grid;
    gap: 18px;
    min-width: 0;
    padding: 20px;
}

.energy-side-section[b-7a38m36oop] {
    display: grid;
    gap: 12px;
}

.energy-example-list[b-7a38m36oop] {
    display: grid;
    gap: 8px;
}

.energy-example-list button[b-7a38m36oop] {
    justify-content: flex-start;
    min-height: 44px;
    width: 100%;
}

.energy-reference-grid[b-7a38m36oop] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.energy-reference-card[b-7a38m36oop],
.energy-safety-card[b-7a38m36oop],
.energy-related[b-7a38m36oop] {
    padding: 20px;
}

.energy-reference-card p[b-7a38m36oop],
.energy-safety-card p[b-7a38m36oop] {
    margin: 14px 0 0;
    color: #536179;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.6;
}

.energy-reference-card ul[b-7a38m36oop],
.energy-safety-card ul[b-7a38m36oop] {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    padding-left: 20px;
    color: #536179;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.5;
}

.energy-reference-card code[b-7a38m36oop] {
    color: #111827;
    font-weight: 900;
}

.energy-safety-card[b-7a38m36oop] {
    border-color: #fed7aa;
    background: #fff7ed;
}

.energy-safety-card h2[b-7a38m36oop],
.energy-safety-card p[b-7a38m36oop],
.energy-safety-card ul[b-7a38m36oop] {
    color: #9a3412;
}

.energy-related[b-7a38m36oop] {
    display: grid;
    gap: 14px;
}

.energy-related-grid[b-7a38m36oop] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.landing-section-heading[b-7a38m36oop] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.landing-section-heading h2[b-7a38m36oop] {
    margin: 0;
    color: #111827;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.25;
}

.landing-section-heading span[b-7a38m36oop] {
    color: #536179;
    font-size: 13px;
    font-weight: 700;
}

.landing-tool-card[b-7a38m36oop] {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-height: 96px;
    padding: 18px;
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    background: #ffffff;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.landing-tool-card:hover[b-7a38m36oop],
.landing-tool-card:focus-visible[b-7a38m36oop] {
    border-color: #b7c3d4;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.landing-tool-icon[b-7a38m36oop] {
    color: var(--landing-copper);
    font-size: 30px;
    line-height: 1;
    text-align: center;
}

.landing-tool-copy[b-7a38m36oop] {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
}

.landing-tool-card strong[b-7a38m36oop] {
    color: #111827;
    font-size: 13px;
    font-weight: 900;
}

.landing-tool-card p[b-7a38m36oop] {
    margin: 0;
    color: #536179;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.landing-tool-arrow[b-7a38m36oop] {
    color: #64748b;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 1180px) {
    .energy-workspace[b-7a38m36oop] {
        grid-template-columns: 1fr;
    }

    .energy-side-panel[b-7a38m36oop] {
        position: static;
    }
}

@media (max-width: 980px) {
    .energy-form-grid[b-7a38m36oop],
    .energy-result-grid[b-7a38m36oop],
    .energy-reference-grid[b-7a38m36oop],
    .energy-related-grid[b-7a38m36oop] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .energy-page[b-7a38m36oop] {
        padding-right: 18px;
        padding-left: 18px;
    }

    .energy-heading h1[b-7a38m36oop] {
        font-size: 34px;
    }

    .energy-card-header[b-7a38m36oop],
    .landing-section-heading[b-7a38m36oop] {
        align-items: stretch;
        flex-direction: column;
    }

    .energy-result-panel h2[b-7a38m36oop] {
        font-size: 24px;
    }

    .energy-summary dl div[b-7a38m36oop] {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .energy-summary dd[b-7a38m36oop] {
        text-align: left;
    }

    .landing-tool-card[b-7a38m36oop] {
        grid-template-columns: 36px minmax(0, 1fr);
    }

    .landing-tool-arrow[b-7a38m36oop] {
        display: none;
    }
}
/* /Components/Pages/Public/MoaMradConverterPage.razor.rz.scp.css */
.converter-page[b-z9hmzdg9j6] {
    display: grid;
    gap: 28px;
    padding: 24px clamp(24px, 4vw, 76px) 42px;
}

.converter-breadcrumb[b-z9hmzdg9j6] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #536179;
    font-size: 13px;
    font-weight: 700;
}

.converter-breadcrumb a[b-z9hmzdg9j6] {
    color: var(--landing-blue);
}

.converter-heading[b-z9hmzdg9j6] {
    max-width: 820px;
}

.converter-eyebrow[b-z9hmzdg9j6] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--landing-border);
    border-radius: 999px;
    color: #44506a;
    background: #ffffff;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.converter-eyebrow i[b-z9hmzdg9j6] {
    color: var(--landing-copper);
}

.converter-heading h1[b-z9hmzdg9j6] {
    margin: 20px 0 12px;
    color: #111827;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0;
}

.converter-heading p[b-z9hmzdg9j6] {
    margin: 0;
    color: var(--landing-muted);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.65;
}

.converter-workspace[b-z9hmzdg9j6] {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(20rem, 0.7fr);
    gap: 18px;
    align-items: start;
}

.converter-card[b-z9hmzdg9j6],
.converter-result-panel[b-z9hmzdg9j6],
.converter-reference-card[b-z9hmzdg9j6],
.converter-related[b-z9hmzdg9j6] {
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.converter-card[b-z9hmzdg9j6] {
    display: grid;
    gap: 20px;
    padding: 20px;
}

.converter-card-header[b-z9hmzdg9j6] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.converter-card-header h2[b-z9hmzdg9j6],
.converter-result-header h2[b-z9hmzdg9j6],
.converter-reference-card h2[b-z9hmzdg9j6],
.converter-related h2[b-z9hmzdg9j6] {
    margin: 0;
    color: #111827;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.25;
}

.converter-card-header p[b-z9hmzdg9j6] {
    margin: 5px 0 0;
    color: #536179;
    font-size: 13px;
    font-weight: 650;
}

.converter-reset[b-z9hmzdg9j6],
.converter-swap[b-z9hmzdg9j6],
.converter-example-list button[b-z9hmzdg9j6] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    background: #ffffff;
    color: #111827;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    transition: border-color 140ms ease, color 140ms ease, background-color 140ms ease;
}

.converter-reset:hover[b-z9hmzdg9j6],
.converter-reset:focus-visible[b-z9hmzdg9j6],
.converter-swap:hover[b-z9hmzdg9j6],
.converter-swap:focus-visible[b-z9hmzdg9j6],
.converter-example-list button:hover[b-z9hmzdg9j6],
.converter-example-list button:focus-visible[b-z9hmzdg9j6] {
    border-color: #b7c3d4;
    background: #f8fafc;
    color: var(--landing-blue);
}

.converter-example-list[b-z9hmzdg9j6] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.converter-form-grid[b-z9hmzdg9j6] {
    display: grid;
    grid-template-columns: minmax(12rem, 1fr) minmax(10rem, 0.58fr) minmax(13rem, 0.82fr);
    gap: 14px;
    align-items: start;
}

.converter-field[b-z9hmzdg9j6] {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.converter-field-wide[b-z9hmzdg9j6] {
    min-width: 14rem;
}

.converter-validation[b-z9hmzdg9j6] {
    color: #dc2626;
    font-size: 12px;
    font-weight: 700;
}

.converter-converted[b-z9hmzdg9j6] {
    min-height: 74px;
    padding: 10px 12px;
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    background: #f8fafc;
}

.converter-converted strong[b-z9hmzdg9j6] {
    color: #111827;
    font-size: 18px;
    font-weight: 900;
}

.converter-swap[b-z9hmzdg9j6] {
    justify-self: start;
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
}

.converter-click-section[b-z9hmzdg9j6] {
    display: grid;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--landing-border);
}

.converter-check[b-z9hmzdg9j6] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111827;
    font-size: 14px;
    font-weight: 850;
}

.converter-click-grid[b-z9hmzdg9j6] {
    grid-template-columns: minmax(10rem, 0.6fr) minmax(13rem, 0.7fr) minmax(14rem, 1fr);
}

.converter-result-panel[b-z9hmzdg9j6] {
    position: sticky;
    top: 18px;
    display: grid;
    gap: 18px;
    padding: 20px;
}

.converter-result-header span[b-z9hmzdg9j6],
.converter-movement-result > span[b-z9hmzdg9j6] {
    color: #536179;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.converter-result-header h2[b-z9hmzdg9j6] {
    margin-top: 6px;
}

.converter-result-empty[b-z9hmzdg9j6],
.converter-direction-note[b-z9hmzdg9j6] {
    margin: 0;
    color: #536179;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.55;
}

.converter-summary-list[b-z9hmzdg9j6],
.converter-click-result dl[b-z9hmzdg9j6] {
    display: grid;
    gap: 10px;
    margin: 0;
}

.converter-summary-list div[b-z9hmzdg9j6],
.converter-click-result dl div[b-z9hmzdg9j6] {
    display: grid;
    grid-template-columns: minmax(7rem, 0.8fr) minmax(0, 1fr);
    gap: 12px;
    align-items: baseline;
}

.converter-summary-list dt[b-z9hmzdg9j6],
.converter-click-result dt[b-z9hmzdg9j6] {
    color: #64748b;
    font-size: 12px;
    font-weight: 750;
}

.converter-summary-list dd[b-z9hmzdg9j6],
.converter-click-result dd[b-z9hmzdg9j6] {
    margin: 0;
    color: #111827;
    font-size: 13px;
    font-weight: 850;
    text-align: right;
}

.converter-movement-result[b-z9hmzdg9j6] {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(8, 102, 255, 0.2);
    border-radius: 8px;
    background: #eff6ff;
}

.converter-movement-result strong[b-z9hmzdg9j6] {
    color: var(--landing-blue);
    font-size: 30px;
    font-weight: 900;
    line-height: 1.05;
}

.converter-movement-result div[b-z9hmzdg9j6] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.converter-movement-result div span[b-z9hmzdg9j6] {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid rgba(8, 102, 255, 0.22);
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    font-size: 12px;
    font-weight: 800;
}

.converter-click-result[b-z9hmzdg9j6] {
    display: grid;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--landing-border);
}

.converter-click-result h3[b-z9hmzdg9j6] {
    margin: 0;
    color: #111827;
    font-size: 15px;
    font-weight: 900;
}

.converter-reference-grid[b-z9hmzdg9j6] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
}

.converter-reference-card[b-z9hmzdg9j6],
.converter-related[b-z9hmzdg9j6] {
    padding: 20px;
}

.converter-reference-card ul[b-z9hmzdg9j6] {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    padding-left: 20px;
    color: #536179;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.5;
}

.converter-reference-card p[b-z9hmzdg9j6] {
    margin: 14px 0 0;
    color: #536179;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.6;
}

.converter-related[b-z9hmzdg9j6] {
    display: grid;
    gap: 14px;
}

.landing-section-heading[b-z9hmzdg9j6] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.landing-section-heading h2[b-z9hmzdg9j6] {
    margin: 0;
    color: #111827;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.25;
}

.landing-section-heading span[b-z9hmzdg9j6] {
    color: #536179;
    font-size: 13px;
    font-weight: 700;
}

.landing-tool-card[b-z9hmzdg9j6] {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-height: 96px;
    padding: 18px;
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    background: #ffffff;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.landing-tool-card:hover[b-z9hmzdg9j6],
.landing-tool-card:focus-visible[b-z9hmzdg9j6] {
    border-color: #b7c3d4;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.landing-tool-icon[b-z9hmzdg9j6] {
    color: var(--landing-copper);
    font-size: 30px;
    line-height: 1;
    text-align: center;
}

.landing-tool-copy[b-z9hmzdg9j6] {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
}

.landing-tool-card strong[b-z9hmzdg9j6] {
    color: #111827;
    font-size: 13px;
    font-weight: 900;
}

.landing-tool-card p[b-z9hmzdg9j6] {
    margin: 0;
    color: #536179;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.landing-tool-arrow[b-z9hmzdg9j6] {
    color: #64748b;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 1100px) {
    .converter-workspace[b-z9hmzdg9j6],
    .converter-reference-grid[b-z9hmzdg9j6] {
        grid-template-columns: 1fr;
    }

    .converter-result-panel[b-z9hmzdg9j6] {
        position: static;
    }
}

@media (max-width: 780px) {
    .converter-page[b-z9hmzdg9j6] {
        padding-right: 18px;
        padding-left: 18px;
    }

    .converter-heading h1[b-z9hmzdg9j6] {
        font-size: 34px;
    }

    .converter-card-header[b-z9hmzdg9j6],
    .landing-section-heading[b-z9hmzdg9j6] {
        align-items: stretch;
        flex-direction: column;
    }

    .converter-form-grid[b-z9hmzdg9j6],
    .converter-click-grid[b-z9hmzdg9j6] {
        grid-template-columns: 1fr;
    }

    .converter-field-wide[b-z9hmzdg9j6] {
        min-width: 0;
    }

    .converter-summary-list div[b-z9hmzdg9j6],
    .converter-click-result dl div[b-z9hmzdg9j6] {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .converter-summary-list dd[b-z9hmzdg9j6],
    .converter-click-result dd[b-z9hmzdg9j6] {
        text-align: left;
    }

    .landing-tool-card[b-z9hmzdg9j6] {
        grid-template-columns: 36px minmax(0, 1fr);
    }

    .landing-tool-arrow[b-z9hmzdg9j6] {
        display: none;
    }
}
/* /Components/Pages/Public/PublicFront.razor.rz.scp.css */
.landing-button[b-mozkckghhn] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid var(--landing-blue);
    border-radius: 8px;
    background: var(--landing-blue);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(8, 102, 255, 0.16);
    font-size: 16px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.landing-button:hover[b-mozkckghhn],
.landing-button:focus-visible[b-mozkckghhn] {
    background: var(--landing-blue-dark);
    border-color: var(--landing-blue-dark);
    box-shadow: 0 14px 26px rgba(8, 102, 255, 0.22);
    transform: translateY(-1px);
}

.landing-button-small[b-mozkckghhn] {
    min-height: 50px;
    min-width: 144px;
    padding: 0 22px;
}

.landing-button-secondary[b-mozkckghhn] {
    border-color: var(--landing-border);
    background: #ffffff;
    color: var(--landing-blue);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.landing-button-secondary:hover[b-mozkckghhn],
.landing-button-secondary:focus-visible[b-mozkckghhn] {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: var(--landing-blue-dark);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.landing-hero[b-mozkckghhn] {
    display: block;
    padding: 42px clamp(24px, 4vw, 76px) 30px;
    border-bottom: 1px solid var(--landing-border);
}

.landing-hero-copy[b-mozkckghhn] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 760px;
}

.landing-eyebrow[b-mozkckghhn] {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--landing-border);
    border-radius: 999px;
    color: #44506a;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.landing-eyebrow-icon[b-mozkckghhn] {
    position: relative;
    width: 25px;
    height: 25px;
    border: 2px solid #111827;
    border-radius: 50%;
}

.landing-eyebrow-icon[b-mozkckghhn]::before,
.landing-eyebrow-icon[b-mozkckghhn]::after {
    position: absolute;
    inset: 50% auto auto 50%;
    display: block;
    width: 15px;
    height: 2px;
    background: #111827;
    content: "";
    transform: translate(-50%, -50%);
}

.landing-eyebrow-icon[b-mozkckghhn]::after {
    width: 2px;
    height: 15px;
}

.landing-hero h1[b-mozkckghhn] {
    max-width: 680px;
    margin: 26px 0 22px;
    color: #111827;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0;
}

.landing-hero h1 span[b-mozkckghhn] {
    color: var(--landing-copper);
}

.landing-hero-copy > p[b-mozkckghhn] {
    max-width: 650px;
    margin: 0;
    color: var(--landing-muted);
    font-size: clamp(18px, 1.35vw, 22px);
    font-weight: 500;
    line-height: 1.65;
}

.landing-hero-actions[b-mozkckghhn] {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 34px;
}

.landing-proof-list[b-mozkckghhn] {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 25px;
    color: #536179;
    font-size: 13px;
    font-weight: 650;
}

.landing-proof-list span[b-mozkckghhn] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.landing-proof-list i[b-mozkckghhn] {
    color: var(--landing-copper);
    font-size: 13px;
}

.landing-product-panel[b-mozkckghhn] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
    padding: 16px;
    border: 1px solid var(--landing-border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.landing-preview-image-card[b-mozkckghhn] {
    min-width: 0;
    margin: 0;
}

.landing-preview-image-card img[b-mozkckghhn] {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.landing-preview-card[b-mozkckghhn] {
    min-width: 0;
    border: 1px solid var(--landing-border);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.landing-preview-title[b-mozkckghhn] {
    padding: 14px 16px 8px;
    color: #111827;
    font-size: 13px;
    font-weight: 850;
}

.landing-preview-target[b-mozkckghhn],
.landing-preview-loads[b-mozkckghhn] {
    grid-column: 1;
}

.landing-preview-turret[b-mozkckghhn],
.landing-preview-firearm[b-mozkckghhn] {
    grid-column: 2;
}

.landing-target-layout[b-mozkckghhn] {
    display: grid;
    grid-template-columns: 1fr minmax(140px, 0.68fr);
    gap: 16px;
    padding: 4px 16px 16px;
}

.landing-target-board[b-mozkckghhn] {
    position: relative;
    min-height: 235px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #cfd8e5;
    background:
        linear-gradient(#d5dbe6 1px, transparent 1px),
        linear-gradient(90deg, #d5dbe6 1px, transparent 1px),
        #f9fafb;
    background-size: 12px 12px;
}

.landing-target-line[b-mozkckghhn] {
    position: absolute;
    display: block;
    background: #050505;
}

.landing-target-line-vertical[b-mozkckghhn] {
    top: 0;
    bottom: 0;
    left: 43%;
    width: 18px;
    box-shadow: 54px 0 0 #050505;
}

.landing-target-line-horizontal[b-mozkckghhn] {
    top: 50%;
    right: 0;
    left: 0;
    height: 18px;
    transform: translateY(-50%);
    box-shadow: 0 -54px 0 #050505;
}

.landing-impact[b-mozkckghhn] {
    position: absolute;
    width: 13px;
    height: 13px;
    border: 2px solid #e11d48;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6);
}

.impact-one[b-mozkckghhn] {
    left: 49%;
    top: 48%;
}

.impact-two[b-mozkckghhn] {
    left: 53%;
    top: 52%;
    border-color: #16a34a;
}

.impact-three[b-mozkckghhn] {
    left: 47%;
    top: 56%;
    border-color: #f97316;
}

.impact-four[b-mozkckghhn] {
    left: 56%;
    top: 46%;
    border-color: #facc15;
}

.impact-five[b-mozkckghhn] {
    left: 51%;
    top: 61%;
    border-color: #dc2626;
}

.landing-analysis-metrics[b-mozkckghhn] {
    display: grid;
    gap: 8px;
}

.landing-analysis-metrics div[b-mozkckghhn],
.landing-turret-metrics div[b-mozkckghhn],
.landing-log-stats div[b-mozkckghhn] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 49px;
    padding: 9px 12px;
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    background: #ffffff;
}

.landing-analysis-metrics span[b-mozkckghhn],
.landing-turret-metrics span[b-mozkckghhn],
.landing-log-stats span[b-mozkckghhn] {
    color: #64748b;
    font-size: 11px;
    font-weight: 650;
}

.landing-analysis-metrics div:first-child strong[b-mozkckghhn] {
    color: var(--landing-blue);
    font-size: 26px;
    font-weight: 900;
    line-height: 1.05;
}

.landing-analysis-metrics small[b-mozkckghhn] {
    color: #111827;
    font-size: 10px;
    font-weight: 700;
}

.landing-analysis-metrics div:not(:first-child) strong[b-mozkckghhn],
.landing-turret-metrics strong[b-mozkckghhn],
.landing-log-stats strong[b-mozkckghhn] {
    color: #111827;
    font-size: 14px;
    font-weight: 850;
}

.landing-analysis-metrics .landing-danger[b-mozkckghhn] {
    color: #dc2626;
}

.landing-turret-layout[b-mozkckghhn] {
    display: grid;
    grid-template-columns: 1fr 0.84fr;
    gap: 18px;
    align-items: center;
    padding: 4px 16px 16px;
}

.landing-turret[b-mozkckghhn] {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 215px;
}

.landing-turret-cap[b-mozkckghhn] {
    width: 170px;
    height: 32px;
    margin: 0 auto -2px;
    border-radius: 60px 60px 14px 14px;
    background: repeating-linear-gradient(90deg, #111827 0 6px, #2f3543 6px 11px);
    box-shadow: inset 0 -8px 16px rgba(255, 255, 255, 0.18);
}

.landing-turret-body[b-mozkckghhn] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: min(210px, 100%);
    height: 140px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 18px 18px 8px 8px;
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.9) 0 2px, transparent 2px 16px),
        linear-gradient(90deg, #111827, #475569 38%, #111827);
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
}

.landing-turret-body[b-mozkckghhn]::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 18px;
    background: #111827;
    content: "";
}

.landing-turret-metrics[b-mozkckghhn] {
    display: grid;
    gap: 9px;
}

.landing-preview-loads table[b-mozkckghhn] {
    width: calc(100% - 32px);
    margin: 4px 16px 12px;
    border-collapse: collapse;
    font-size: 11px;
}

.landing-preview-loads th[b-mozkckghhn] {
    color: #6b7280;
    font-weight: 800;
    text-align: left;
}

.landing-preview-loads td[b-mozkckghhn],
.landing-preview-loads th[b-mozkckghhn] {
    padding: 7px 0;
    border-bottom: 1px solid #edf1f6;
    white-space: nowrap;
}

.landing-preview-tabs[b-mozkckghhn] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 0 16px 14px;
}

.landing-preview-tabs span[b-mozkckghhn] {
    display: inline-flex;
    justify-content: center;
    min-height: 28px;
    padding: 8px 10px;
    border: 1px solid var(--landing-border);
    border-radius: 6px;
    color: #44506a;
    font-size: 10px;
    font-weight: 750;
    white-space: nowrap;
}

.landing-firearm-row[b-mozkckghhn] {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 18px;
    align-items: center;
    padding: 4px 16px 16px;
}

.landing-firearm-row div:first-child[b-mozkckghhn] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.landing-firearm-row strong[b-mozkckghhn] {
    color: #111827;
    font-size: 15px;
    font-weight: 900;
}

.landing-firearm-row span[b-mozkckghhn] {
    color: #64748b;
    font-size: 13px;
    font-weight: 650;
}

.landing-rifle[b-mozkckghhn] {
    position: relative;
    height: 54px;
}

.landing-rifle[b-mozkckghhn]::before {
    position: absolute;
    top: 20px;
    right: 14px;
    left: 8px;
    height: 12px;
    border-radius: 4px;
    background: #111827;
    box-shadow: 0 -15px 0 -5px #111827, 36px 13px 0 -2px #111827, 90px -8px 0 -4px #111827;
    content: "";
}

.landing-rifle[b-mozkckghhn]::after {
    position: absolute;
    top: 12px;
    right: 0;
    width: 58px;
    height: 30px;
    border-radius: 5px 20px 20px 5px;
    background: #111827;
    content: "";
}

.landing-log-stats[b-mozkckghhn] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0 16px 14px;
}

.landing-section[b-mozkckghhn] {
    padding: 28px clamp(24px, 4vw, 76px);
}

.landing-section-heading[b-mozkckghhn] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 14px;
}

.landing-section-heading h2[b-mozkckghhn],
.landing-feature-intro h2[b-mozkckghhn] {
    margin: 0;
    color: #111827;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.25;
}

.landing-section-heading span[b-mozkckghhn] {
    color: #536179;
    font-size: 13px;
    font-weight: 700;
}

.landing-tool-grid[b-mozkckghhn] {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.landing-tool-card[b-mozkckghhn] {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-height: 118px;
    padding: 20px 18px;
    border: 1px solid var(--landing-border);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

a.landing-tool-card:hover[b-mozkckghhn],
a.landing-tool-card:focus-visible[b-mozkckghhn] {
    border-color: #b7c3d4;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.landing-tool-card-muted[b-mozkckghhn] {
    padding-top: 28px;
    color: #64748b;
}

.landing-tool-card-muted .landing-tool-icon[b-mozkckghhn],
.landing-tool-card-muted strong[b-mozkckghhn] {
    opacity: 0.72;
}

.landing-tool-icon[b-mozkckghhn] {
    color: var(--landing-copper);
    font-size: 34px;
    line-height: 1;
    text-align: center;
}

.landing-feature-icon[b-mozkckghhn],
.landing-stat-icon[b-mozkckghhn] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--landing-copper);
    font-size: 25px;
    font-weight: 900;
}

.landing-tool-copy[b-mozkckghhn] {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
}

.landing-tool-card strong[b-mozkckghhn] {
    color: #111827;
    font-size: 13px;
    font-weight: 900;
}

.landing-tool-card p[b-mozkckghhn] {
    margin: 0;
    color: #536179;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.landing-tool-arrow[b-mozkckghhn] {
    color: #64748b;
    font-size: 18px;
    line-height: 1;
}

.landing-badge[b-mozkckghhn] {
    position: absolute;
    top: 10px;
    right: 12px;
    padding: 3px 8px;
    border: 1px solid rgba(8, 102, 255, 0.28);
    border-radius: 999px;
    color: var(--landing-blue);
    background: #eff6ff;
    font-size: 10px;
    font-weight: 800;
}

.landing-features[b-mozkckghhn] {
    display: grid;
    grid-template-columns: 310px 1fr;
    gap: 32px;
    align-items: stretch;
}

.landing-feature-intro[b-mozkckghhn] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 13px;
}

.landing-feature-intro p[b-mozkckghhn] {
    margin: 0;
    color: #536179;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

.landing-feature-intro a[b-mozkckghhn] {
    color: var(--landing-blue);
    font-size: 14px;
    font-weight: 850;
}

.landing-feature-grid[b-mozkckghhn] {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.landing-feature-grid article[b-mozkckghhn] {
    min-height: 146px;
    padding: 20px 18px 18px;
    border: 1px solid var(--landing-border);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.landing-feature-grid h3[b-mozkckghhn] {
    margin: 14px 0 8px;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
}

.landing-feature-grid p[b-mozkckghhn] {
    margin: 0;
    color: #536179;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.landing-stats[b-mozkckghhn] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0 clamp(24px, 4vw, 76px) 24px;
    border: 1px solid var(--landing-border);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.landing-stats div[b-mozkckghhn] {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
    column-gap: 14px;
    row-gap: 2px;
    min-height: 82px;
    padding: 16px;
}

.landing-stats div + div[b-mozkckghhn] {
    border-left: 1px solid var(--landing-border);
}

.landing-stat-icon[b-mozkckghhn] {
    grid-row: 1 / 3;
    color: #536179;
    border-color: #c5ceda;
    background: #f8fafc;
}

.landing-stats strong[b-mozkckghhn] {
    color: var(--landing-blue);
    font-size: 23px;
    font-weight: 900;
    line-height: 1;
}

.landing-stats span:last-child[b-mozkckghhn] {
    color: #536179;
    font-size: 12px;
    font-weight: 650;
}

.landing-footer[b-mozkckghhn] {
    display: grid;
    grid-template-columns: 1.2fr 2.4fr 1.15fr;
    gap: 56px;
    padding: 28px clamp(24px, 4vw, 76px) 38px;
    border-top: 1px solid var(--landing-border);
    background: #ffffff;
}

.landing-footer-brand[b-mozkckghhn] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.landing-footer-brand img[b-mozkckghhn] {
    width: 172px;
    height: auto;
}

.landing-footer-brand span[b-mozkckghhn],
.landing-footer-note span[b-mozkckghhn] {
    color: #667085;
    font-size: 12px;
    font-weight: 600;
}

.landing-footer nav[b-mozkckghhn] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
}

.landing-footer nav div[b-mozkckghhn],
.landing-footer-note[b-mozkckghhn] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.landing-footer strong[b-mozkckghhn] {
    color: #111827;
    font-size: 12px;
    font-weight: 900;
}

.landing-footer a[b-mozkckghhn] {
    color: #44506a;
    font-size: 12px;
    font-weight: 650;
}

.landing-footer-note div[b-mozkckghhn] {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.landing-footer-note div a[b-mozkckghhn] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--landing-border);
    border-radius: 50%;
    color: #334155;
    background: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

@media (max-width: 1320px) {
    .landing-hero[b-mozkckghhn] {
        grid-template-columns: 1fr;
    }

    .landing-product-panel[b-mozkckghhn] {
        max-width: 980px;
        width: 100%;
    }

    .landing-tool-grid[b-mozkckghhn] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .landing-features[b-mozkckghhn] {
        grid-template-columns: 1fr;
    }

    .landing-feature-grid[b-mozkckghhn] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .landing-hero-actions[b-mozkckghhn] {
        flex-wrap: wrap;
        gap: 14px;
    }

    .landing-product-panel[b-mozkckghhn] {
        grid-template-columns: 1fr;
    }

    .landing-preview-target[b-mozkckghhn],
    .landing-preview-loads[b-mozkckghhn],
    .landing-preview-turret[b-mozkckghhn],
    .landing-preview-firearm[b-mozkckghhn] {
        grid-column: 1;
    }

    .landing-footer[b-mozkckghhn] {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 720px) {
    .landing-hero[b-mozkckghhn],
    .landing-section[b-mozkckghhn],
    .landing-footer[b-mozkckghhn] {
        padding-right: 18px;
        padding-left: 18px;
    }

    .landing-hero[b-mozkckghhn] {
        padding-top: 28px;
    }

    .landing-eyebrow[b-mozkckghhn] {
        min-height: auto;
        padding: 10px 13px;
        font-size: 11px;
    }

    .landing-hero h1[b-mozkckghhn] {
        font-size: 39px;
    }

    .landing-hero-copy > p[b-mozkckghhn] {
        font-size: 16px;
    }

    .landing-target-layout[b-mozkckghhn],
    .landing-turret-layout[b-mozkckghhn],
    .landing-firearm-row[b-mozkckghhn],
    .landing-log-stats[b-mozkckghhn] {
        grid-template-columns: 1fr;
    }

    .landing-preview-tabs[b-mozkckghhn] {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-tool-grid[b-mozkckghhn],
    .landing-feature-grid[b-mozkckghhn],
    .landing-stats[b-mozkckghhn],
    .landing-footer nav[b-mozkckghhn] {
        grid-template-columns: 1fr;
    }

    .landing-stats[b-mozkckghhn] {
        margin-right: 18px;
        margin-left: 18px;
    }

    .landing-stats div + div[b-mozkckghhn] {
        border-top: 1px solid var(--landing-border);
        border-left: 0;
    }
}
/* /Components/Pages/Public/ShootingTargetsPage.razor.rz.scp.css */
.target-download-page[b-7qm7jw5bx0] {
    display: grid;
    gap: 0;
}

.target-download-breadcrumb[b-7qm7jw5bx0],
.target-download-heading[b-7qm7jw5bx0],
.target-download-section[b-7qm7jw5bx0] {
    padding: 24px clamp(24px, 4vw, 76px);
}

.target-download-breadcrumb[b-7qm7jw5bx0] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 13px;
    font-weight: 750;
}

.target-download-breadcrumb a[b-7qm7jw5bx0] {
    color: var(--landing-blue);
}

.target-download-heading[b-7qm7jw5bx0] {
    border-top: 1px solid var(--landing-border);
    border-bottom: 1px solid var(--landing-border);
}

.target-download-heading h1[b-7qm7jw5bx0] {
    max-width: 820px;
    margin: 20px 0 14px;
    color: #111827;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0;
}

.target-download-heading p[b-7qm7jw5bx0] {
    max-width: 760px;
    margin: 0;
    color: var(--landing-muted);
    font-size: 17px;
    font-weight: 550;
    line-height: 1.65;
}

.target-download-eyebrow[b-7qm7jw5bx0] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--landing-border);
    border-radius: 999px;
    color: #44506a;
    background: #ffffff;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.target-download-eyebrow i[b-7qm7jw5bx0] {
    color: var(--landing-copper);
}

.landing-section-heading[b-7qm7jw5bx0] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 14px;
}

.landing-section-heading h2[b-7qm7jw5bx0] {
    margin: 0;
    color: #111827;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.25;
}

.landing-section-heading span[b-7qm7jw5bx0] {
    color: #536179;
    font-size: 13px;
    font-weight: 700;
}

.target-download-grid[b-7qm7jw5bx0] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: 18px;
}

.target-download-card[b-7qm7jw5bx0] {
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--landing-border);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.target-preview[b-7qm7jw5bx0] {
    display: grid;
    place-items: center;
    min-height: 260px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #f8fafc;
    overflow: hidden;
}

.target-preview-sheet[b-7qm7jw5bx0] {
    display: grid;
    place-items: center;
    width: min(72%, 220px);
    aspect-ratio: 297 / 420;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
}

.target-preview-sheet img[b-7qm7jw5bx0] {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.target-download-copy[b-7qm7jw5bx0] {
    display: grid;
    gap: 8px;
}

.target-download-copy span[b-7qm7jw5bx0] {
    color: var(--landing-copper);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.target-download-copy h2[b-7qm7jw5bx0] {
    margin: 0;
    color: #111827;
    font-size: 16px;
    font-weight: 900;
}

.target-download-copy p[b-7qm7jw5bx0],
.target-download-copy p[b-7qm7jw5bx0] {
    margin: 0;
    color: #536179;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.55;
}

.target-download-actions[b-7qm7jw5bx0] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.target-download-actions a[b-7qm7jw5bx0] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    background: #f8fafc;
    color: #64748b;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}

.target-download-actions a:hover[b-7qm7jw5bx0] {
    border-color: #c5d1e1;
    background: #ffffff;
    color: #111827;
}

@media (max-width: 720px) {
    .target-download-breadcrumb[b-7qm7jw5bx0],
    .target-download-heading[b-7qm7jw5bx0],
    .target-download-section[b-7qm7jw5bx0] {
        padding-right: 18px;
        padding-left: 18px;
    }

    .target-download-heading h1[b-7qm7jw5bx0] {
        font-size: 34px;
    }

    .landing-section-heading[b-7qm7jw5bx0] {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* /Components/Pages/Public/ToolsPage.razor.rz.scp.css */
.public-tools-page[b-qvmykskb6x] {
    display: grid;
    gap: 0;
}

.public-tools-hero[b-qvmykskb6x],
.public-tools-section[b-qvmykskb6x] {
    padding: 34px clamp(24px, 4vw, 76px);
}

.public-tools-hero[b-qvmykskb6x] {
    border-bottom: 1px solid var(--landing-border);
}

.public-tools-section-muted[b-qvmykskb6x] {
    border-top: 1px solid var(--landing-border);
    background: #f8fafc;
}

.public-tools-hero > div[b-qvmykskb6x] {
    max-width: 760px;
}

.public-tools-eyebrow[b-qvmykskb6x] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--landing-border);
    border-radius: 999px;
    color: #44506a;
    background: #ffffff;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.public-tools-eyebrow i[b-qvmykskb6x] {
    color: var(--landing-copper);
}

.public-tools-hero h1[b-qvmykskb6x] {
    margin: 22px 0 14px;
    color: #111827;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0;
}

.public-tools-hero p[b-qvmykskb6x] {
    max-width: 650px;
    margin: 0;
    color: var(--landing-muted);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.65;
}

.public-tools-grid[b-qvmykskb6x] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: 16px;
}

.landing-section-heading[b-qvmykskb6x] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 14px;
}

.landing-section-heading h2[b-qvmykskb6x] {
    margin: 0;
    color: #111827;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.25;
}

.landing-section-heading span[b-qvmykskb6x] {
    color: #536179;
    font-size: 13px;
    font-weight: 700;
}

.landing-tool-card[b-qvmykskb6x] {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-height: 118px;
    padding: 20px 18px;
    border: 1px solid var(--landing-border);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.landing-tool-card-muted[b-qvmykskb6x] {
    padding-top: 28px;
    color: #64748b;
    box-shadow: none;
}

.landing-tool-card-muted:hover[b-qvmykskb6x],
.landing-tool-card-muted:focus-visible[b-qvmykskb6x] {
    border-color: var(--landing-border);
    box-shadow: none;
    transform: none;
}

.landing-tool-card-muted .landing-tool-icon[b-qvmykskb6x],
.landing-tool-card-muted strong[b-qvmykskb6x] {
    opacity: 0.72;
}

.landing-tool-card:hover[b-qvmykskb6x],
.landing-tool-card:focus-visible[b-qvmykskb6x] {
    border-color: #b7c3d4;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.landing-tool-icon[b-qvmykskb6x] {
    color: var(--landing-copper);
    font-size: 34px;
    line-height: 1;
    text-align: center;
}

.landing-tool-copy[b-qvmykskb6x] {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
}

.landing-tool-card strong[b-qvmykskb6x] {
    color: #111827;
    font-size: 13px;
    font-weight: 900;
}

.landing-tool-title-row[b-qvmykskb6x] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.landing-badge[b-qvmykskb6x] {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 8px;
    border: 1px solid rgba(8, 102, 255, 0.2);
    border-radius: 999px;
    background: #eff6ff;
    color: var(--landing-blue);
    font-size: 11px;
    font-weight: 850;
}

.landing-tool-card p[b-qvmykskb6x] {
    margin: 0;
    color: #536179;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.landing-tool-arrow[b-qvmykskb6x] {
    color: #64748b;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 980px) {
    .public-tools-grid[b-qvmykskb6x] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .public-tools-hero[b-qvmykskb6x],
    .public-tools-section[b-qvmykskb6x] {
        padding-right: 18px;
        padding-left: 18px;
    }

    .public-tools-hero h1[b-qvmykskb6x] {
        font-size: 34px;
    }

    .landing-section-heading[b-qvmykskb6x] {
        align-items: flex-start;
        flex-direction: column;
    }

    .public-tools-grid[b-qvmykskb6x] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Public/UnitConversionsPage.razor.rz.scp.css */
.unit-page[b-bq8zktxftt] {
    display: grid;
    gap: 28px;
    padding: 24px clamp(24px, 4vw, 76px) 42px;
}

.unit-breadcrumb[b-bq8zktxftt] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #536179;
    font-size: 13px;
    font-weight: 700;
}

.unit-breadcrumb a[b-bq8zktxftt] {
    color: var(--landing-blue);
}

.unit-heading[b-bq8zktxftt] {
    max-width: 820px;
}

.unit-eyebrow[b-bq8zktxftt] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--landing-border);
    border-radius: 999px;
    color: #44506a;
    background: #ffffff;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.unit-eyebrow i[b-bq8zktxftt] {
    color: var(--landing-copper);
}

.unit-heading h1[b-bq8zktxftt] {
    margin: 20px 0 12px;
    color: #111827;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0;
}

.unit-heading p[b-bq8zktxftt] {
    margin: 0;
    color: var(--landing-muted);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.65;
}

.unit-workspace[b-bq8zktxftt] {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(19rem, 0.65fr);
    gap: 18px;
    align-items: start;
}

.unit-card[b-bq8zktxftt],
.unit-shortcut-panel[b-bq8zktxftt],
.unit-reference-card[b-bq8zktxftt],
.unit-related[b-bq8zktxftt] {
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.unit-card[b-bq8zktxftt] {
    display: grid;
    gap: 20px;
    min-width: 0;
    padding: 20px;
}

.unit-card-header[b-bq8zktxftt] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.unit-card-header h2[b-bq8zktxftt],
.unit-result-panel h2[b-bq8zktxftt],
.unit-also-equals h2[b-bq8zktxftt],
.unit-side-section h2[b-bq8zktxftt],
.unit-reference-card h2[b-bq8zktxftt],
.unit-related h2[b-bq8zktxftt] {
    margin: 0;
    color: #111827;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.25;
}

.unit-card-header p[b-bq8zktxftt] {
    margin: 5px 0 0;
    color: #536179;
    font-size: 13px;
    font-weight: 650;
}

.unit-category-tabs[b-bq8zktxftt] {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.unit-category-tab[b-bq8zktxftt],
.unit-action-button[b-bq8zktxftt],
.unit-swap-button[b-bq8zktxftt],
.unit-copy-button[b-bq8zktxftt],
.unit-shortcut-list button[b-bq8zktxftt],
.unit-example-list button[b-bq8zktxftt] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    background: #ffffff;
    color: #111827;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: border-color 140ms ease, color 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
}

.unit-category-tab:hover[b-bq8zktxftt],
.unit-category-tab:focus-visible[b-bq8zktxftt],
.unit-action-button:hover[b-bq8zktxftt],
.unit-action-button:focus-visible[b-bq8zktxftt],
.unit-swap-button:hover[b-bq8zktxftt],
.unit-swap-button:focus-visible[b-bq8zktxftt],
.unit-copy-button:hover[b-bq8zktxftt],
.unit-copy-button:focus-visible[b-bq8zktxftt],
.unit-shortcut-list button:hover[b-bq8zktxftt],
.unit-shortcut-list button:focus-visible[b-bq8zktxftt],
.unit-example-list button:hover[b-bq8zktxftt],
.unit-example-list button:focus-visible[b-bq8zktxftt] {
    border-color: #b7c3d4;
    background: #f8fafc;
    color: var(--landing-blue);
}

.unit-category-tab-active[b-bq8zktxftt] {
    border-color: var(--landing-blue);
    background: #eff6ff;
    color: var(--landing-blue);
    box-shadow: inset 0 0 0 1px rgba(8, 102, 255, 0.12);
}

.unit-category-select[b-bq8zktxftt] {
    display: none;
}

.unit-converter-grid[b-bq8zktxftt] {
    display: grid;
    grid-template-columns: minmax(12rem, 1fr) minmax(12rem, 0.82fr) auto minmax(12rem, 0.82fr);
    gap: 14px;
    align-items: end;
}

.unit-field[b-bq8zktxftt] {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.unit-swap-button[b-bq8zktxftt] {
    min-height: 42px;
    padding: 0 12px;
}

.unit-validation[b-bq8zktxftt] {
    color: #dc2626;
    font-size: 12px;
    font-weight: 700;
}

.unit-info-note[b-bq8zktxftt],
.unit-inline-note[b-bq8zktxftt],
.unit-pressure-warning[b-bq8zktxftt] {
    margin: 0;
    color: #536179;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.unit-inline-note code[b-bq8zktxftt] {
    color: #111827;
    font-weight: 900;
}

.unit-pressure-warning[b-bq8zktxftt] {
    padding: 12px 14px;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    background: #fff7ed;
    color: #9a3412;
}

.unit-result-panel[b-bq8zktxftt] {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(8, 102, 255, 0.2);
    border-radius: 8px;
    background: #eff6ff;
}

.unit-result-panel > span[b-bq8zktxftt] {
    color: #536179;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.unit-result-panel h2[b-bq8zktxftt] {
    color: var(--landing-blue);
    font-size: 30px;
    line-height: 1.1;
}

.unit-result-panel p[b-bq8zktxftt] {
    margin: 0;
    color: #334155;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.55;
}

.unit-result-actions[b-bq8zktxftt] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.unit-result-actions span[b-bq8zktxftt] {
    color: #536179;
    font-size: 12px;
    font-weight: 650;
}

.unit-copy-button[b-bq8zktxftt] {
    border-color: rgba(8, 102, 255, 0.28);
    min-height: 34px;
}

.unit-also-equals[b-bq8zktxftt] {
    display: grid;
    gap: 12px;
}

.unit-result-list[b-bq8zktxftt] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.unit-result-row[b-bq8zktxftt] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    background: #ffffff;
}

.unit-result-row span[b-bq8zktxftt] {
    min-width: 0;
    color: #536179;
    font-size: 12px;
    font-weight: 750;
}

.unit-result-row strong[b-bq8zktxftt] {
    color: #111827;
    font-size: 13px;
    font-weight: 900;
    text-align: right;
    white-space: nowrap;
}

.unit-result-row-selected[b-bq8zktxftt] {
    border-color: rgba(8, 102, 255, 0.36);
    background: #eff6ff;
}

.unit-shortcut-panel[b-bq8zktxftt] {
    position: sticky;
    top: 18px;
    display: grid;
    gap: 18px;
    min-width: 0;
    padding: 20px;
}

.unit-side-section[b-bq8zktxftt] {
    display: grid;
    gap: 12px;
}

.unit-shortcut-list[b-bq8zktxftt],
.unit-example-list[b-bq8zktxftt] {
    display: grid;
    gap: 8px;
}

.unit-shortcut-list button[b-bq8zktxftt] {
    justify-content: space-between;
    min-height: 44px;
    width: 100%;
}

.unit-shortcut-list span[b-bq8zktxftt] {
    overflow: hidden;
    text-overflow: ellipsis;
}

.unit-shortcut-list strong[b-bq8zktxftt] {
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
}

.unit-example-list[b-bq8zktxftt] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.unit-example-list button[b-bq8zktxftt] {
    min-width: 0;
}

.unit-reference-grid[b-bq8zktxftt] {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    gap: 18px;
}

.unit-reference-card[b-bq8zktxftt],
.unit-related[b-bq8zktxftt] {
    padding: 20px;
}

.unit-reference-columns[b-bq8zktxftt] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.unit-reference-card ul[b-bq8zktxftt] {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    padding-left: 20px;
    color: #536179;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.5;
}

.unit-reference-card p[b-bq8zktxftt] {
    margin: 14px 0 0;
    color: #536179;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.6;
}

.unit-safety-card[b-bq8zktxftt] {
    border-color: #fed7aa;
    background: #fff7ed;
}

.unit-safety-card h2[b-bq8zktxftt],
.unit-safety-card p[b-bq8zktxftt] {
    color: #9a3412;
}

.unit-related[b-bq8zktxftt] {
    display: grid;
    gap: 14px;
}

.unit-related-grid[b-bq8zktxftt] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.landing-section-heading[b-bq8zktxftt] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.landing-section-heading h2[b-bq8zktxftt] {
    margin: 0;
    color: #111827;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.25;
}

.landing-section-heading span[b-bq8zktxftt] {
    color: #536179;
    font-size: 13px;
    font-weight: 700;
}

.landing-tool-card[b-bq8zktxftt] {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-height: 96px;
    padding: 18px;
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    background: #ffffff;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.landing-tool-card:hover[b-bq8zktxftt],
.landing-tool-card:focus-visible[b-bq8zktxftt] {
    border-color: #b7c3d4;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.landing-tool-icon[b-bq8zktxftt] {
    color: var(--landing-copper);
    font-size: 30px;
    line-height: 1;
    text-align: center;
}

.landing-tool-copy[b-bq8zktxftt] {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
}

.landing-tool-card strong[b-bq8zktxftt] {
    color: #111827;
    font-size: 13px;
    font-weight: 900;
}

.landing-tool-card p[b-bq8zktxftt] {
    margin: 0;
    color: #536179;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.landing-tool-arrow[b-bq8zktxftt] {
    color: #64748b;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 1180px) {
    .unit-workspace[b-bq8zktxftt],
    .unit-reference-grid[b-bq8zktxftt] {
        grid-template-columns: 1fr;
    }

    .unit-shortcut-panel[b-bq8zktxftt] {
        position: static;
    }
}

@media (max-width: 860px) {
    .unit-converter-grid[b-bq8zktxftt],
    .unit-result-list[b-bq8zktxftt],
    .unit-reference-columns[b-bq8zktxftt],
    .unit-related-grid[b-bq8zktxftt] {
        grid-template-columns: 1fr;
    }

    .unit-swap-button[b-bq8zktxftt] {
        justify-self: start;
    }
}

@media (max-width: 720px) {
    .unit-page[b-bq8zktxftt] {
        padding-right: 18px;
        padding-left: 18px;
    }

    .unit-heading h1[b-bq8zktxftt] {
        font-size: 34px;
    }

    .unit-card-header[b-bq8zktxftt],
    .landing-section-heading[b-bq8zktxftt] {
        align-items: stretch;
        flex-direction: column;
    }

    .unit-category-tabs[b-bq8zktxftt] {
        display: none;
    }

    .unit-category-select[b-bq8zktxftt] {
        display: grid;
        gap: 6px;
    }

    .unit-result-panel h2[b-bq8zktxftt] {
        font-size: 24px;
    }

    .unit-result-row[b-bq8zktxftt] {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .unit-result-row strong[b-bq8zktxftt] {
        text-align: left;
        white-space: normal;
    }

    .unit-example-list[b-bq8zktxftt] {
        grid-template-columns: 1fr;
    }

    .landing-tool-card[b-bq8zktxftt] {
        grid-template-columns: 36px minmax(0, 1fr);
    }

    .landing-tool-arrow[b-bq8zktxftt] {
        display: none;
    }
}
/* /Components/Pages/Public/VelocityDropPage.razor.rz.scp.css */
.velocity-page[b-spdrr9bn80] {
    display: grid;
    gap: 28px;
    padding: 24px clamp(24px, 4vw, 76px) 42px;
}

.velocity-breadcrumb[b-spdrr9bn80] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #536179;
    font-size: 13px;
    font-weight: 700;
}

.velocity-breadcrumb a[b-spdrr9bn80] {
    color: var(--landing-blue);
}

.velocity-heading[b-spdrr9bn80] {
    max-width: 860px;
}

.velocity-heading h1[b-spdrr9bn80] {
    max-width: 860px;
    margin: 20px 0 14px;
    color: #111827;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: 0;
}

.velocity-heading p[b-spdrr9bn80] {
    max-width: 780px;
    margin: 0;
    color: var(--landing-muted);
    font-size: 17px;
    font-weight: 550;
    line-height: 1.65;
}

.velocity-eyebrow[b-spdrr9bn80],
.velocity-badge[b-spdrr9bn80],
.velocity-assumption-list span[b-spdrr9bn80] {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--landing-border);
    border-radius: 999px;
    background: #ffffff;
    color: #44506a;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.velocity-eyebrow i[b-spdrr9bn80] {
    color: var(--landing-copper);
}

.velocity-badge[b-spdrr9bn80] {
    min-height: 30px;
    background: #f8fafc;
    text-transform: none;
}

.velocity-badge-live[b-spdrr9bn80] {
    border-color: rgba(22, 163, 74, 0.25);
    background: #f0fdf4;
    color: #166534;
}

.velocity-workspace[b-spdrr9bn80] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 18px;
    align-items: start;
}

.velocity-card[b-spdrr9bn80],
.velocity-result-panel[b-spdrr9bn80],
.velocity-chart-section[b-spdrr9bn80],
.velocity-table-section[b-spdrr9bn80],
.velocity-reference-card[b-spdrr9bn80] {
    border: 1px solid var(--landing-border);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.velocity-card[b-spdrr9bn80],
.velocity-result-panel[b-spdrr9bn80] {
    padding: 22px;
}

.velocity-card-header[b-spdrr9bn80],
.velocity-section-heading[b-spdrr9bn80],
.velocity-env-header[b-spdrr9bn80] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.velocity-card-header h2[b-spdrr9bn80],
.velocity-section-heading h2[b-spdrr9bn80],
.velocity-env-header h3[b-spdrr9bn80],
.velocity-reference-card h2[b-spdrr9bn80] {
    margin: 0;
    color: #111827;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
}

.velocity-card-header p[b-spdrr9bn80] {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 650;
}

.velocity-action-button[b-spdrr9bn80],
.velocity-preset-list button[b-spdrr9bn80],
.velocity-mode-tab[b-spdrr9bn80] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    background: #ffffff;
    color: #334155;
    font-size: 12px;
    font-weight: 850;
}

.velocity-action-button[b-spdrr9bn80] {
    padding: 0 14px;
}

.velocity-mode-tabs[b-spdrr9bn80] {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--landing-border);
    border-radius: 10px;
    background: #f8fafc;
}

.velocity-mode-tab[b-spdrr9bn80] {
    border-color: transparent;
    background: transparent;
}

.velocity-mode-tab-active[b-spdrr9bn80] {
    border-color: #cbd5e1;
    background: #ffffff;
    color: #111827;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.velocity-preset-list[b-spdrr9bn80] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.velocity-preset-list button[b-spdrr9bn80] {
    min-height: 34px;
    padding: 0 10px;
}

.velocity-form-grid[b-spdrr9bn80] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.velocity-field[b-spdrr9bn80] {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
}

.velocity-field-row-start[b-spdrr9bn80] {
    grid-column-start: 1;
}

.velocity-control-row[b-spdrr9bn80] {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.velocity-help[b-spdrr9bn80] {
    color: #64748b;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.45;
}

.velocity-validation[b-spdrr9bn80],
.velocity-warning-list p[b-spdrr9bn80] {
    margin: 0;
    color: #b42318;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.45;
}

.velocity-warning-list[b-spdrr9bn80] {
    display: grid;
    gap: 8px;
    margin-top: 14px;
    padding: 12px;
    border: 1px solid rgba(180, 35, 24, 0.18);
    border-radius: 8px;
    background: #fff7ed;
}

.velocity-advanced[b-spdrr9bn80] {
    margin-top: 16px;
    border-top: 1px solid var(--landing-border);
    padding-top: 14px;
}

.velocity-advanced summary[b-spdrr9bn80] {
    cursor: pointer;
    color: #111827;
    font-size: 14px;
    font-weight: 900;
}

.velocity-advanced .velocity-form-grid[b-spdrr9bn80] {
    margin-top: 14px;
}

.velocity-environment[b-spdrr9bn80] {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--landing-border);
}

.velocity-env-tabs[b-spdrr9bn80] {
    margin-bottom: 14px;
}

.velocity-env-note[b-spdrr9bn80] {
    margin: 12px 0 0;
}

.velocity-result-panel[b-spdrr9bn80] {
    position: sticky;
    top: 16px;
}

.velocity-result-header span[b-spdrr9bn80] {
    color: var(--landing-copper);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.velocity-result-header h2[b-spdrr9bn80] {
    margin: 8px 0 0;
    color: #111827;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
}

.velocity-result-empty[b-spdrr9bn80] {
    color: #64748b;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.55;
}

.velocity-target-list[b-spdrr9bn80] {
    display: grid;
    gap: 10px;
    margin: 16px 0;
}

.velocity-target-list div[b-spdrr9bn80],
.velocity-row-details dl div[b-spdrr9bn80] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 9px;
    border-bottom: 1px solid #eef2f7;
}

.velocity-target-list dt[b-spdrr9bn80],
.velocity-row-details dt[b-spdrr9bn80] {
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.velocity-target-list dd[b-spdrr9bn80],
.velocity-row-details dd[b-spdrr9bn80] {
    margin: 0;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
    text-align: right;
}

.velocity-target-list dd span[b-spdrr9bn80] {
    display: block;
    margin-top: 2px;
    color: #64748b;
    font-size: 11px;
}

.velocity-click-summary[b-spdrr9bn80] {
    margin: 8px 0 0;
    color: #334155;
    font-size: 12px;
    font-weight: 800;
}

.velocity-result-notice[b-spdrr9bn80] {
    margin: 14px 0 0;
    color: #64748b;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.55;
}

.velocity-assumption-list[b-spdrr9bn80] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.velocity-assumption-list span[b-spdrr9bn80] {
    min-height: 28px;
    background: #f8fafc;
    text-transform: none;
}

.velocity-chart-section[b-spdrr9bn80],
.velocity-table-section[b-spdrr9bn80] {
    margin: 0;
    padding: 20px;
}

.velocity-section-heading[b-spdrr9bn80] {
    margin-bottom: 12px;
}

.velocity-section-heading span[b-spdrr9bn80] {
    color: #64748b;
    font-size: 13px;
    font-weight: 750;
}

.velocity-chart[b-spdrr9bn80] {
    display: block;
    width: 100%;
    min-height: 260px;
    border: 1px solid #eef2f7;
    border-radius: 8px;
    background: #ffffff;
}

.velocity-chart text[b-spdrr9bn80] {
    fill: #64748b;
    font-size: 12px;
    font-weight: 750;
}

.velocity-chart .apexcharts-canvas[b-spdrr9bn80] {
    margin: 0 auto;
}

.velocity-chart .apexcharts-toolbar[b-spdrr9bn80] {
    right: 12px;
}

.velocity-chart-grid[b-spdrr9bn80] {
    stroke: #dbe3ef;
    stroke-width: 1;
}

.velocity-chart-zero[b-spdrr9bn80] {
    stroke: #94a3b8;
    stroke-dasharray: 5 5;
}

.velocity-chart-zero-range[b-spdrr9bn80] {
    stroke: #16a34a;
    stroke-dasharray: 3 5;
}

.velocity-chart-line[b-spdrr9bn80] {
    fill: none;
    stroke: var(--landing-blue);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.velocity-chart-target[b-spdrr9bn80] {
    stroke: var(--landing-copper);
    stroke-width: 2;
}

.velocity-chart-target-dot[b-spdrr9bn80] {
    fill: var(--landing-copper);
    stroke: #ffffff;
    stroke-width: 2;
}

.velocity-table-wrap[b-spdrr9bn80] {
    overflow-x: auto;
}

.velocity-table[b-spdrr9bn80] {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
}

.velocity-table th[b-spdrr9bn80] {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #f8fafc;
    color: #475569;
    font-size: 11px;
    font-weight: 900;
    text-align: right;
    text-transform: uppercase;
}

.velocity-table th:first-child[b-spdrr9bn80],
.velocity-table td:first-child[b-spdrr9bn80] {
    text-align: left;
}

.velocity-table th[b-spdrr9bn80],
.velocity-table td[b-spdrr9bn80] {
    padding: 11px 10px;
    border-bottom: 1px solid #eef2f7;
    white-space: nowrap;
}

.velocity-table td[b-spdrr9bn80] {
    color: #111827;
    font-size: 12px;
    font-weight: 750;
    text-align: right;
}

.velocity-row-details[b-spdrr9bn80] {
    display: none;
}

.velocity-reference-grid[b-spdrr9bn80] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.velocity-reference-card[b-spdrr9bn80] {
    padding: 22px;
}

.velocity-reference-card p[b-spdrr9bn80],
.velocity-reference-card li[b-spdrr9bn80] {
    color: #536179;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.6;
}

.velocity-reference-card ul[b-spdrr9bn80] {
    margin: 12px 0 0;
    padding-left: 20px;
}

.velocity-safety-card[b-spdrr9bn80] {
    border-color: rgba(180, 35, 24, 0.2);
    background: #fffaf7;
}

.velocity-related-grid[b-spdrr9bn80] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.landing-section-heading[b-spdrr9bn80] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 14px;
}

.landing-section-heading h2[b-spdrr9bn80] {
    margin: 0;
    color: #111827;
    font-size: 19px;
    font-weight: 900;
    line-height: 1.25;
}

.landing-section-heading span[b-spdrr9bn80] {
    color: #536179;
    font-size: 13px;
    font-weight: 700;
}

.landing-tool-card[b-spdrr9bn80] {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-height: 96px;
    padding: 18px;
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.landing-tool-card:hover[b-spdrr9bn80],
.landing-tool-card:focus-visible[b-spdrr9bn80] {
    border-color: #b7c3d4;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.landing-tool-icon[b-spdrr9bn80] {
    color: var(--landing-copper);
    font-size: 30px;
    line-height: 1;
    text-align: center;
}

.landing-tool-copy[b-spdrr9bn80] {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
}

.landing-tool-card strong[b-spdrr9bn80] {
    color: #111827;
    font-size: 13px;
    font-weight: 900;
}

.landing-tool-card p[b-spdrr9bn80] {
    margin: 0;
    color: #536179;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.landing-tool-arrow[b-spdrr9bn80] {
    color: #64748b;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 1180px) {
    .velocity-workspace[b-spdrr9bn80] {
        grid-template-columns: 1fr;
    }

    .velocity-result-panel[b-spdrr9bn80] {
        position: static;
    }
}

@media (max-width: 920px) {
    .velocity-form-grid[b-spdrr9bn80],
    .velocity-control-row[b-spdrr9bn80] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .velocity-reference-grid[b-spdrr9bn80],
    .velocity-related-grid[b-spdrr9bn80] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .velocity-page[b-spdrr9bn80] {
        padding-right: 18px;
        padding-left: 18px;
    }

    .velocity-heading h1[b-spdrr9bn80] {
        font-size: 34px;
    }

    .velocity-card-header[b-spdrr9bn80],
    .velocity-section-heading[b-spdrr9bn80],
    .velocity-env-header[b-spdrr9bn80],
    .landing-section-heading[b-spdrr9bn80] {
        align-items: flex-start;
        flex-direction: column;
    }

    .velocity-mode-tabs[b-spdrr9bn80] {
        width: 100%;
    }

    .velocity-form-grid[b-spdrr9bn80],
    .velocity-control-row[b-spdrr9bn80] {
        grid-template-columns: 1fr;
    }

    .velocity-chart-section[b-spdrr9bn80],
    .velocity-table-section[b-spdrr9bn80] {
        padding: 16px;
    }

    .velocity-table[b-spdrr9bn80] {
        min-width: 0;
    }

    .velocity-table thead[b-spdrr9bn80] {
        display: none;
    }

    .velocity-table tr[b-spdrr9bn80] {
        display: grid;
        grid-template-columns: 1fr;
        padding: 8px 0;
        border-bottom: 1px solid #eef2f7;
    }

    .velocity-table td[b-spdrr9bn80] {
        display: none;
        border: 0;
        padding: 8px 0;
        text-align: left;
        white-space: normal;
    }

    .velocity-table td:first-child[b-spdrr9bn80],
    .velocity-table td:nth-child(3)[b-spdrr9bn80],
    .velocity-table td:nth-child(5)[b-spdrr9bn80],
    .velocity-table td:nth-child(6)[b-spdrr9bn80] {
        display: block;
    }

    .velocity-table td:first-child[b-spdrr9bn80] {
        padding-bottom: 0;
    }

    .velocity-row-range[b-spdrr9bn80] {
        display: none;
    }

    .velocity-row-details[b-spdrr9bn80] {
        display: block;
    }

    .velocity-row-details summary[b-spdrr9bn80] {
        cursor: pointer;
        color: #111827;
        font-size: 13px;
        font-weight: 900;
    }

    .velocity-row-details dl[b-spdrr9bn80] {
        display: grid;
        gap: 8px;
        margin: 10px 0 0;
    }

    .velocity-table td[b-spdrr9bn80]::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 3px;
        color: #64748b;
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .velocity-table td:first-child[b-spdrr9bn80]::before {
        display: none;
    }

    .landing-tool-card[b-spdrr9bn80] {
        grid-template-columns: 36px minmax(0, 1fr);
    }

    .landing-tool-arrow[b-spdrr9bn80] {
        display: none;
    }
}
/* /Features/Hardware/TurretTapes/TurretTapeGeneratorPage.razor.rz.scp.css */
.tape-session-details[b-2go3se6huy],
.tape-step-panel[b-2go3se6huy],
.tape-preview-card[b-2go3se6huy],
.tape-settings-card[b-2go3se6huy],
.tape-analysis-panel[b-2go3se6huy] {
    border: 1px solid var(--tw-gray-200, #e5e7eb);
    border-radius: 0.5rem;
    background: var(--tw-card, #ffffff);
    box-shadow: 0 0.35rem 1.2rem rgb(15 23 42 / 0.04);
}

.tape-session-details-summary[b-2go3se6huy] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    width: 100%;
    min-height: 3.75rem;
    padding: 0.85rem 1rem;
    color: var(--tw-gray-700, #374151);
    text-align: left;
    cursor: pointer;
}

.tape-session-details-title[b-2go3se6huy] {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--tw-gray-900, #111827);
    font-weight: 600;
}

.tape-session-details-title i[b-2go3se6huy],
.tape-session-details-icon[b-2go3se6huy] {
    color: var(--tw-gray-500, #6b7280);
}

.tape-session-details-text[b-2go3se6huy] {
    min-width: 0;
    color: var(--tw-gray-500, #6b7280);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tape-session-details-form[b-2go3se6huy] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 0 1rem 1rem;
}

.tape-stepper[b-2go3se6huy] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.tape-step[b-2go3se6huy] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 3rem;
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--tw-gray-200, #e5e7eb);
    border-radius: 0.5rem;
    color: var(--tw-gray-600, #4b5563);
    background: var(--tw-card, #ffffff);
    font-size: 0.8125rem;
    text-align: left;
    cursor: pointer;
    transition: border-color 140ms ease, color 140ms ease, background-color 140ms ease;
}

.tape-step:hover[b-2go3se6huy],
.tape-step-active[b-2go3se6huy] {
    border-color: var(--tw-primary, #1b84ff);
    background: color-mix(in srgb, var(--tw-primary, #1b84ff) 9%, transparent);
    color: var(--tw-primary, #1b84ff);
}

.tape-stepper .tape-step:nth-child(2)[b-2go3se6huy],
.tape-stepper .tape-step:nth-child(3)[b-2go3se6huy] {
    border-color: color-mix(in srgb, var(--tw-primary, #1b84ff) 68%, var(--tw-gray-200, #e5e7eb));
}

.tape-step-index[b-2go3se6huy] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 999px;
    background: color-mix(in srgb, currentColor 14%, transparent);
    font-size: 0.75rem;
    font-weight: 600;
    flex: 0 0 auto;
}

.tape-step-panel[b-2go3se6huy] {
    display: grid;
    align-items: start;
    min-height: 4.25rem;
    padding: 1rem;
}

.tape-step-panel-grid[b-2go3se6huy] {
    display: grid;
    grid-template-columns: repeat(3, minmax(13rem, 1fr));
    gap: 1rem;
    align-items: end;
}

.tape-inline-action[b-2go3se6huy] {
    justify-self: start;
}

.tape-readonly-value[b-2go3se6huy] {
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    color: var(--tw-gray-900, #111827);
    font-size: 0.875rem;
    font-weight: 600;
}

.tape-ballistic-grid[b-2go3se6huy] {
    display: grid;
    grid-template-columns: minmax(7rem, 1fr) minmax(7rem, 1fr) minmax(7rem, 1fr) minmax(9rem, 0.9fr) auto;
    gap: 0.75rem;
    align-items: center;
}

.tape-ballistic-header[b-2go3se6huy] {
    color: var(--tw-gray-500, #6b7280);
    font-size: 0.75rem;
    font-weight: 600;
}

.tape-marker-color-select[b-2go3se6huy] {
    min-width: 9rem;
}

.tape-marker-color-control[b-2go3se6huy] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.tape-marker-color-picker[b-2go3se6huy] {
    width: 2.75rem;
    min-width: 2.75rem;
    padding: 0.2rem;
}

.tape-editor-workspace[b-2go3se6huy] {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(20rem, 0.95fr);
    gap: 1rem;
    align-items: start;
}

.tape-preview-card[b-2go3se6huy] {
    display: grid;
    min-width: 0;
}

.tape-preview-card-header[b-2go3se6huy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 3.75rem;
    padding: 0.85rem 1rem;
}

.tape-preview-card-title[b-2go3se6huy] {
    color: var(--tw-gray-900, #111827);
    font-size: 0.95rem;
    font-weight: 600;
}

.tape-zoom-toolbar[b-2go3se6huy] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tape-zoom-value[b-2go3se6huy] {
    min-width: 4.15rem;
}

.tape-preview-container[b-2go3se6huy] {
    min-height: 30rem;
    overflow: auto;
    border-top: 1px solid var(--tw-gray-200, #e5e7eb);
    background: color-mix(in srgb, var(--tw-gray-100, #f3f4f6) 52%, transparent);
}

.tape-preview-stage[b-2go3se6huy] {
    display: grid;
    justify-items: center;
    align-items: center;
    box-sizing: border-box;
    width: max-content;
    min-width: min-content;
    margin-inline: auto;
    padding: 3rem 0 2rem;
}

.tape-label-preview-wrap[b-2go3se6huy] {
    display: grid;
    justify-items: start;
    gap: 0.9rem;
    width: fit-content;
    min-width: 0;
}

.tape-label-svg[b-2go3se6huy] {
    display: block;
    overflow: hidden;
    filter: drop-shadow(0 0.45rem 0.65rem rgb(15 23 42 / 0.22));
}

.tape-length-ruler[b-2go3se6huy] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    min-width: 100%;
    color: var(--tw-gray-600, #4b5563);
    font-size: 0.78rem;
}

.tape-length-ruler span[b-2go3se6huy] {
    height: 1px;
    border-top: 1px dashed var(--tw-gray-500, #6b7280);
}

.tape-preview-error[b-2go3se6huy] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 30rem;
    padding: 1rem;
    border: 1px solid color-mix(in srgb, var(--tw-destructive, #ef4444) 26%, transparent);
    border-radius: 0.5rem;
    color: var(--tw-destructive, #ef4444);
    background: color-mix(in srgb, var(--tw-destructive, #ef4444) 7%, transparent);
}

.tape-metric-row span[b-2go3se6huy] {
    color: var(--tw-gray-500, #6b7280);
    font-size: 0.78rem;
}

.tape-metric-row strong[b-2go3se6huy] {
    color: var(--tw-gray-900, #111827);
    font-size: 0.9rem;
    font-weight: 600;
}

.tape-settings-card[b-2go3se6huy] {
    display: grid;
    gap: 1rem;
    padding: 1rem;
}

.tape-settings-grid[b-2go3se6huy] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.tape-check[b-2go3se6huy] {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--tw-gray-600, #4b5563);
    font-size: 0.85rem;
}

.tape-custom-text[b-2go3se6huy] {
    grid-column: span 2;
}

.tape-analysis-panel[b-2go3se6huy] {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    min-height: 36rem;
    overflow: hidden;
}

.tape-analysis-tabs[b-2go3se6huy] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
    padding: 0.85rem 1rem 0;
    border-bottom: 1px solid var(--tw-gray-200, #e5e7eb);
}

.tape-analysis-tab[b-2go3se6huy] {
    position: relative;
    padding: 0.75rem 0.5rem;
    color: var(--tw-gray-600, #4b5563);
    font-size: 0.8125rem;
    text-align: center;
    cursor: pointer;
}

.tape-analysis-tab-active[b-2go3se6huy] {
    color: var(--tw-primary, #1b84ff);
    font-weight: 600;
}

.tape-analysis-tab-active[b-2go3se6huy]::after {
    position: absolute;
    right: 0.25rem;
    bottom: -1px;
    left: 0.25rem;
    height: 2px;
    border-radius: 999px;
    background: var(--tw-primary, #1b84ff);
    content: "";
}

.tape-analysis-panel-content[b-2go3se6huy] {
    display: grid;
    align-content: start;
    gap: 0.75rem;
    min-height: 0;
    overflow: auto;
    padding: 1rem;
}

.tape-metric-row[b-2go3se6huy] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.15rem 0.85rem;
    align-items: center;
    padding: 0.9rem 1rem;
    border: 1px solid var(--tw-gray-200, #e5e7eb);
    border-radius: 0.5rem;
    background: var(--tw-card, #ffffff);
}

.tape-metric-row i[b-2go3se6huy] {
    grid-row: span 2;
    color: var(--tw-gray-500, #6b7280);
    font-size: 1.3rem;
}

.tape-export-note[b-2go3se6huy],
.tape-warning-note[b-2go3se6huy] {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.85rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
}

.tape-export-note[b-2go3se6huy] {
    border: 1px solid color-mix(in srgb, var(--tw-primary, #1b84ff) 28%, transparent);
    color: color-mix(in srgb, var(--tw-primary, #1b84ff) 70%, var(--tw-gray-900, #111827));
    background: color-mix(in srgb, var(--tw-primary, #1b84ff) 10%, transparent);
}

.tape-warning-note[b-2go3se6huy] {
    border: 1px solid color-mix(in srgb, var(--tw-warning, #f6b100) 34%, transparent);
    color: color-mix(in srgb, var(--tw-warning, #f6b100) 72%, var(--tw-gray-900, #111827));
    background: color-mix(in srgb, var(--tw-warning, #f6b100) 11%, transparent);
}

.tape-distance-table[b-2go3se6huy] {
    font-size: 0.8125rem;
}

.tape-editor-action-feedback[b-2go3se6huy] {
    display: grid;
    justify-items: end;
}

.tape-editor-action-feedback :global(.kt-alert)[b-2go3se6huy] {
    width: min(100%, 28rem);
}

.tape-editor-actions[b-2go3se6huy] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

@media (max-width: 1199px) {
    .tape-stepper[b-2go3se6huy] {
        grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
    }

    .tape-editor-workspace[b-2go3se6huy],
    .tape-session-details-form[b-2go3se6huy],
    .tape-step-panel-grid[b-2go3se6huy] {
        grid-template-columns: 1fr;
    }

    .tape-settings-grid[b-2go3se6huy] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .tape-session-details-summary[b-2go3se6huy],
    .tape-preview-card-header[b-2go3se6huy],
    .tape-editor-actions[b-2go3se6huy] {
        align-items: stretch;
        flex-direction: column;
    }

    .tape-session-details-summary[b-2go3se6huy] {
        display: flex;
    }

    .tape-session-details-text[b-2go3se6huy] {
        white-space: normal;
    }

    .tape-settings-grid[b-2go3se6huy],
    .tape-session-details-form[b-2go3se6huy],
    .tape-ballistic-grid[b-2go3se6huy] {
        grid-template-columns: 1fr;
    }

    .tape-custom-text[b-2go3se6huy] {
        grid-column: auto;
    }

}
/* /Features/Range/TargetAnalysis/TargetAnalysisPage.razor.rz.scp.css */
.target-analysis-details[b-81gh853mlo] {
    border: 1px solid var(--tw-gray-200, #e5e7eb);
    border-radius: 0.5rem;
    background: var(--tw-card, #ffffff);
    box-shadow: 0 0.35rem 1.2rem rgb(15 23 42 / 0.04);
}

.target-analysis-details-summary[b-81gh853mlo] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    width: 100%;
    min-height: 3.75rem;
    padding: 0.85rem 1rem;
    color: var(--tw-gray-700, #374151);
    text-align: left;
    cursor: pointer;
}

.target-analysis-details-title[b-81gh853mlo] {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--tw-gray-900, #111827);
    font-weight: 600;
}

.target-analysis-details-title i[b-81gh853mlo],
.target-analysis-details-icon[b-81gh853mlo] {
    color: var(--tw-gray-500, #6b7280);
}

.target-analysis-details-text[b-81gh853mlo] {
    min-width: 0;
    color: var(--tw-gray-500, #6b7280);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.target-analysis-details-form[b-81gh853mlo] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 0 1rem 1rem;
}

.target-analysis-notes-field[b-81gh853mlo] {
    grid-column: 1 / -1;
}

.target-analysis-readonly-value[b-81gh853mlo] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 2.5rem;
    color: var(--tw-gray-700, #374151);
}

.range-caliber-fact[b-81gh853mlo] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.range-caliber-warning-icon[b-81gh853mlo] {
    color: var(--tw-warning, #f6b100);
    cursor: help;
    font-size: 1rem;
    line-height: 1;
}

.range-stepper[b-81gh853mlo] {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
}

.range-step[b-81gh853mlo] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 3rem;
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--tw-gray-200, #e5e7eb);
    border-radius: 0.5rem;
    color: var(--tw-gray-600, #4b5563);
    background: var(--tw-card, #ffffff);
    font-size: 0.8125rem;
    text-align: left;
    cursor: pointer;
    transition: border-color 140ms ease, color 140ms ease, background-color 140ms ease;
}

.range-step:hover[b-81gh853mlo],
.range-step-active[b-81gh853mlo] {
    border-color: var(--tw-primary, #1b84ff);
    background: color-mix(in srgb, var(--tw-primary, #1b84ff) 9%, transparent);
    color: var(--tw-primary, #1b84ff);
}

.range-step-index[b-81gh853mlo] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 999px;
    background: color-mix(in srgb, currentColor 14%, transparent);
    font-size: 0.75rem;
    font-weight: 600;
    flex: 0 0 auto;
}

.range-step-panel[b-81gh853mlo] {
    display: grid;
    align-items: start;
    min-height: 4.25rem;
    padding: 1rem;
    border: 1px solid var(--tw-gray-200, #e5e7eb);
    border-radius: 0.5rem;
    background: var(--tw-card, #ffffff);
}

.range-step-panel-grid[b-81gh853mlo] {
    display: grid;
    grid-template-columns: minmax(15rem, 1.2fr) minmax(15rem, 1fr) auto;
    gap: 1rem;
    align-items: end;
}

.range-inline-action[b-81gh853mlo] {
    justify-self: start;
}

.range-file-picker[b-81gh853mlo] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.range-file-picker[b-81gh853mlo]  .range-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.range-file-button[b-81gh853mlo] {
    cursor: pointer;
}

.range-file-name[b-81gh853mlo] {
    max-width: min(24rem, 100%);
    color: var(--tw-gray-600, #4b5563);
    font-size: 0.8125rem;
    overflow-wrap: anywhere;
}

.range-scanner-status[b-81gh853mlo] {
    grid-column: 1 / -1;
}

.range-number-input[b-81gh853mlo] {
    max-width: 9rem;
}

.range-facts[b-81gh853mlo] {
    display: grid;
    gap: 0.35rem;
    min-width: 13rem;
    padding: 0.75rem;
    border: 1px solid var(--tw-gray-200, #e5e7eb);
    border-radius: 0.5rem;
    color: var(--tw-gray-600, #4b5563);
    font-size: 0.8125rem;
}

.range-editor-workspace[b-81gh853mlo] {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(19rem, 0.95fr);
    gap: 1rem;
    align-items: stretch;
}

.range-image-card[b-81gh853mlo],
.range-analysis-panel[b-81gh853mlo] {
    border: 1px solid var(--tw-gray-200, #e5e7eb);
    border-radius: 0.5rem;
    background: var(--tw-card, #ffffff);
    box-shadow: 0 0.35rem 1.2rem rgb(15 23 42 / 0.04);
}

.range-image-card[b-81gh853mlo] {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    min-width: 0;
}

.range-image-card-header[b-81gh853mlo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 3.75rem;
    padding: 0.85rem 1rem;
}

.range-image-card-title[b-81gh853mlo] {
    color: var(--tw-gray-900, #111827);
    font-size: 0.95rem;
    font-weight: 600;
}

.range-zoom-toolbar[b-81gh853mlo] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.range-zoom-value[b-81gh853mlo] {
    min-width: 4.15rem;
}

.range-impact-nudge-toolbar[b-81gh853mlo] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding-right: 0.4rem;
    margin-right: 0.1rem;
    border-right: 1px solid var(--tw-gray-200, #e5e7eb);
}

.range-analysis-container[b-81gh853mlo] {
    display: grid;
    min-height: 42rem;
    max-height: 78vh;
    overflow: hidden;
    border-top: 1px solid var(--tw-gray-200, #e5e7eb);
    background: color-mix(in srgb, var(--tw-gray-100, #f3f4f6) 52%, transparent);
}

.range-image-viewport[b-81gh853mlo] {
    display: grid;
    justify-items: center;
    align-items: start;
    min-height: 0;
    overflow: auto;
    padding: 0.75rem;
}

.range-image-viewport-pan-ready[b-81gh853mlo],
.range-image-viewport-pan-ready .range-click-layer[b-81gh853mlo] {
    cursor: grab;
}

.range-image-viewport-panning[b-81gh853mlo],
.range-image-viewport-panning .range-click-layer[b-81gh853mlo] {
    cursor: grabbing;
}

.range-image-viewport-panning .range-click-layer[b-81gh853mlo] {
    pointer-events: none;
}

.range-image-viewport-panning[b-81gh853mlo] {
    user-select: none;
}

.range-empty-state[b-81gh853mlo] {
    display: grid;
    justify-items: center;
    align-self: center;
    gap: 0.75rem;
    color: var(--tw-gray-500, #6b7280);
    font-size: 0.9rem;
}

.range-empty-state i[b-81gh853mlo] {
    font-size: 2rem;
}

.range-image-wrap[b-81gh853mlo] {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
}

.range-target-image[b-81gh853mlo] {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 100%;
    max-height: 78vh;
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
}

.range-target-overlay[b-81gh853mlo],
.range-click-layer[b-81gh853mlo] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.range-target-overlay[b-81gh853mlo] {
    z-index: 2;
    pointer-events: none;
}

.range-click-layer[b-81gh853mlo] {
    z-index: 4;
}

.range-click-layer-marking[b-81gh853mlo] {
    cursor: crosshair;
}

.range-image-viewport-pan-ready .range-click-layer-marking[b-81gh853mlo] {
    cursor: crosshair;
}

.range-image-viewport-panning .range-click-layer-marking[b-81gh853mlo] {
    cursor: grabbing;
}

.range-calibration-line[b-81gh853mlo],
.range-group-line[b-81gh853mlo] {
    stroke: #f59e0b;
    stroke-width: 2;
    stroke-dasharray: 5 4;
}

.range-calibration-point[b-81gh853mlo] {
    stroke: #f59e0b;
    stroke-width: 2.5;
}

.range-shot-marker[b-81gh853mlo] {
    fill: rgb(239 68 68 / 0.2);
    stroke: #ef4444;
    stroke-width: 2;
}

.range-shot-marker-highlighted[b-81gh853mlo] {
    fill: color-mix(in srgb, var(--tw-primary, #1b84ff) 38%, transparent);
    stroke: var(--tw-primary, #1b84ff);
    animation: range-shot-marker-blink-b-81gh853mlo 0.85s ease-in-out infinite;
    filter: drop-shadow(0 0 5px color-mix(in srgb, var(--tw-primary, #1b84ff) 70%, transparent));
}

.range-shot-marker-selected[b-81gh853mlo] {
    fill: color-mix(in srgb, var(--tw-primary, #1b84ff) 22%, transparent);
    stroke: var(--tw-primary, #1b84ff);
    stroke-width: 2.5;
    filter: drop-shadow(0 0 5px color-mix(in srgb, var(--tw-primary, #1b84ff) 58%, transparent));
}

@keyframes range-shot-marker-blink-b-81gh853mlo {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.28;
    }
}

.range-marking-crosshair[b-81gh853mlo] {
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    filter: drop-shadow(0 0 2px rgb(0 0 0 / 0.85));
}

.range-marking-center-tick[b-81gh853mlo] {
    stroke: #1b84ff;
    stroke-width: 1.4;
    stroke-linecap: round;
    filter: drop-shadow(0 0 2px rgb(255 255 255 / 0.85));
}

.range-group-box[b-81gh853mlo] {
    fill: transparent;
    stroke: #22c55e;
    stroke-width: 2;
}

.range-group-center[b-81gh853mlo] {
    fill: #22c55e;
    stroke: #ffffff;
    stroke-width: 2;
}

.range-condensed-overlay[b-81gh853mlo] {
    position: absolute;
    z-index: 6;
    width: 15.5rem;
    padding: 0.85rem;
    border: 1px solid rgb(255 255 255 / 0.16);
    border-radius: 0.45rem;
    color: #ffffff;
    background: rgb(17 24 39 / 0.78);
    box-shadow: 0 1rem 2.5rem rgb(15 23 42 / 0.28);
    cursor: grab;
    backdrop-filter: blur(10px);
}

.range-condensed-overlay:active[b-81gh853mlo] {
    cursor: grabbing;
}

.range-condensed-overlay-handle[b-81gh853mlo] {
    display: flex;
    justify-content: flex-end;
    color: rgb(255 255 255 / 0.7);
    line-height: 1;
}

.range-condensed-overlay-heading[b-81gh853mlo] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.range-condensed-overlay-main[b-81gh853mlo] {
    display: grid;
    gap: 0.2rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0.65rem;
    border-bottom: 1px solid rgb(255 255 255 / 0.14);
    text-align: center;
}

.range-condensed-overlay-main span[b-81gh853mlo],
.range-condensed-overlay-main em[b-81gh853mlo],
.range-condensed-row span[b-81gh853mlo] {
    color: rgb(255 255 255 / 0.72);
}

.range-condensed-overlay-main strong[b-81gh853mlo] {
    color: var(--tw-primary, #1b84ff);
    font-size: 1.8rem;
    line-height: 1;
}

.range-condensed-overlay-main small[b-81gh853mlo] {
    margin-left: 0.18rem;
    font-size: 0.9rem;
}

.range-condensed-overlay-main em[b-81gh853mlo] {
    font-size: 0.78rem;
    font-style: normal;
}

.range-condensed-row[b-81gh853mlo] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgb(255 255 255 / 0.1);
    font-size: 0.8rem;
}

.range-condensed-row:last-child[b-81gh853mlo] {
    border-bottom: 0;
}

.range-analysis-panel[b-81gh853mlo] {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    min-height: 42rem;
    overflow: hidden;
}

.range-analysis-tabs[b-81gh853mlo] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
    padding: 0.85rem 1rem 0;
    border-bottom: 1px solid var(--tw-gray-200, #e5e7eb);
}

.range-analysis-tab[b-81gh853mlo] {
    position: relative;
    padding: 0.75rem 0.5rem;
    color: var(--tw-gray-600, #4b5563);
    font-size: 0.8125rem;
    text-align: center;
    cursor: pointer;
}

.range-analysis-tab-active[b-81gh853mlo] {
    color: var(--tw-primary, #1b84ff);
    font-weight: 600;
}

.range-analysis-tab-active[b-81gh853mlo]::after {
    position: absolute;
    right: 0.25rem;
    bottom: -1px;
    left: 0.25rem;
    height: 2px;
    border-radius: 999px;
    background: var(--tw-primary, #1b84ff);
    content: "";
}

.range-analysis-panel-content[b-81gh853mlo] {
    display: grid;
    align-content: start;
    gap: 0.75rem;
    min-height: 0;
    overflow: auto;
    padding: 1rem;
}

.range-summary-empty[b-81gh853mlo] {
    display: grid;
    gap: 0.55rem;
    padding: 0.9rem;
    border: 1px solid var(--tw-gray-200, #e5e7eb);
    border-radius: 0.5rem;
    color: var(--tw-gray-600, #4b5563);
    font-size: 0.875rem;
}

.range-summary-hero[b-81gh853mlo],
.range-metric-row[b-81gh853mlo] {
    border: 1px solid var(--tw-gray-200, #e5e7eb);
    border-radius: 0.5rem;
    background: var(--tw-card, #ffffff);
}

.range-summary-hero[b-81gh853mlo] {
    display: grid;
    justify-items: center;
    gap: 0.25rem;
    padding: 1.4rem 1rem;
}

.range-summary-hero span[b-81gh853mlo] {
    color: var(--tw-gray-700, #374151);
    font-size: 0.875rem;
}

.range-summary-hero strong[b-81gh853mlo] {
    color: var(--tw-primary, #1b84ff);
    font-size: 2.3rem;
    line-height: 1;
}

.range-summary-hero small[b-81gh853mlo] {
    margin-left: 0.25rem;
    font-size: 1rem;
}

.range-summary-hero em[b-81gh853mlo] {
    color: var(--tw-gray-700, #374151);
    font-style: normal;
}

.range-metric-row[b-81gh853mlo] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.15rem 0.85rem;
    align-items: center;
    padding: 0.9rem 1rem;
}

.range-metric-row i[b-81gh853mlo] {
    grid-row: span 2;
    color: var(--tw-gray-500, #6b7280);
    font-size: 1.55rem;
}

.range-metric-row span[b-81gh853mlo] {
    color: var(--tw-gray-500, #6b7280);
    font-size: 0.8125rem;
}

.range-metric-row strong[b-81gh853mlo] {
    color: var(--tw-gray-900, #111827);
    font-size: 1rem;
    font-weight: 600;
}

.range-value-positive[b-81gh853mlo] {
    color: #dc2626 !important;
}

.range-value-negative[b-81gh853mlo] {
    color: var(--tw-primary, #1b84ff) !important;
}

.range-impact-table[b-81gh853mlo] {
    font-size: 0.8125rem;
}

.range-impact-row[b-81gh853mlo] {
    cursor: pointer;
    transition: background-color 120ms ease;
}

.range-impact-table tbody .range-impact-row:hover > td[b-81gh853mlo],
.range-impact-row-highlighted > td[b-81gh853mlo] {
    background: color-mix(in srgb, var(--tw-gray-200, #e5e7eb) 62%, transparent);
}

.range-impact-row-selected > td[b-81gh853mlo] {
    border-top: 1px solid var(--tw-primary, #1b84ff);
    border-bottom: 1px solid var(--tw-primary, #1b84ff);
    background: color-mix(in srgb, var(--tw-primary, #1b84ff) 9%, transparent);
}

.range-impact-row-selected > td:first-child[b-81gh853mlo] {
    border-left: 1px solid var(--tw-primary, #1b84ff);
}

.range-impact-row-selected > td:last-child[b-81gh853mlo] {
    border-right: 1px solid var(--tw-primary, #1b84ff);
}

.range-impact-nudge[b-81gh853mlo] {
    color: var(--tw-primary, #1b84ff);
}

.range-impact-nudge:hover[b-81gh853mlo] {
    background: color-mix(in srgb, var(--tw-primary, #1b84ff) 10%, transparent);
}

.range-impact-delete[b-81gh853mlo] {
    color: var(--tw-gray-500, #6b7280);
}

.range-impact-delete:hover[b-81gh853mlo] {
    color: #dc2626;
}

.range-saved-analysis-metric[b-81gh853mlo] {
    display: grid;
    gap: 0.125rem;
    min-width: max-content;
    line-height: 1.25;
}

.range-saved-analysis-metric small[b-81gh853mlo] {
    color: var(--tw-gray-500, #6b7280);
    font-size: 0.75rem;
    white-space: nowrap;
}

.range-export-options[b-81gh853mlo] {
    display: grid;
    gap: 0.75rem;
}

.range-export-options label[b-81gh853mlo] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 2.25rem;
    color: var(--tw-gray-700, #374151);
    cursor: pointer;
}

.range-export-note[b-81gh853mlo] {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin-top: 1rem;
    padding: 0.85rem;
    border: 1px solid color-mix(in srgb, var(--tw-primary, #1b84ff) 28%, transparent);
    border-radius: 0.5rem;
    color: color-mix(in srgb, var(--tw-primary, #1b84ff) 70%, var(--tw-gray-900, #111827));
    background: color-mix(in srgb, var(--tw-primary, #1b84ff) 10%, transparent);
    font-size: 0.8125rem;
}

.range-editor-actions[b-81gh853mlo] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

.range-progress-overlay[b-81gh853mlo] {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background: rgb(15 23 42 / 0.28);
    backdrop-filter: blur(2px);
}

.range-progress-card[b-81gh853mlo] {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: min(24rem, 100%);
    padding: 1rem 1.1rem;
    border: 1px solid var(--tw-gray-200, #e5e7eb);
    border-radius: 0.5rem;
    background: var(--tw-card, #ffffff);
    box-shadow: 0 1rem 2.5rem rgb(15 23 42 / 0.22);
}

.range-progress-spinner[b-81gh853mlo] {
    width: 2.35rem;
    height: 2.35rem;
    border: 3px solid color-mix(in srgb, var(--tw-primary, #1b84ff) 18%, transparent);
    border-top-color: var(--tw-primary, #1b84ff);
    border-radius: 999px;
    animation: range-progress-spin-b-81gh853mlo 780ms linear infinite;
    flex: 0 0 auto;
}

.range-progress-copy[b-81gh853mlo] {
    display: grid;
    gap: 0.2rem;
}

.range-progress-copy strong[b-81gh853mlo] {
    color: var(--tw-gray-900, #111827);
    font-weight: 600;
}

.range-progress-copy span[b-81gh853mlo] {
    color: var(--tw-gray-600, #4b5563);
    font-size: 0.85rem;
}

@keyframes range-progress-spin-b-81gh853mlo {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1199px) {
    .range-stepper[b-81gh853mlo] {
        grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
    }

    .range-editor-workspace[b-81gh853mlo] {
        grid-template-columns: 1fr;
    }

    .range-analysis-panel[b-81gh853mlo] {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .target-analysis-details-summary[b-81gh853mlo],
    .target-analysis-details-form[b-81gh853mlo],
    .range-step-panel-grid[b-81gh853mlo] {
        grid-template-columns: 1fr;
    }

    .target-analysis-details-text[b-81gh853mlo] {
        white-space: normal;
    }

    .range-image-card-header[b-81gh853mlo],
    .range-editor-actions[b-81gh853mlo] {
        align-items: stretch;
        flex-direction: column;
    }

    .range-zoom-toolbar[b-81gh853mlo] {
        justify-content: flex-start;
    }

    .range-analysis-container[b-81gh853mlo] {
        min-height: 28rem;
        max-height: 65vh;
    }

    .range-condensed-overlay[b-81gh853mlo] {
        width: 13.75rem;
    }
}
