﻿/* Generated from site.css on 2026-06-30. site.css is kept as fallback/reference. */
.beetle-dash-page .app-main {
    width: fit-content;
    max-width: calc(100vw - 28px);
    margin-left: auto;
    margin-right: auto;
}

.beetle-dash-tool {
    width: fit-content;
    max-width: 100%;
    padding: 10px;
}

.beetle-dash-tool .bcm2-eeprom-head {
    margin-bottom: 6px;
}

.beetle-dash-tool .bcm2-eeprom-head .page-title {
    font-size: clamp(1.35rem, 2.3vw, 1.8rem);
    line-height: 1;
}

.beetle-dash-layout {
    display: grid;
    grid-template-columns: max-content 340px;
    gap: 6px;
    align-items: flex-start;
}

.beetle-dash-main-grid,
.beetle-dash-side {
    display: grid;
    gap: 6px;
}

.beetle-dash-tool .bcm2-eeprom-card {
    border-radius: 6px;
    padding: 6px;
}

.beetle-dash-tool .bcm2-clone-subhead {
    margin-bottom: 5px;
}

.beetle-dash-tool .bcm2-clone-subhead h2 {
    font-size: .75rem;
}

.beetle-dash-tool .bcm2-clone-subhead span {
    font-size: .6rem;
}

.beetle-dash-identity-grid,
.beetle-dash-security-grid,
.beetle-dash-keys-grid {
    display: grid;
    gap: 5px 10px;
    align-items: center;
}

.beetle-dash-identity-grid {
    grid-template-columns: repeat(2, max-content);
}

.beetle-dash-security-grid,
.beetle-dash-keys-grid {
    grid-template-columns: repeat(3, max-content);
}

.beetle-dash-field {
    display: grid;
    grid-template-columns: 72px var(--beetle-input-width, 120px);
    gap: 6px;
    align-items: center;
}

.beetle-dash-field > span,
.beetle-dash-file-row > span {
    color: var(--muted);
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.beetle-dash-field input,
.beetle-dash-file-row input[type="text"] {
    width: 100%;
    min-width: 0;
    height: 25px;
    border: 1px solid rgba(148, 163, 184, .42);
    border-radius: 4px;
    background: #03080a;
    color: #eaf3f6;
    padding: 3px 7px;
    font-size: .74rem;
    font-weight: 800;
}

.beetle-dash-field input:focus {
    border-color: rgba(218, 184, 92, .75);
    box-shadow: 0 0 0 2px rgba(218, 184, 92, .12);
    outline: none;
}

.beetle-dash-field input:-webkit-autofill,
.beetle-dash-file-row input[type="text"]:-webkit-autofill {
    -webkit-text-fill-color: #eaf3f6 !important;
    -webkit-box-shadow: 0 0 0 1000px #03080a inset !important;
    caret-color: #eaf3f6;
}

.beetle-dash-field.is-mini {
    --beetle-input-width: 58px;
}

.beetle-dash-field.is-short {
    --beetle-input-width: 118px;
}

.beetle-dash-field.is-wide {
    grid-column: 1 / -1;
    --beetle-input-width: 324px;
}

.beetle-dash-field.is-cs {
    --beetle-input-width: 118px;
}

.beetle-dash-field.is-mac,
.beetle-dash-field.is-key {
    --beetle-input-width: 82px;
}

.beetle-dash-file-row {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) 76px;
    gap: 6px;
    align-items: center;
    margin-bottom: 5px;
}

