/* /Components/Blocks/BlockCanvasEditor.razor.rz.scp.css */
/* Card #739. Reads only the site's existing theme-reactive --lc-* custom properties (defined in
   wwwroot/brand/locus/site-theme.css) so palette/canvas chrome tracks both themes automatically --
   no theme-specific overrides here, matching StudioProductEdit.razor/StudioServiceEdit.razor's own
   plain-Bootstrap-classes approach. */

.lc-palette-grid[b-xz3x2h5w6y] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.lc-palette-tile[b-xz3x2h5w6y] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.5rem;
    border: 1px solid var(--lc-border, #dce4ef);
    border-radius: 0.5rem;
    background: var(--lc-ground-card, #fff);
    text-align: left;
    cursor: pointer;
}

.lc-palette-tile:hover:not(:disabled)[b-xz3x2h5w6y] {
    border-color: var(--lc-accent-deep, #2E6E96);
}

.lc-palette-tile:disabled[b-xz3x2h5w6y] {
    opacity: 0.5;
    cursor: not-allowed;
}

.lc-palette-tile-preview[b-xz3x2h5w6y] {
    height: 6rem;
    overflow: hidden;
    border-radius: 0.35rem;
    background: var(--lc-ground-alt, #eef2f7);
    /* Section 4.1: a miniature, not a full-size render -- scaled and clipped, never cropped by
       hand per instance (every tile gets the same treatment regardless of block type). */
    transform: scale(0.55);
    transform-origin: top left;
    width: calc(100% / 0.55);
}

.lc-palette-tile-label[b-xz3x2h5w6y] {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--lc-ink, #0a1628);
}

.lc-canvas-row[b-xz3x2h5w6y] {
    border: 1px solid var(--lc-border, #dce4ef);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    background: var(--lc-ground-card, #fff);
    overflow: hidden;
}

.lc-canvas-row-dragging[b-xz3x2h5w6y] {
    opacity: 0.5;
}

.lc-canvas-row-toolbar[b-xz3x2h5w6y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--lc-border, #dce4ef);
    background: var(--lc-ground-alt, #eef2f7);
}

.lc-canvas-row-actions[b-xz3x2h5w6y] {
    display: flex;
    gap: 0.35rem;
}

.lc-canvas-row-preview[b-xz3x2h5w6y] {
    padding: 0.75rem;
}

.lc-canvas-row-form[b-xz3x2h5w6y] {
    padding: 0.75rem;
    border-top: 1px solid var(--lc-border, #dce4ef);
}
/* /Components/Blocks/BlockPreview.razor.rz.scp.css */
/* Card #739. A preview is read-only content, not the live page -- links/buttons inside the real
   block component (e.g. CtaPairBlock's CTA anchor) must not be clickable from the palette or the
   canvas. */
.lc-block-preview[b-53g5nffxpl] {
    pointer-events: none;
}
/* /Components/Blocks/BlockSequenceRenderer.razor.rz.scp.css */
/* Card #738: moved from ProductFrontDoor.razor.css (card #632), which is retired by this card --
   every rule below styles markup now rendered by a child block component (HeroBlock, CtaPairBlock,
   FeatureListBlock, RecordedRunComparisonBlock, etc.), not by BlockSequenceRenderer's own markup, so
   every selector needs Blazor CSS isolation's `::deep` combinator to reach through into that child
   markup -- without it, these rules would be scoped to an element BlockSequenceRenderer never
   renders and would silently stop applying, a visible regression for every one of the five migrated
   front doors. Content, colors, and hardcoded navy/cream unchanged from ProductFrontDoor.razor.css;
   see that file's own history (deleted this card) for the original rationale comments.

   .lc-block-item is BlockSequenceRenderer's own element (the wrapper this card's .razor adds around
   each dispatched block), not a child component's -- no ::deep needed for it. It replaces the old
   template's per-group <section class="mb-5">/mb-4 spacing (ProductFrontDoor.razor:42-58) with one
   uniform gap between every block instance; see BlockSequenceRenderer.razor's own header comment for
   why a uniform gap is the block-model-native equivalent rather than an attempt at the exact old
   section boundaries. h1 below replaces .lc-page-header h1 (app.css) for the same retirement reason
   as every ::deep rule above -- HeroBlock's <h1> is no longer inside a .lc-page-header ancestor. */

.lc-block-item[b-gxyo4uzrb5] {
    margin-bottom: 2rem;
}

.lc-block-item:last-child[b-gxyo4uzrb5] {
    margin-bottom: 0;
}

[b-gxyo4uzrb5] h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--locus-navy, #0a1628);
}

[b-gxyo4uzrb5] .lc-frontdoor-lockup {
    margin-bottom: 1.25rem;
}

[b-gxyo4uzrb5] .lc-frontdoor-lockup img {
    height: 56px;
    display: block;
}

[b-gxyo4uzrb5] .lc-frontdoor-hero-lead {
    font-size: 1.15rem;
    color: #37506e;
    max-width: 720px;
    line-height: 1.65;
}

[b-gxyo4uzrb5] .lc-frontdoor-supporting-line {
    font-weight: 600;
    color: #12395b;
    margin-top: 0.75rem;
}

[b-gxyo4uzrb5] .lc-frontdoor-cta {
    color: #12395b !important;
    border-color: var(--lc-fd-accent-deep, #12395b);
}

[b-gxyo4uzrb5] .lc-frontdoor-cta:hover {
    border-color: #12395b;
    background: rgba(18, 57, 91, 0.06);
}

[b-gxyo4uzrb5] .lc-frontdoor-secondary-cta {
    font-weight: 600;
    color: #37506e;
    text-decoration: none;
}

[b-gxyo4uzrb5] .lc-frontdoor-secondary-cta:hover {
    color: #12395b;
    text-decoration: underline;
}

[b-gxyo4uzrb5] .lc-frontdoor-pitch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

[b-gxyo4uzrb5] .lc-frontdoor-pitch-card {
    border: 1px solid #dce4ef;
    border-left: 4px solid var(--lc-fd-accent-deep, #12395b);
    border-radius: 0 12px 12px 0;
    padding: 1.5rem;
    background: #fff;
}

[b-gxyo4uzrb5] .lc-frontdoor-pitch-card h2 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lc-fd-accent-deep, #12395b);
    margin-bottom: 0.5rem;
}

[b-gxyo4uzrb5] .lc-frontdoor-cadence {
    text-align: center;
    font-family: 'Zilla Slab', Rockwell, Georgia, serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #12395b;
    letter-spacing: 0.02em;
    padding: 2rem 0 0;
    margin-bottom: 0;
}

[b-gxyo4uzrb5] .lc-frontdoor-demo-panel {
    border: 1px solid #dce4ef;
    border-radius: 12px;
    background: #fff;
    padding: 1.75rem;
}

[b-gxyo4uzrb5] .lc-frontdoor-demo-toggle {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 0.5rem 0 1.5rem;
}

[b-gxyo4uzrb5] .lc-frontdoor-toggle-btn {
    border: 2px solid #12395b;
    background: transparent;
    color: #12395b;
    font-weight: 600;
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    cursor: pointer;
}

[b-gxyo4uzrb5] .lc-frontdoor-toggle-btn.active {
    background: #12395b;
    color: #fff;
}

[b-gxyo4uzrb5] .lc-frontdoor-answer {
    font-size: 1.3rem;
    font-weight: 700;
    color: #12395b;
}

[b-gxyo4uzrb5] .lc-frontdoor-witness-card {
    border-left: 4px solid var(--lc-fd-accent-deep, #12395b);
    background: #faf9f5;
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 1rem;
}

[b-gxyo4uzrb5] .lc-frontdoor-prompt-card {
    border: 1px solid #dce4ef;
    background: #f4f6f9;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    max-height: 260px;
    overflow-y: auto;
}

[b-gxyo4uzrb5] .lc-frontdoor-prompt-text {
    margin: 0;
    white-space: pre-wrap;
    word-break: break-word;
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    color: #37506e;
}

[b-gxyo4uzrb5] .lc-frontdoor-exclusion-note {
    border-left: 4px solid #9fb0c3;
    background: #f4f6f9;
    padding: 0.85rem 1.25rem;
    border-radius: 0 8px 8px 0;
    color: #556b85;
    font-size: 0.92rem;
}

[b-gxyo4uzrb5] .lc-frontdoor-about-name dt {
    font-weight: 700;
    color: #12395b;
    margin-top: 0.75rem;
}

[b-gxyo4uzrb5] .lc-frontdoor-about-name dd {
    margin-left: 0;
    color: #556b85;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ── Top-nav marketing layout ────────────────────────────── */
/* Card #680: header/footer are a fixed dark "dusk" chrome band in both site themes -- see
   wwwroot/brand/locus/site-theme.css's --lc-dusk (unchanged by prefers-color-scheme/[data-theme])
   -- so they read the token but never need a themed redefinition of their own. */
.lc-header[b-fn82t1poun] {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--lc-dusk, #0a1628);
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.lc-main[b-fn82t1poun] {
    min-height: calc(100vh - 64px - 60px);
}

.lc-footer[b-fn82t1poun] {
    background: var(--lc-dusk, #0a1628);
    color: #adb5bd;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.875rem;
}

.lc-footer p[b-fn82t1poun] {
    margin: 0;
}

/* ── Blazor error UI ─────────────────────────────────────── */
#blazor-error-ui[b-fn82t1poun] {
    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-fn82t1poun] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* /Components/Layout/NavMenu.razor.rz.scp.css */
.lc-navbar[b-x794roa5qj] {
    padding: 0.5rem 0;
    min-height: 80px;
}

.lc-brand[b-x794roa5qj] {
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Card #680: sane nav-scale sizing for the ratified lockup, replacing the 200px roundel PNG (the
   lockup SVG's own live text replaces the old hardcoded 4rem wordmark spans entirely -- see
   NavMenu.razor). */
.lc-logo[b-x794roa5qj] {
    height: 40px;
    width: auto;
}

.lc-toggler[b-x794roa5qj] {
    border-color: rgba(255,255,255,0.3);
    filter: invert(1);
}

/* ::deep: <NavLink> (Home) renders its <a> from Blazor's own framework component, so the
   element never carries this file's scope attribute — a plain scoped `.lc-nav-link` rule
   silently fails to match it while matching hand-authored <a> tags (e.g. Services) fine.
   ::deep drops the attribute requirement so the rule matches both. Card #377. */
[b-x794roa5qj] .lc-nav-link {
    color: var(--lc-on-dusk-muted, #d0dce8) !important;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem !important;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}

[b-x794roa5qj] .lc-nav-link:hover,
[b-x794roa5qj] .lc-nav-link.active {
    color: var(--lc-on-dusk, #ffffff) !important;
    background: rgba(255,255,255,0.1);
}

.lc-dropdown[b-x794roa5qj] {
    background: #0d1f3c;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    min-width: 220px;
}

.lc-dropdown .dropdown-item[b-x794roa5qj] {
    color: var(--lc-on-dusk-muted, #d0dce8);
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
}

.lc-dropdown .dropdown-item:hover[b-x794roa5qj] {
    background: rgba(127, 182, 217, 0.15);
    color: var(--lc-on-dusk, #ffffff);
}

.lc-dropdown-category[b-x794roa5qj] {
    display: block;
    padding: 0.4rem 1.25rem 0.2rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lc-accent-light, #7FB6D9);
    pointer-events: none;
}

/* Products/Services dropdowns: one .lc-dropdown-col per catalog category (Products) or link chunk
   (Services). Stacked (divider between columns) below the multi-column threshold; side-by-side
   columns above it. Card #377, extended to Services in card #383. */
.lc-dropdown-col:not(:first-child)[b-x794roa5qj] {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 0.25rem;
    padding-top: 0.25rem;
}

/* Bootstrap hides .dropdown-menu with display:none and shows it by adding .show, but this
   scoped rule's higher specificity beat an unconditional display:flex here, so the menu stayed
   permanently open once the catalog crossed the multi-column threshold. Scoping to .show keeps
   the multi-column layout while letting Bootstrap's .show toggle control visibility. Card #635. */
.lc-dropdown-multicol.show[b-x794roa5qj] {
    display: flex;
    align-items: flex-start;
}

.lc-dropdown-multicol .lc-dropdown-col[b-x794roa5qj] {
    min-width: 200px;
}

.lc-dropdown-multicol .lc-dropdown-col:not(:first-child)[b-x794roa5qj] {
    border-top: none;
    border-left: 1px solid rgba(255,255,255,0.1);
    margin-top: 0;
    padding-top: 0;
}

.lc-btn-cta[b-x794roa5qj] {
    background: var(--lc-accent-light, #7FB6D9);
    color: var(--lc-dusk, #0a1628) !important;
    font-weight: 600;
    border-radius: 6px;
    padding: 0.45rem 1.1rem;
    font-size: 0.9rem;
    border: none;
    transition: background 0.15s;
}

.lc-btn-cta:hover[b-x794roa5qj] {
    background: var(--lc-accent-resolve, #E0A458);
    color: var(--lc-dusk, #0a1628) !important;
}

/* hamburger zone: portrait phones and landscape phones (< 992px) */
@media (max-width: 991.98px) {
    .lc-navbar[b-x794roa5qj]  { min-height: 56px; padding: 0.35rem 0; }
    .lc-logo[b-x794roa5qj]    { height: 30px; }

    /* Force the Products/Services dropdowns back to a single stacked column on mobile regardless
       of the multi-column threshold -- a flex row here would force horizontal scroll at 375px.
       Scoped to .show (see above) so this override only wins when Bootstrap has the menu open,
       while still out-specificity-ing Bootstrap's own .dropdown-menu.show here. Card #635. */
    .lc-dropdown-multicol.show[b-x794roa5qj] {
        display: block;
    }

    .lc-dropdown-multicol .lc-dropdown-col[b-x794roa5qj] {
        min-width: 0;
    }

    .lc-dropdown-multicol .lc-dropdown-col:not(:first-child)[b-x794roa5qj] {
        border-top: 1px solid rgba(255,255,255,0.1);
        border-left: none;
        margin-top: 0.25rem;
        padding-top: 0.25rem;
    }
}

/* full nav: tablets and desktops (992px – 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .lc-logo[b-x794roa5qj]    { height: 36px; }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-p8qpgqb6wi],
.components-reconnect-repeated-attempt-visible[b-p8qpgqb6wi],
.components-reconnect-failed-visible[b-p8qpgqb6wi],
.components-pause-visible[b-p8qpgqb6wi],
.components-resume-failed-visible[b-p8qpgqb6wi],
.components-rejoining-animation[b-p8qpgqb6wi] {
    display: none;
}

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


#components-reconnect-modal[b-p8qpgqb6wi] {
    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-p8qpgqb6wi 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-p8qpgqb6wi {
    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/AccessDenied.razor.rz.scp.css */
/* Card #521: product accent for the headline when the denial came from a subscriber area. lc-hero's
   background is always the dark navy gradient (never toggled by theme), so these use the same
   light accent variants the brand kits pair with a dark background (see AlleleDashboard.razor.css /
   StravonDashboard.razor.css). Studio and the neutral fallback keep the default white headline. */
.lc-hero-headline.lc-accent-allele[b-x9ykv3ms64] {
    color: var(--allele-gold-light, #e6b24d);
}

.lc-hero-headline.lc-accent-stravon[b-x9ykv3ms64] {
    color: var(--stravon-teal-light, #4fd1b3);
}
/* /Components/Pages/AlleleDashboard.razor.rz.scp.css */
/* Card #500: lifted verbatim from /brand/allele/lockup-snippet.html's reference <style> block
   (theme-enabled: light/dark/system/forced-colors) so the area header stays in lockstep with the
   canonical brand asset. Update both together if the brand kit changes.

   Card #537: dropped the snippet's `@media (prefers-color-scheme: dark)` auto-switch. This page
   (.lc-page, app.css) always renders on a fixed light background -- the site has no dark mode and
   nothing ever sets [data-theme] -- so that query only fired off the visitor's OS/browser
   preference, flipping the mark+wordmark to the reversed cream/gold-light tokens on a page that
   never actually went dark, which read as washed-out/illegible. The explicit [data-theme] hooks
   below are kept (inert today, but ready if a real theme toggle is ever wired up). */

.allele-lockup[b-7rqck8fyfe] {
    --al-ink: var(--allele-navy, #12395b);
    --al-accent: var(--allele-gold-deep, #b8842a);
    display: flex;
    align-items: center;
    gap: 1.05rem;
}

[data-theme="dark"] .allele-lockup[b-7rqck8fyfe],
.allele-lockup[data-theme="dark"][b-7rqck8fyfe] {
    --al-ink: var(--allele-cream, #faf9f5);
    --al-accent: var(--allele-gold-light, #e6b24d);
}

[data-theme="light"] .allele-lockup[b-7rqck8fyfe],
.allele-lockup[data-theme="light"][b-7rqck8fyfe] {
    --al-ink: var(--allele-navy, #12395b);
    --al-accent: var(--allele-gold-deep, #b8842a);
}

.allele-lockup__mark[b-7rqck8fyfe] {
    display: block;
    flex-shrink: 0;
}

.allele-lockup__mark .al-stroke[b-7rqck8fyfe] {
    stroke: var(--al-ink);
}

.allele-lockup__mark .al-fill[b-7rqck8fyfe] {
    fill: var(--al-ink);
}

.allele-lockup__mark .al-node[b-7rqck8fyfe] {
    fill: var(--al-accent);
}

.allele-lockup__name[b-7rqck8fyfe] {
    font-family: 'Zilla Slab', Rockwell, Georgia, serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--al-ink);
}

.allele-lockup__tag[b-7rqck8fyfe] {
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 0.76rem;
    letter-spacing: 0.26em;
    margin-top: 0.4rem;
    color: var(--al-accent);
}

@media (forced-colors: active) {
    .allele-lockup__mark .al-stroke[b-7rqck8fyfe] {
        stroke: CanvasText;
    }

    .allele-lockup__mark .al-fill[b-7rqck8fyfe],
    .allele-lockup__mark .al-node[b-7rqck8fyfe] {
        fill: CanvasText;
    }

    .allele-lockup__name[b-7rqck8fyfe], .allele-lockup__tag[b-7rqck8fyfe] {
        color: CanvasText;
    }
}

/* Card #536 (same defect as #524): .lc-btn-outline (app.css) is white text on a near-white border,
   designed for the dark .lc-hero gradient (see Home.razor). This page's "Request documentation" link
   sits on .lc-page's plain light background instead, so unmodified lc-btn-outline renders
   white-on-gray -- a contrast defect. Override with the Allele kit's light-surface tokens (navy ink,
   gold-deep accent -- the same pair .allele-lockup uses in its light-mode branch above) rather than
   changing the shared class other dark-background pages still depend on. */
.allele-page-cta[b-7rqck8fyfe] {
    color: var(--allele-navy, #12395b) !important;
    border-color: var(--allele-gold-deep, #b8842a);
}

.allele-page-cta:hover[b-7rqck8fyfe] {
    border-color: var(--allele-navy, #12395b);
    background: rgba(184, 132, 42, 0.08);
}
/* /Components/Pages/StravonDashboard.razor.rz.scp.css */
/* Card #501: lifted verbatim from /brand/stravon/lockup-snippet.html's reference <style> block
   (theme-enabled: light/dark/system/forced-colors) so the area header stays in lockstep with the
   canonical brand asset. Update both together if the brand kit changes.

   Card #537: dropped the snippet's `@media (prefers-color-scheme: dark)` auto-switch. This page
   (.lc-page, app.css) always renders on a fixed light background -- the site has no dark mode and
   nothing ever sets [data-theme] -- so that query only fired off the visitor's OS/browser
   preference, flipping the mark+wordmark to the reversed cream/teal-light tokens on a page that
   never actually went dark, which read as washed-out/illegible. The explicit [data-theme] hooks
   below are kept (inert today, but ready if a real theme toggle is ever wired up). */

.stravon-lockup[b-0puxg5xpth] {
    --sv-ink: var(--stravon-navy, #12395b);
    --sv-accent: var(--stravon-teal-deep, #1c7d6c);
    display: flex;
    align-items: center;
    gap: 1.05rem;
}

[data-theme="dark"] .stravon-lockup[b-0puxg5xpth],
.stravon-lockup[data-theme="dark"][b-0puxg5xpth] {
    --sv-ink: var(--stravon-cream, #faf9f5);
    --sv-accent: var(--stravon-teal-light, #4fd1b3);
}

[data-theme="light"] .stravon-lockup[b-0puxg5xpth],
.stravon-lockup[data-theme="light"][b-0puxg5xpth] {
    --sv-ink: var(--stravon-navy, #12395b);
    --sv-accent: var(--stravon-teal-deep, #1c7d6c);
}

.stravon-lockup__mark[b-0puxg5xpth] {
    display: block;
    flex-shrink: 0;
}

.stravon-lockup__mark .sv-ring[b-0puxg5xpth] {
    stroke: var(--sv-ink);
}

.stravon-lockup__mark .sv-node[b-0puxg5xpth] {
    fill: var(--sv-accent);
}

.stravon-lockup__name[b-0puxg5xpth] {
    font-family: 'Zilla Slab', Rockwell, Georgia, serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--sv-ink);
}

.stravon-lockup__tag[b-0puxg5xpth] {
    font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    margin-top: 0.4rem;
    color: var(--sv-accent);
}

@media (forced-colors: active) {
    .stravon-lockup__mark .sv-ring[b-0puxg5xpth],
    .stravon-lockup__mark .sv-node[b-0puxg5xpth] {
        fill: CanvasText;
        stroke: CanvasText;
    }

    .stravon-lockup__name[b-0puxg5xpth], .stravon-lockup__tag[b-0puxg5xpth] {
        color: CanvasText;
    }
}

/* Card #524: .lc-btn-outline (app.css) is white text on a near-white border, designed for the dark
   .lc-hero gradient (see Home.razor). This page's "Request documentation" link sits on .lc-page's
   plain light background instead, so unmodified lc-btn-outline renders white-on-gray -- a contrast
   defect. Override with the Stravon kit's light-surface tokens (navy ink, teal-deep accent -- the
   same pair .stravon-lockup uses in its light-mode branch above) rather than changing the shared
   class other dark-background pages still depend on. */
.stravon-page-cta[b-0puxg5xpth] {
    color: var(--stravon-navy, #12395b) !important;
    border-color: var(--stravon-teal-deep, #1c7d6c);
}

.stravon-page-cta:hover[b-0puxg5xpth] {
    border-color: var(--stravon-navy, #12395b);
    background: rgba(28, 125, 108, 0.08);
}
/* /Components/Shared/MetricTooltip.razor.rz.scp.css */
/* Card #749: exhibit-surface guard (LockupHeaderContrastTests, card #537's ruling, reaffirmed by
   this card's amended AC #3) -- this surface is deliberately single-theme light. No
   prefers-color-scheme, no [data-theme] hook, no dark variant. Navy-on-cream bubble against a
   fixed light page background comfortably clears WCAG AA (12.5:1 for #faf9f5 text on #12395b),
   matching the navy/cream pairing already used across the front-door kit
   (ProductFrontDoor.razor.css). */

.lc-metric-tooltip[b-dssbgwwcy0] {
    position: relative;
    display: inline-block;
}

.lc-metric-tooltip__trigger[b-dssbgwwcy0] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: help;
}

.lc-metric-tooltip__trigger:focus-visible[b-dssbgwwcy0] {
    outline: 2px solid #12395b;
    outline-offset: 3px;
    border-radius: 4px;
}

.lc-metric-tooltip__icon[b-dssbgwwcy0] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.05em;
    height: 1.05em;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    font-size: 0.7em;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    opacity: 0.75;
}

.lc-metric-tooltip__trigger:hover .lc-metric-tooltip__icon[b-dssbgwwcy0],
.lc-metric-tooltip__trigger:focus-visible .lc-metric-tooltip__icon[b-dssbgwwcy0] {
    opacity: 1;
}

/* Opacity only, never display/visibility -- the bubble must stay in the accessibility tree at all
   times so aria-describedby has text for assistive tech to announce on focus, independent of the
   CSS hover/focus-within state that controls sighted visibility. pointer-events:none keeps the
   invisible bubble from intercepting clicks over whatever it overlaps while hidden. */
.lc-metric-tooltip__bubble[b-dssbgwwcy0] {
    position: absolute;
    z-index: 20;
    left: 0;
    bottom: calc(100% + 0.5rem);
    width: max-content;
    max-width: 280px;
    background: #12395b;
    color: #faf9f5;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.45;
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(18, 57, 91, 0.25);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.12s ease, transform 0.12s ease;
    pointer-events: none;
}

.lc-metric-tooltip:hover .lc-metric-tooltip__bubble[b-dssbgwwcy0],
.lc-metric-tooltip:focus-within .lc-metric-tooltip__bubble[b-dssbgwwcy0] {
    opacity: 1;
    transform: translateY(0);
}

@media (forced-colors: active) {
    .lc-metric-tooltip__bubble[b-dssbgwwcy0] {
        border: 1px solid CanvasText;
    }
}