.beetle-dash-tool .visually-hidden-file {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.beetle-dash-tool .app-btn {
    min-height: 25px;
    padding: 4px 9px;
}

.beetle-dash-files-card > .app-btn {
    width: 100%;
}

.beetle-dash-actions-card .bcm2-clone-actions {
    display: grid;
    grid-template-columns: minmax(130px, 170px) minmax(140px, 170px) minmax(110px, 145px);
    gap: 6px;
}

@media (max-width: 1040px) {
    .beetle-dash-page .app-main {
            width: min(100%, calc(100vw - 24px));
        }
    
    .beetle-dash-tool,
        .beetle-dash-layout {
            width: 100%;
        }
    
    .beetle-dash-layout {
            grid-template-columns: 1fr;
        }
    
    .beetle-dash-side {
            grid-row: 1;
        }
    
    .beetle-dash-identity-grid,
        .beetle-dash-security-grid,
        .beetle-dash-keys-grid {
            grid-template-columns: repeat(2, max-content);
        }
    
    .beetle-dash-field.is-wide {
            --beetle-input-width: 280px;
        }
    
    .beetle-dash-actions-card .bcm2-clone-actions {
            grid-template-columns: 1fr;
        }
}

@media (max-width: 560px) {
    .beetle-dash-page .app-main {
            width: min(100%, calc(100vw - 14px));
        }
    
    .beetle-dash-tool {
            padding: 7px !important;
        }
    
    .beetle-dash-identity-grid,
        .beetle-dash-security-grid,
        .beetle-dash-keys-grid {
            grid-template-columns: 1fr;
        }
    
    .beetle-dash-field,
        .beetle-dash-field.is-wide {
            grid-template-columns: 1fr;
            --beetle-input-width: 100%;
            gap: 3px;
        }
    
    .beetle-dash-field input,
        .beetle-dash-file-row input[type="text"] {
            height: 28px;
            font-size: clamp(.62rem, 2.7vw, .72rem);
        }
    
    .beetle-dash-file-row {
            grid-template-columns: 1fr;
            gap: 3px;
        }
}

/* Compact dashboard workspace */
.dashboard .app-main {
    width: min(1140px, calc(100vw - 32px)) !important;
}

.dashboard-shell {
    display: grid;
    gap: 8px;
}

.dash-topbar,
.dash-panel,
.dash-modules {
    border: 1px solid rgba(192, 203, 211, .28);
    border-radius: 9px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.018) 44%, rgba(0,0,0,.22)),
        rgba(29, 36, 41, .84);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 15px 38px rgba(0,0,0,.26);
}

.dash-home-view.hidden {
    display: none;
}

.renewal-card.hidden {
    display: none !important;
}

.admin-ticket-alert.hidden {
    display: none !important;
}

.dash-section-view {
    display: none;
}

.dash-section-view.active {
    display: block;
}

.dash-section-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.dash-section-note {
    color: rgba(224, 232, 238, .68);
    font-size: 11px;
    line-height: 1.35;
    text-align: right;
}

.dash-module-search {
    width: min(520px, 100%);
    display: grid;
    grid-template-columns: auto minmax(220px, 1fr);
    gap: 10px;
    align-items: center;
    margin-left: auto;
    color: rgba(246, 214, 127, .92);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.dash-module-search input {
    width: 100%;
    min-height: 36px;
    border: 1px solid rgba(214, 170, 82, .42);
    border-radius: 6px;
    background: rgba(3, 8, 10, .88);
    color: #f5f8fa;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    text-transform: none;
    padding: 8px 11px;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.dash-module-search input:focus {
    border-color: rgba(246, 214, 127, .9);
    box-shadow:
        0 0 0 2px rgba(214, 170, 82, .14),
        inset 0 1px 0 rgba(255,255,255,.08);
}

.dash-search-empty {
    margin-top: 10px;
}

.dash-tool.is-search-hidden {
    display: none !important;
}

.dash-topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
}

.dash-welcome h1 {
    margin: 0;
    font-size: clamp(22px, 2.1vw, 32px);
    line-height: 1;
}

.dash-welcome h1::after {
    content: "";
    display: block;
    width: min(420px, 56vw);
    height: 2px;
    margin-top: 9px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.92), rgba(96,174,255,.72), transparent);
    box-shadow: 0 0 18px rgba(186, 226, 255, .54);
}

.dash-account-note {
    margin: 8px 0 0;
    color: rgba(226, 234, 239, .75);
    font-size: 12px;
    line-height: 1.35;
}

.dash-status-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(76px, 1fr));
    gap: 8px;
}

.dash-status {
    min-width: 76px;
    padding: 7px 9px;
    border: 1px solid rgba(202, 213, 221, .26);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(78,88,96,.48), rgba(13,17,20,.42));
}

.dash-status span,
.dash-panel-head span,
.dash-tool small {
    display: block;
    color: rgba(221, 228, 233, .68);
    font-size: 11px;
}

.dash-status strong {
    display: block;
    margin-top: 3px;
    color: #f4f7f9;
    font-size: 12px;
}

.dash-status.locked strong {
    color: #ffd9d9;
}

.renewal-card {
    position: relative;
    width: min(780px, 100%);
    margin: 0 auto 2px;
    padding: 12px 44px 12px 14px;
    border: 1px solid rgba(231, 184, 91, .62);
    border-radius: 9px;
    background:
        linear-gradient(135deg, rgba(255, 211, 126, .13), rgba(255,255,255,.032) 46%, rgba(0,0,0,.2)),
        rgba(28, 34, 38, .9);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 14px 34px rgba(0,0,0,.28), 0 0 24px rgba(255, 194, 82, .09);
}

.admin-ticket-alert {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 18px;
    background: rgba(0, 0, 0, .58);
}

.admin-ticket-alert-card {
    position: relative;
    width: min(560px, calc(100vw - 28px));
    padding: 18px 46px 18px 18px;
    border: 1px solid rgba(231, 184, 91, .68);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(255, 211, 126, .16), rgba(255,255,255,.04) 46%, rgba(0,0,0,.2)),
        rgba(25, 31, 35, .97);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 24px 70px rgba(0,0,0,.52), 0 0 36px rgba(255, 194, 82, .14);
}

.renewal-title {
    margin: 0 0 6px;
    color: #fff4d4;
    font-size: 15px;
    line-height: 1.15;
    text-transform: uppercase;
}

.renewal-text {
    color: rgba(238, 236, 226, .86);
    font-size: 12px;
    line-height: 1.55;
}

.renewal-pay-btn {
    display: inline-flex;
    min-height: 27px;
    margin: 8px 0 6px;
    padding-inline: 14px;
    border-color: rgba(255, 212, 126, .54);
    color: #fff7df;
}

.renewal-close {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 25px;
    height: 25px;
    border: 1px solid rgba(233, 222, 193, .38);
    border-radius: 7px;
    background: rgba(11, 14, 16, .42);
    color: rgba(255, 250, 238, .86);
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.renewal-close:hover,
.renewal-pay-btn:hover {
    border-color: rgba(255, 232, 175, .78);
    box-shadow: 0 0 18px rgba(255, 206, 99, .16);
}

.app-btn:not(.danger),
.dash-pill,
.mini-action:not(.danger) {
    border-color: rgba(231, 184, 91, .30) !important;
    background:
        linear-gradient(135deg, rgba(255, 211, 126, .08), rgba(255,255,255,.035) 46%, rgba(0,0,0,.18)),
        linear-gradient(180deg, rgba(72,80,87,.76), rgba(28,34,39,.78)) !important;
}

.app-btn:not(.danger):hover,
.dash-pill:hover,
.dash-pill.active,
.mini-action:not(.danger):hover {
    border-color: rgba(255, 232, 175, .68) !important;
    color: #fff8df !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 0 18px rgba(255, 206, 99, .14), 0 9px 20px rgba(0,0,0,.24) !important;
}

.dash-topbar,
.dash-panel,
.dash-modules,
.auth-panel,
.content-panel,
.admin-panel,
.tool-panel,
.module-section {
    border-color: rgba(231, 184, 91, .20) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 15px 38px rgba(0,0,0,.27), 0 0 24px rgba(255, 194, 82, .045) !important;
}

.dash-tool.enabled,
.module-card.enabled,
.mini-card,
.plan-card,
.info-card,
.stat {
    border-color: rgba(231, 184, 91, .22) !important;
}

.dash-panel-head h2,
.module-section h2,
.plan-card h2,
.info-card h2,
.mini-card h2 {
    color: #fff4d4;
}

.dash-quick {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dash-nav-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.dash-nav-row.primary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dash-nav-row.secondary {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.dash-nav-row.utility {
    justify-content: flex-end;
}

.dash-pill,
.dash-tab {
    display: inline-flex;
    min-height: 27px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(210, 220, 228, .32);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(83,93,101,.78), rgba(19,24,28,.68));
    color: #f5f8fa;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    white-space: normal;
}

.dash-pill {
    padding: 5px 9px;
    cursor: pointer;
}

.dash-pill.icon-pill {
    min-height: 43px;
    justify-content: flex-start;
    gap: 7px;
    padding: 7px 9px;
}

.dash-pill.icon-pill img {
    flex: 0 0 auto;
    width: 30px;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 5px 9px rgba(0,0,0,.34));
}

.dash-pill-icons {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.dash-pill.icon-pill .dash-pill-icons img {
    width: 28px;
    height: 24px;
}

.dash-pill.icon-pill .dash-pill-icons img + img {
    margin-left: -8px;
}

.dash-pill.icon-pill span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.dash-pill.active,
.dash-pill.icon-pill.active {
    background:
        linear-gradient(135deg, rgba(255, 218, 139, .22), rgba(255,255,255,.07) 42%, rgba(7,10,12,.24)),
        linear-gradient(180deg, rgba(84, 89, 84, .72), rgba(24, 29, 31, .86));
    color: #fff5d8;
    border-color: rgba(255, 220, 137, .72);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.14),
        0 0 0 1px rgba(255, 210, 115, .10),
        0 0 18px rgba(255, 199, 87, .13),
        0 10px 22px rgba(0,0,0,.24);
}

.dash-pill.admin {
    border-color: rgba(127, 199, 255, .5);
}

.dash-grid {
    display: grid;
    grid-template-columns: minmax(240px, .72fr) minmax(0, 1fr) minmax(240px, .72fr);
    gap: 8px;
}

.dash-panel,
.dash-modules {
    padding: 11px;
}

.dash-panel-head {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.dash-panel-head h2 {
    margin: 0;
    font-size: 14px;
    line-height: 1.1;
}

.dash-updates {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dash-updates li,
.dash-workflow div {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 29px;
    padding: 5px 7px;
    border: 1px solid rgba(205, 216, 224, .17);
    border-radius: 7px;
    background: rgba(9, 13, 16, .22);
}

.dash-updates b,
.dash-workflow strong {
    min-width: 42px;
    color: #eaf5ff;
    font-size: 11px;
    text-align: center;
}

.dash-updates b {
    color: #07100a;
    border-radius: 999px;
    background: linear-gradient(135deg, #83ffb5, #f6d67f);
    box-shadow: 0 0 0 rgba(131, 255, 181, 0);
    animation: dashNewBlink 1.05s ease-in-out infinite;
}

.dash-updates span,
.dash-workflow span {
    color: rgba(239, 244, 248, .86);
    font-size: 11px;
    line-height: 1.25;
}

.dash-workflow {
    display: grid;
    gap: 5px;
}

.dash-video {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(205, 216, 224, .2);
    border-radius: 8px;
    background: #0e1417;
}

.dash-video iframe {
    width: 100%;
    height: 100%;
}

.dash-tabs {
    display: flex;
    gap: 7px;
    margin-bottom: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.dash-tab {
    flex: 0 0 auto;
    padding: 5px 8px;
    cursor: pointer;
}

.dash-tab.active,
.dash-pill:hover,
.dash-tool.enabled:hover {
    background:
        linear-gradient(135deg, rgba(255, 218, 139, .20), rgba(255,255,255,.065) 44%, rgba(7,10,12,.30)),
        linear-gradient(180deg, rgba(76, 84, 83, .70), rgba(17, 22, 24, .88));
    color: #fff7df;
    border-color: rgba(255, 220, 137, .70);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.14),
        0 0 18px rgba(255, 199, 87, .14),
        0 10px 22px rgba(0,0,0,.26);
}

.dash-module-panel {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(224px, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(205, 216, 224, .14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 213, 128, .045), transparent 42%),
        rgba(6, 10, 13, .18);
}

.dash-module-panel.active {
    display: grid;
}

.dash-module-panel.active .dash-tool,
.dash-module-panel.active .dash-empty {
    animation: dashCascade .48s cubic-bezier(.18, .72, .22, 1) both;
}

.dash-module-panel.active .dash-tool:nth-child(2) { animation-delay: 55ms; }

.dash-module-panel.active .dash-tool:nth-child(3) { animation-delay: 110ms; }

.dash-module-panel.active .dash-tool:nth-child(4) { animation-delay: 165ms; }

.dash-module-panel.active .dash-tool:nth-child(5) { animation-delay: 220ms; }

.dash-module-panel.active .dash-tool:nth-child(6) { animation-delay: 275ms; }

.dash-module-panel.active .dash-tool:nth-child(7) { animation-delay: 330ms; }

.dash-module-panel.active .dash-tool:nth-child(8) { animation-delay: 385ms; }

.dash-module-panel.active .dash-tool:nth-child(n+9) { animation-delay: 440ms; }

.dash-tool {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    min-height: 60px;
    padding: 8px 9px;
    border: 1px solid rgba(205, 216, 224, .26);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(255, 221, 143, .07), transparent 46%),
        linear-gradient(180deg, rgba(70,79,87,.42), rgba(12,16,19,.44));
    color: #f4f7f9;
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.dash-tool img {
    max-width: 35px;
    max-height: 29px;
    object-fit: contain;
    filter: drop-shadow(0 5px 9px rgba(0,0,0,.32));
}

.dash-tool strong {
    display: block;
    font-size: 12px;
    line-height: 1.16;
    white-space: normal;
    overflow-wrap: anywhere;
}

.dash-tool small {
    display: block;
    margin-top: 3px;
    color: rgba(239, 244, 248, .72);
    font-size: 10px;
    line-height: 1.16;
    white-space: normal;
    overflow-wrap: anywhere;
}

.dash-tool em {
    color: rgba(238, 244, 248, .78);
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
    align-self: center;
}

.dash-tool.enabled:hover {
    transform: translateY(-2px);
}

.dash-tool.enabled:hover strong,
.dash-tool.enabled:hover em {
    color: #fff7df;
}

.dash-tool.enabled:hover small {
    color: rgba(247, 239, 219, .82);
}

.dash-tool.enabled:hover img {
    filter: brightness(1.12) drop-shadow(0 0 10px rgba(255, 199, 87, .24));
}

.dash-tool.locked {
    opacity: .58;
    border-style: dashed;
    background: linear-gradient(180deg, rgba(53,59,65,.3), rgba(12,16,19,.34));
}

.dash-tool.locked em {
    color: #ffd6d6;
}

.renewal-payment-form {
    margin: 10px 0 0;
}

.dash-tool.locked {
    opacity: .72;
}

.dash-empty {
    display: grid;
    gap: 4px;
    grid-column: 1 / -1;
    padding: 12px;
    border: 1px dashed rgba(205, 216, 224, .28);
    border-radius: 8px;
    background: rgba(8, 12, 15, .24);
    color: rgba(236, 242, 246, .8);
    font-size: 12px;
}

.demo-hero .dash-welcome {
    gap: 8px;
}

.demo-hero-actions,
.demo-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.demo-info-pill {
    position: relative;
    min-width: 0;
    overflow: visible;
}

.demo-info-pill > .dash-pill {
    width: 100%;
    height: 100%;
}

.demo-section-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    z-index: 35;
    display: none;
    width: min(420px, calc(100vw - 42px));
    padding: 12px 13px;
    border: 1px solid rgba(216,173,85,.58);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(216,173,85,.15), rgba(255,255,255,.055) 38%, rgba(9,13,16,.96)),
        rgba(11, 16, 20, .98);
    box-shadow: 0 22px 58px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.1);
    color: #f4f0df;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0;
    text-align: left;
    text-transform: none;
    white-space: normal;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 6px);
    transition: opacity .18s ease, transform .18s ease;
}

.demo-section-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 10px;
    height: 10px;
    border-right: 1px solid rgba(216,173,85,.58);
    border-bottom: 1px solid rgba(216,173,85,.58);
    background: rgba(12,17,20,.98);
    transform: translate(-50%, -5px) rotate(45deg);
}

.demo-info-pill:hover .demo-section-tooltip,
.demo-info-pill:focus-within .demo-section-tooltip {
    display: block;
    opacity: 1;
    transform: translate(-50%, 0);
}

.demo-tool-preview {
    width: 100%;
    border: 1px solid rgba(205,216,224,.2);
    cursor: pointer;
    text-align: left;
}

.demo-tool-preview:hover {
    border-color: rgba(196,159,70,.55);
}

.demo-access-note {
    display: grid;
    gap: 10px;
    color: rgba(230,237,242,.72);
    font-size: 12px;
}

.demo-access-note strong {
    color: #f4f7f9;
    font-size: 14px;
}

.demo-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(0,0,0,.62);
    backdrop-filter: blur(10px);
}

.demo-modal-backdrop.active {
    display: flex;
}

.demo-modal-card {
    position: relative;
    width: min(480px, calc(100vw - 36px));
    padding: 18px;
    border: 1px solid rgba(196,159,70,.46);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(196,159,70,.14), transparent 38%),
        rgba(16, 22, 26, .96);
    box-shadow: 0 28px 90px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.08);
}

.demo-modal-card h2 {
    margin: 6px 0 8px;
    color: #f4f7f9;
    font-size: 24px;
    line-height: 1.05;
}

.demo-modal-card p {
    margin: 0 0 14px;
    color: rgba(230,237,242,.74);
    font-size: 13px;
    line-height: 1.5;
}

.public-home-page .dashboard-shell {
    gap: 14px;
}

.home-overview-grid,
.home-detail-layout,
.home-process-grid {
    display: grid;
    gap: 12px;
}

.home-overview-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-overview-card {
    display: grid;
    gap: 7px;
    min-height: 118px;
    padding: 15px;
    border: 1px solid rgba(192, 203, 211, .24);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(216, 173, 85, .13), rgba(255,255,255,.035) 42%, rgba(0,0,0,.26)),
        linear-gradient(180deg, rgba(31,39,44,.88), rgba(14,19,22,.9));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 14px 34px rgba(0,0,0,.22);
}

.home-overview-card span,
.home-chip-grid span,
.home-capability-list span {
    color: rgba(231, 237, 241, .72);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
}

.home-overview-card strong {
    color: #f5f7f9;
    font-size: 28px;
    line-height: 1;
}

.home-overview-card p,
.home-detail-lead {
    margin: 0;
    color: rgba(229, 237, 242, .76);
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.45;
}

.home-detail-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
}

.home-detail-panel {
    min-height: 100%;
}

.home-chip-grid,
.home-capability-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home-chip-grid {
    margin-top: 13px;
}

.home-chip-grid span,
.home-capability-list span {
    padding: 7px 9px;
    border: 1px solid rgba(196, 159, 70, .32);
    border-radius: 8px;
    background: rgba(9, 14, 17, .46);
    color: #efe7c9;
}

.home-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.home-step-list {
    display: grid;
    gap: 8px;
}

.home-step-list div {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    min-height: 48px;
    padding: 10px;
    border: 1px solid rgba(205,216,224,.16);
    border-radius: 8px;
    background: rgba(7, 11, 14, .32);
}

.home-step-list b {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(196,159,70,.45);
    border-radius: 50%;
    background: rgba(216,173,85,.14);
    color: #f4ecd2;
    font-size: 12px;
    line-height: 1;
}

.home-step-list span {
    color: rgba(235, 241, 244, .8);
    font-size: 12.4px;
    font-weight: 800;
    line-height: 1.4;
}

.home-capability-band {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(196,159,70,.28);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(196,159,70,.13), rgba(255,255,255,.035) 46%, rgba(0,0,0,.25)),
        linear-gradient(180deg, rgba(33,40,44,.88), rgba(12,17,20,.9));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 16px 40px rgba(0,0,0,.24);
}

.home-capability-band h2 {
    margin: 5px 0 0;
    color: #f4f7f9;
    font-size: clamp(20px, 1.9vw, 28px);
    line-height: 1.1;
}

.home-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 680px) {
    .demo-section-tooltip {
            left: 0;
            bottom: auto;
            top: calc(100% + 9px);
            width: min(310px, calc(100vw - 34px));
            transform: translateY(-4px);
        }
    
    .demo-section-tooltip::after {
            top: auto;
            bottom: 100%;
            left: 22px;
            transform: translateY(5px) rotate(225deg);
        }
    
    .demo-info-pill:hover .demo-section-tooltip,
        .demo-info-pill:focus-within .demo-section-tooltip {
            transform: translateY(0);
        }
}

@media (max-width: 1100px) {
    .home-overview-grid,
    .home-process-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
}

@media (max-width: 980px) {
    .dash-topbar,
        .dash-grid,
        .admin-grid {
            grid-template-columns: 1fr;
        }

    .home-detail-layout,
        .home-capability-band {
            grid-template-columns: 1fr;
        }
    
    .dash-section-toolbar {
            align-items: flex-start;
            flex-direction: column;
        }
    
    .dash-module-search {
            grid-template-columns: 1fr;
            margin-left: 0;
            width: 100%;
        }
    
    .dash-section-note {
            text-align: left;
        }
}

@media (max-width: 560px) {
    .dash-topbar,
        .dash-panel,
        .dash-modules {
            padding: 12px;
        }

    .home-overview-grid,
        .home-process-grid {
            grid-template-columns: 1fr;
        }

    .home-overview-card,
        .home-capability-band {
            padding: 12px;
        }
    
    .dash-status-row,
        .dash-module-panel {
            grid-template-columns: 1fr;
        }
    
    .dash-nav-row.primary,
        .dash-nav-row.secondary {
            grid-template-columns: 1fr;
        }
    
    .dash-tool {
            grid-template-columns: 38px minmax(0, 1fr) auto;
        }
}

/* 2026-06-23 design scale pass */
.dashboard .app-main {
    width: min(1240px, calc(100vw - 34px)) !important;
}

.dashboard-shell {
    gap: 12px;
}

.dash-topbar,
.dash-panel,
.dash-modules {
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.028) 42%, rgba(0,0,0,.24)),
        linear-gradient(180deg, rgba(37,45,50,.90), rgba(17,22,25,.86));
}

.dash-topbar {
    gap: 16px;
    padding: 16px 18px;
}

.dash-welcome h1 {
    font-size: clamp(25px, 2.35vw, 36px);
    line-height: 1.05;
}

.dash-account-note {
    max-width: 720px;
    font-size: 13px;
    line-height: 1.45;
}

.dash-status-row {
    grid-template-columns: repeat(4, minmax(88px, 1fr));
    gap: 10px;
}

.dash-status {
    min-width: 88px;
    min-height: 58px;
    padding: 10px 12px;
    border-radius: 10px;
}

.dash-status span,
.dash-panel-head span,
.dash-tool small {
    font-size: 11.5px;
}

.dash-status strong {
    margin-top: 5px;
    font-size: 13px;
}

.dash-quick {
    gap: 8px;
}

.dash-nav-row {
    gap: 9px;
}

.dash-pill,
.dash-tab {
    min-height: 32px;
    border-radius: 9px;
    font-size: 10.8px;
    line-height: 1.15;
}

.dash-pill {
    padding: 7px 11px;
}

.dash-pill.icon-pill {
    min-height: 54px;
    gap: 10px;
    padding: 9px 11px;
}

.dash-pill.icon-pill img {
    width: 38px;
    height: 30px;
}

.dash-pill.icon-pill .dash-pill-icons img {
    width: 34px;
    height: 30px;
}

.dash-pill.icon-pill .dash-pill-icons img + img {
    margin-left: -10px;
}

.dash-pill.dash-primary-pill.icon-pill {
    min-height: 48px;
    gap: 8px;
    padding: 7px 9px;
    font-size: 10.2px;
}

.dash-pill.dash-primary-pill.icon-pill img {
    width: 34px;
    height: 27px;
}

.dash-pill.dash-primary-pill.icon-pill .dash-pill-icons img {
    width: 31px;
    height: 27px;
}

.dash-pill.dash-primary-pill.icon-pill .dash-pill-icons img + img {
    margin-left: -9px;
}

.dash-grid {
    grid-template-columns: minmax(260px, .76fr) minmax(0, 1fr) minmax(260px, .76fr);
    gap: 12px;
}

.dash-panel,
.dash-modules {
    padding: 15px;
}

.dash-panel-head {
    margin-bottom: 13px;
}

.dash-panel-head h2 {
    font-size: 15.5px;
}

.dash-updates,
.dash-workflow {
    gap: 7px;
}

.dash-updates li,
.dash-workflow div {
    min-height: 36px;
    padding: 8px 10px;
    border-radius: 8px;
}

.dash-updates b,
.dash-workflow strong {
    font-size: 11.5px;
}

.dash-updates span,
.dash-workflow span {
    font-size: 11.8px;
    line-height: 1.35;
}

.dash-section-toolbar {
    gap: 12px;
    margin-bottom: 12px;
}

.dash-section-note {
    font-size: 12px;
    line-height: 1.45;
}

.dash-module-panel {
    grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
}

#ecu_pwr.dash-module-panel,
#demo_ecu_pwr.dash-module-panel {
    grid-template-columns: repeat(auto-fit, minmax(258px, 340px));
    justify-content: center;
}

.dash-tool {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 11px;
    min-height: 76px;
    padding: 12px;
    border-radius: 10px;
}

.dash-tool img {
    max-width: 44px;
    max-height: 36px;
}

.dash-tool strong {
    font-size: 13.5px;
    line-height: 1.2;
}

.dash-tool small {
    margin-top: 5px;
    line-height: 1.28;
}

.dash-tool em {
    font-size: 10.8px;
}

@media (max-width: 980px) {
    .dashboard .app-main {
            width: min(100% - 22px, 760px) !important;
        }
    
    .dash-topbar,
        .dash-grid {
            grid-template-columns: 1fr;
        }
    
    .dash-status-row {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    
    .dash-nav-row.primary,
        .dash-nav-row.secondary {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
}

@media (max-width: 620px) {
    .dashboard .app-main {
            width: calc(100vw - 16px) !important;
        }
    
    .dash-topbar,
        .dash-panel,
        .dash-modules {
            padding: 12px;
        }
    
    .dash-status-row,
        .dash-nav-row.primary,
        .dash-nav-row.secondary,
        .dash-module-panel {
            grid-template-columns: 1fr;
        }
    
    .dash-tool {
            grid-template-columns: 42px minmax(0, 1fr);
        }
    
    .dash-tool em {
            grid-column: 2;
            justify-self: start;
        }
}

/* Project typography refresh: technical, compact, and readable for tool-heavy pages. */
body.app-shell,
.app-main,
.tool-panel,
.module-card,
.dash-card,
.mini-card,
.form-grid,
.auth-copy,
.app-footer,
.app-user-text {
    font-family: var(--font-ui, "Bahnschrift", "Segoe UI Variable", "Segoe UI", Arial, sans-serif) !important;
}

.tool-panel,
.mini-card,
.module-card,
.dash-tool,
.form-grid,
.auth-copy,
.lead,
.muted {
    font-size: 15px;
}

.page-title,
.section-title,
.dashboard-title,
.hero-title,
.eyebrow,
.app-btn,
.mini-action,
.module-card h3,
.dash-card h2,
.bcm2-eeprom-head h1,
.bcm2-clone-subhead h2,
.admin-chip {
    font-family: var(--font-display, "Bahnschrift Condensed", "Bahnschrift", "Arial Narrow", Arial, sans-serif) !important;
    letter-spacing: 0;
}

.app-main,
.dashboard .app-main,
.shop-page .app-main,
.old-login-shared .app-main,
.register-page .app-main,
.premium-auth-page .app-main {
    min-width: 0;
}

.dash-topbar,
.dash-grid,
.dash-status-row,
.dash-nav-row,
.dash-module-panel,
.shop-products,
.shop-steps,
.shop-supported-grid,
.register-shell,
.register-mini-grid,
.old-login-main,
.admin-old-shell,
.access-plan-admin-grid,
.seasonal-admin-grid {
    min-width: 0;
}

.dash-tool,
.shop-product,
.register-form-card,
.old-login-page .login-card,
.admin-old-section,
.tool-panel,
.module-section {
    min-width: 0;
    overflow-wrap: anywhere;
}

@media (max-width: 980px) {
    .app-main,
        .dashboard .app-main,
        .shop-page .app-main,
        .old-login-shared .app-main,
        .register-page .app-main,
        .premium-auth-page .app-main {
            width: min(100%, calc(100vw - 24px)) !important;
            margin-left: auto;
            margin-right: auto;
        }
    
    .dash-topbar,
        .dash-grid,
        .register-shell,
        .old-login-main,
        .shop-steps {
            grid-template-columns: 1fr !important;
        }
    
    .dash-status-row,
        .shop-products,
        .shop-supported-grid,
        .access-plan-admin-grid,
        .seasonal-admin-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        }
}

@media (max-width: 720px) {
    .app-main,
        .dashboard .app-main,
        .shop-page .app-main,
        .old-login-shared .app-main,
        .register-page .app-main,
        .premium-auth-page .app-main {
            width: min(100%, calc(100vw - 16px)) !important;
            margin-top: 8px;
            margin-bottom: 10px;
        }
    
    .dash-topbar,
        .dash-panel,
        .dash-modules,
        .renewal-card,
        .shop-panel,
        .shop-hero,
        .register-form-card,
        .old-login-page .login-card,
        .old-login-page .updates-card,
        .tool-panel,
        .module-section,
        .admin-old-section {
            padding-left: 12px !important;
            padding-right: 12px !important;
        }
    
    .dash-status-row,
        .dash-nav-row.primary,
        .dash-nav-row.secondary,
        .dash-nav-row.utility,
        .dash-module-panel,
        .shop-products,
        .shop-steps,
        .shop-payment-strip,
        .shop-supported-grid,
        .register-mini-grid,
        .access-plan-admin-grid,
        .seasonal-admin-grid,
        .login-proof-grid {
            grid-template-columns: 1fr !important;
            width: 100%;
        }
    
    .dash-status-row {
            gap: 8px;
        }
    
    .dash-pill,
        .dash-tab,
        .app-btn,
        button.app-btn,
        .shop-buy,
        .renewal-pay-btn,
        .mini-auth-btn,
        .register-action-btn {
            min-height: 44px;
            width: 100%;
            justify-content: center;
            text-align: center;
            white-space: normal;
            overflow-wrap: anywhere;
        }
    
    .dash-tool {
            grid-template-columns: 46px minmax(0, 1fr) !important;
            width: 100%;
            min-width: 0;
        }
    
    .dash-tool img {
            width: 42px;
            height: 42px;
        }
    
    .dash-tool strong,
        .dash-tool small,
        .dash-tool em,
        .shop-product h3,
        .shop-product p,
        .register-form-head,
        .old-login-page .form-foot {
            overflow-wrap: anywhere;
            word-break: normal;
        }
}

@media (max-width: 480px) {
    .app-main,
        .dashboard .app-main,
        .shop-page .app-main,
        .old-login-shared .app-main,
        .register-page .app-main,
        .premium-auth-page .app-main {
            width: min(100%, calc(100vw - 10px)) !important;
        }
    
    .dash-topbar,
        .dash-panel,
        .dash-modules,
        .renewal-card,
        .shop-panel,
        .shop-hero,
        .register-form-card,
        .old-login-page .login-card,
        .tool-panel,
        .module-section,
        .admin-old-section {
            padding-left: 9px !important;
            padding-right: 9px !important;
        }
    
    .dash-tool {
            grid-template-columns: 40px minmax(0, 1fr) !important;
            gap: 8px;
        }
    
    .dash-tool img {
            width: 36px;
            height: 36px;
        }
}

