/* /Components/Admin/Insights/InsightEdit.razor.rz.scp.css */
.insight-editor[b-70avjedknz] {
    min-height: 100vh;
    padding: 60px 0 100px;
    background: var(--background);
}

.editor-container[b-70avjedknz] {
    width: min(1250px, calc(100% - 48px));
    margin: 0 auto;
}


/* HEADER */

.editor-header[b-70avjedknz] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 32px;
}

    .editor-header h1[b-70avjedknz] {
        margin: 12px 0 0;
        font-family: 'Signika-Bold';
        font-size: 38px;
        color: var(--text-primary);
    }

.back-button[b-70avjedknz] {
    padding: 0;
    border: none;
    background: transparent;
    font-family: 'Signika-Regular';
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
}

.header-actions[b-70avjedknz] {
    display: flex;
    gap: 10px;
}

.primary-button[b-70avjedknz],
.secondary-button[b-70avjedknz] {
    padding: 12px 19px;
    border-radius: 9px;
    font-family: 'Signika-Bold';
    font-size: 14px;
    cursor: pointer;
}

.primary-button[b-70avjedknz] {
    border: 1px solid var(--primary);
    background: var(--primary);
    color: #fff;
}

.secondary-button[b-70avjedknz] {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-primary);
}

    .primary-button:disabled[b-70avjedknz],
    .secondary-button:disabled[b-70avjedknz] {
        opacity: .55;
        cursor: default;
    }


/* MESSAGE */

.editor-message[b-70avjedknz] {
    margin-bottom: 24px;
    padding: 13px 16px;
    border-radius: 9px;
    font-family: 'Signika-Regular';
    font-size: 14px;
}

    .editor-message.success[b-70avjedknz] {
        background: var(--primary-soft);
        color: var(--primary);
    }

    .editor-message.error[b-70avjedknz] {
        background: var(--surface);
        border: 1px solid var(--border);
        color: var(--text-primary);
    }


/* LAYOUT */

.editor-layout[b-70avjedknz] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 24px;
    align-items: start;
}

.editor-main[b-70avjedknz] {
    min-width: 0;
}

.editor-sidebar[b-70avjedknz] {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* LANGUAGE */

.language-tabs[b-70avjedknz] {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.language-tab[b-70avjedknz] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    font-family: 'Signika-Bold';
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
}

    .language-tab.active[b-70avjedknz] {
        background: var(--surface);
        border-color: var(--border);
        color: var(--text-primary);
    }

.language-dot[b-70avjedknz] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

    .language-dot.published[b-70avjedknz] {
        background: var(--primary);
    }

    .language-dot.draft[b-70avjedknz] {
        border: 1px solid var(--text-secondary);
    }


/* CARD */

.editor-card[b-70avjedknz] {
    padding: 26px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 15px;
}

.sidebar-card[b-70avjedknz] {
    padding: 22px;
}

    .sidebar-card h3[b-70avjedknz] {
        margin: 0 0 22px;
        font-family: 'Signika-Bold';
        font-size: 17px;
        color: var(--text-primary);
    }


/* FORM */

.form-group[b-70avjedknz] {
    margin-bottom: 24px;
}

    .form-group:last-child[b-70avjedknz] {
        margin-bottom: 0;
    }

    .form-group label[b-70avjedknz] {
        display: block;
        margin-bottom: 7px;
        font-family: 'Signika-Bold';
        font-size: 13px;
        color: var(--text-primary);
    }

.form-input[b-70avjedknz],
.form-textarea[b-70avjedknz],
.markdown-editor[b-70avjedknz] {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--background);
    font-family: 'Signika-Regular';
    font-size: 15px;
    color: var(--text-primary);
    outline: none;
}

.form-input[b-70avjedknz] {
    height: 43px;
    padding: 0 12px;
}

.form-textarea[b-70avjedknz] {
    padding: 12px;
    resize: vertical;
}

    .form-textarea.excerpt[b-70avjedknz] {
        min-height: 100px;
    }

    .form-textarea.seo[b-70avjedknz] {
        min-height: 90px;
    }

    .form-input:focus[b-70avjedknz],
    .form-textarea:focus[b-70avjedknz],
    .markdown-editor:focus[b-70avjedknz] {
        border-color: var(--primary);
    }

.form-group small[b-70avjedknz] {
    display: block;
    margin-top: 7px;
    font-family: 'Signika-Light';
    font-size: 12px;
    color: var(--text-secondary);
}

.form-label-row[b-70avjedknz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 7px;
    font-family: 'Signika-Regular';
    font-size: 12px;
    color: var(--text-secondary);
}

    .form-label-row label[b-70avjedknz] {
        margin: 0;
    }

.markdown-badge[b-70avjedknz] {
    margin-left: 8px;
    font-family: 'Signika-Regular';
    font-size: 11px;
    color: var(--primary);
}


/* MARKDOWN */

.markdown-editor[b-70avjedknz] {
    min-height: 620px;
    padding: 18px;
    resize: vertical;
    line-height: 1.65;
}


/* SIDEBAR */

.checkbox-row[b-70avjedknz] {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'Signika-Regular';
    font-size: 14px;
    color: var(--text-primary);
    cursor: pointer;
}

    .checkbox-row input[b-70avjedknz] {
        width: 16px;
        height: 16px;
    }

.image-preview[b-70avjedknz] {
    overflow: hidden;
    margin: -5px 0 20px;
    border-radius: 9px;
    background: var(--background);
}

    .image-preview img[b-70avjedknz] {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

.publish-status[b-70avjedknz] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    font-family: 'Signika-Regular';
    font-size: 14px;
    color: var(--text-secondary);
}

    .publish-status strong[b-70avjedknz] {
        font-family: 'Signika-Bold';
        color: var(--text-primary);
    }

.publish-date[b-70avjedknz] {
    margin-bottom: 18px;
    font-family: 'Signika-Light';
    font-size: 12px;
    color: var(--text-secondary);
}

.full-secondary-button[b-70avjedknz],
.archive-button[b-70avjedknz] {
    width: 100%;
    padding: 11px 14px;
    border-radius: 8px;
    font-family: 'Signika-Bold';
    font-size: 13px;
    cursor: pointer;
}

.full-secondary-button[b-70avjedknz] {
    border: 1px solid var(--border);
    background: var(--background);
    color: var(--text-primary);
}

.archive-button[b-70avjedknz] {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
}


/* STATE */

.editor-loading[b-70avjedknz] {
    padding: 100px 0;
    font-family: 'Signika-Regular';
    text-align: center;
    color: var(--text-secondary);
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .editor-layout[b-70avjedknz] {
        grid-template-columns: 1fr;
    }

    .editor-sidebar[b-70avjedknz] {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 700px) {

    .editor-container[b-70avjedknz] {
        width: calc(100% - 32px);
    }

    .editor-header[b-70avjedknz] {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-actions[b-70avjedknz] {
        width: 100%;
    }

    .primary-button[b-70avjedknz],
    .secondary-button[b-70avjedknz] {
        flex: 1;
    }

    .editor-sidebar[b-70avjedknz] {
        grid-template-columns: 1fr;
    }

    .editor-card[b-70avjedknz] {
        padding: 20px;
    }

    .markdown-editor[b-70avjedknz] {
        min-height: 450px;
    }
}
/* /Components/Admin/Insights/InsightsAdmin.razor.rz.scp.css */
.admin-insights[b-0rmpeilqt9] {
    min-height: 100vh;
    padding: 70px 0 100px;
    background: var(--background);
}

.admin-container[b-0rmpeilqt9] {
    width: min(1250px, calc(100% - 48px));
    margin: 0 auto;
}

.admin-header[b-0rmpeilqt9] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}

.admin-eyebrow[b-0rmpeilqt9] {
    display: block;
    margin-bottom: 8px;
    font-family: 'Signika-Bold';
    font-size: 12px;
    letter-spacing: .1em;
    color: var(--primary);
}

.admin-header h1[b-0rmpeilqt9] {
    margin: 0;
    font-family: 'Signika-Bold';
    font-size: 42px;
    color: var(--text-primary);
}

.admin-header p[b-0rmpeilqt9] {
    margin: 8px 0 0;
    font-family: 'Signika-Light';
    font-size: 16px;
    color: var(--text-secondary);
}

.primary-button[b-0rmpeilqt9] {
    padding: 13px 20px;
    border: none;
    border-radius: 9px;
    background: var(--primary);
    font-family: 'Signika-Bold';
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}

.admin-table-wrapper[b-0rmpeilqt9] {
    overflow-x: auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.admin-table[b-0rmpeilqt9] {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Signika-Regular';
}

    .admin-table th[b-0rmpeilqt9] {
        padding: 14px 18px;
        border-bottom: 1px solid var(--border);
        font-family: 'Signika-Bold';
        font-size: 12px;
        letter-spacing: .04em;
        text-align: left;
        text-transform: uppercase;
        color: var(--text-secondary);
    }

    .admin-table td[b-0rmpeilqt9] {
        padding: 18px;
        border-bottom: 1px solid var(--border);
        font-size: 14px;
        color: var(--text-primary);
    }

    .admin-table tbody tr:last-child td[b-0rmpeilqt9] {
        border-bottom: none;
    }

    .admin-table tbody tr:hover[b-0rmpeilqt9] {
        background: var(--background);
    }

.title-cell[b-0rmpeilqt9] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.article-title[b-0rmpeilqt9] {
    font-family: 'Signika-Bold';
}

.featured-badge[b-0rmpeilqt9] {
    padding: 3px 7px;
    border-radius: 5px;
    background: var(--primary-soft);
    font-family: 'Signika-Regular';
    font-size: 11px;
    color: var(--primary);
}

.translation-badge[b-0rmpeilqt9],
.status-badge[b-0rmpeilqt9] {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
}

    .translation-badge.published[b-0rmpeilqt9],
    .status-badge.published[b-0rmpeilqt9] {
        background: var(--primary-soft);
        color: var(--primary);
    }

    .translation-badge.draft[b-0rmpeilqt9],
    .status-badge.draft[b-0rmpeilqt9] {
        background: var(--background);
        color: var(--text-secondary);
    }

    .translation-badge.missing[b-0rmpeilqt9] {
        opacity: .55;
    }

    .status-badge.archived[b-0rmpeilqt9] {
        background: var(--background);
        color: var(--text-secondary);
        opacity: .7;
    }

.updated-cell[b-0rmpeilqt9] {
    white-space: nowrap;
    color: var(--text-secondary) !important;
}

.action-cell[b-0rmpeilqt9] {
    text-align: right;
}

.edit-button[b-0rmpeilqt9] {
    border: none;
    background: transparent;
    font-family: 'Signika-Bold';
    font-size: 14px;
    color: var(--primary);
    cursor: pointer;
}

.admin-state[b-0rmpeilqt9],
.admin-empty[b-0rmpeilqt9] {
    padding: 70px 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    font-family: 'Signika-Regular';
    color: var(--text-secondary);
}

    .admin-empty h2[b-0rmpeilqt9] {
        margin: 0 0 8px;
        font-family: 'Signika-Bold';
        color: var(--text-primary);
    }

    .admin-empty p[b-0rmpeilqt9] {
        margin: 0 0 24px;
    }

@media (max-width: 700px) {

    .admin-container[b-0rmpeilqt9] {
        width: calc(100% - 32px);
    }

    .admin-header[b-0rmpeilqt9] {
        flex-direction: column;
        align-items: flex-start;
    }

    .primary-button[b-0rmpeilqt9] {
        width: 100%;
    }
}
/* /Components/InsightComponents/FeaturedInsightCard.razor.rz.scp.css */
.featured-insight[b-zejxf0zy7x] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr);
    overflow: hidden;
    background: var(--primary);
    border-radius: 22px;
    text-decoration: none;
}

.featured-content[b-zejxf0zy7x] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
}

.featured-meta[b-zejxf0zy7x] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-family: 'Signika-Regular';
    font-size: 14px;
    color: rgba(255, 255, 255, .72);
}

    .featured-meta span:first-child[b-zejxf0zy7x] {
        font-family: 'Signika-Bold';
        color: #fff;
    }

.featured-content h2[b-zejxf0zy7x] {
    max-width: 650px;
    margin: 0 0 18px;
    font-family: 'Signika-Bold';
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.08;
    color: #fff;
}

.featured-content p[b-zejxf0zy7x] {
    max-width: 620px;
    margin: 0 0 30px;
    font-family: 'Signika-Light';
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .78);
}

.featured-action[b-zejxf0zy7x] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Signika-Bold';
    font-size: 15px;
    color: #fff;
}

    .featured-action span[b-zejxf0zy7x] {
        font-size: 20px;
        transition: transform .2s ease;
    }

.featured-insight:hover .featured-action span[b-zejxf0zy7x] {
    transform: translateX(5px);
}

.featured-image[b-zejxf0zy7x] {
    min-height: 390px;
    overflow: hidden;
}

    .featured-image img[b-zejxf0zy7x] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .35s ease;
    }

.featured-insight:hover .featured-image img[b-zejxf0zy7x] {
    transform: scale(1.025);
}

@media (max-width: 850px) {

    .featured-insight[b-zejxf0zy7x] {
        grid-template-columns: 1fr;
    }

    .featured-content[b-zejxf0zy7x] {
        padding: 34px;
    }

    .featured-image[b-zejxf0zy7x] {
        min-height: 260px;
        order: -1;
    }
}

@media (max-width: 600px) {

    .featured-content[b-zejxf0zy7x] {
        padding: 26px;
    }

        .featured-content h2[b-zejxf0zy7x] {
            font-size: 28px;
        }

        .featured-content p[b-zejxf0zy7x] {
            font-size: 15px;
        }

    .featured-image[b-zejxf0zy7x] {
        min-height: 210px;
    }
}
/* /Components/InsightComponents/InsightCard.razor.rz.scp.css */
.insight-card[b-iu6r0kq8ca] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

    .insight-card:hover[b-iu6r0kq8ca] {
        transform: translateY(-3px);
        border-color: var(--primary);
        box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
    }

.insight-card-image[b-iu6r0kq8ca] {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--background);
}

    .insight-card-image img[b-iu6r0kq8ca] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .3s ease;
    }

.insight-card:hover .insight-card-image img[b-iu6r0kq8ca] {
    transform: scale(1.025);
}

.insight-card-content[b-iu6r0kq8ca] {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

.insight-card-meta[b-iu6r0kq8ca] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
    font-family: 'Signika-Regular';
    font-size: 13px;
    color: var(--text-secondary);
}

.insight-card-category[b-iu6r0kq8ca] {
    color: var(--primary);
    font-family: 'Signika-Bold';
}

.insight-meta-separator[b-iu6r0kq8ca] {
    opacity: .5;
}

.insight-card h3[b-iu6r0kq8ca] {
    margin: 0 0 12px;
    font-family: 'Signika-Bold';
    font-size: 21px;
    line-height: 1.25;
    color: var(--text-primary);
}

.insight-card p[b-iu6r0kq8ca] {
    margin: 0 0 24px;
    font-family: 'Signika-Light';
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.insight-card-footer[b-iu6r0kq8ca] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    font-family: 'Signika-Regular';
    font-size: 14px;
    color: var(--primary);
}

.insight-card-arrow[b-iu6r0kq8ca] {
    font-size: 20px;
    transition: transform .2s ease;
}

.insight-card:hover .insight-card-arrow[b-iu6r0kq8ca] {
    transform: translateX(4px);
}

@media (max-width: 600px) {

    .insight-card-content[b-iu6r0kq8ca] {
        padding: 20px;
    }

    .insight-card h3[b-iu6r0kq8ca] {
        font-size: 19px;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-4f57nfkngw] {
    position: relative;
    display: block;
    flex-direction: row;
}

main[b-4f57nfkngw] {
    flex: 1;
}

#blazor-error-ui[b-4f57nfkngw] {
    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-4f57nfkngw] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-p927wuiikn],
.components-reconnect-repeated-attempt-visible[b-p927wuiikn],
.components-reconnect-failed-visible[b-p927wuiikn],
.components-pause-visible[b-p927wuiikn],
.components-resume-failed-visible[b-p927wuiikn],
.components-rejoining-animation[b-p927wuiikn] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-p927wuiikn],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-p927wuiikn],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-p927wuiikn],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-p927wuiikn],
#components-reconnect-modal.components-reconnect-retrying[b-p927wuiikn],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-p927wuiikn],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-p927wuiikn],
#components-reconnect-modal.components-reconnect-failed[b-p927wuiikn],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-p927wuiikn] {
    display: block;
}


#components-reconnect-modal[b-p927wuiikn] {
    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-p927wuiikn 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-p927wuiikn 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-p927wuiikn 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-p927wuiikn]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-p927wuiikn 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-p927wuiikn {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-p927wuiikn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-p927wuiikn {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-p927wuiikn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-p927wuiikn] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-p927wuiikn] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-p927wuiikn] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-p927wuiikn] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-p927wuiikn] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-p927wuiikn] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-p927wuiikn 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-p927wuiikn] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-p927wuiikn {
    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/Apply.razor.rz.scp.css */
/* ================================
   MicroMNA Seller Application
   ================================ */

.seller-application-page[b-77qmej0ukv] {
    min-height: 100vh;
    background: var(--background);
    color: var(--text-primary);
    font-family: "Signika-Regular", sans-serif;
    padding: 64px 20px 80px;
}

.seller-application-container[b-77qmej0ukv] {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}


/* Header */

.seller-application-header[b-77qmej0ukv] {
    margin-bottom: 32px;
}

.seller-application-eyebrow[b-77qmej0ukv] {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    margin-bottom: 18px;
    border-radius: 100px;
    background: var(--primary-soft);
    color: var(--primary);
    font-family: "Signika-Bold", sans-serif;
    font-size: 13px;
    letter-spacing: 0.02em;
    margin-top: 10px;
}

.seller-application-title[b-77qmej0ukv] {
    margin: 0 0 12px;
    color: var(--text-primary);
    font-family: "Signika-Bold", sans-serif;
    font-size: 38px;
    line-height: 1.12;
}

.seller-application-description[b-77qmej0ukv] {
    max-width: 650px;
    margin: 0;
    color: var(--text-secondary);
    font-family: "Signika-Regular", sans-serif;
    font-size: 17px;
    line-height: 1.6;
}

.seller-logo-link[b-77qmej0ukv] {
    width: max-content;
    height: max-content;
    display: block;
    margin: auto;
}

.seller-logo[b-77qmej0ukv] {
    display: block;
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 12px;
}

/* Form card */

.seller-form-card[b-77qmej0ukv] {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.02), 0 8px 24px rgba(16, 24, 40, 0.04);
}


/* Sections */

.seller-form-section[b-77qmej0ukv] {
    padding: 0;
}

    .seller-form-section + .seller-form-section[b-77qmej0ukv] {
        margin-top: 34px;
        padding-top: 34px;
        border-top: 1px solid var(--border-light);
    }

.seller-form-section-header[b-77qmej0ukv] {
    margin-bottom: 22px;
}

.seller-form-section-title[b-77qmej0ukv] {
    margin: 0 0 5px;
    color: var(--text-primary);
    font-family: "Signika-Bold", sans-serif;
    font-size: 19px;
}

.seller-form-section-description[b-77qmej0ukv] {
    margin: 0;
    color: var(--text-secondary);
    font-family: "Signika-Regular", sans-serif;
    font-size: 14px;
    line-height: 1.5;
}


/* Fields */

.seller-field[b-77qmej0ukv] {
    margin-bottom: 20px;
}

    .seller-field:last-child[b-77qmej0ukv] {
        margin-bottom: 0;
    }

.seller-label[b-77qmej0ukv] {
    display: block;
    margin-bottom: 7px;
    color: var(--text-primary);
    font-family: "Signika-Bold", sans-serif;
    font-size: 14px;
}

.seller-label-optional[b-77qmej0ukv] {
    margin-left: 4px;
    color: var(--text-muted);
    font-family: "Signika-Regular", sans-serif;
    font-size: 12px;
}


/* Inputs */

[b-77qmej0ukv] .seller-input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: "Signika-Regular", sans-serif;
    font-size: 15px;
    outline: none;
}

    [b-77qmej0ukv] .seller-input:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px var(--primary-soft);
    }

[b-77qmej0ukv] .seller-select {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: "Signika-Regular", sans-serif;
    font-size: 15px;
    outline: none;
}

    [b-77qmej0ukv] .seller-select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px var(--primary-soft);
    }

[b-77qmej0ukv] .seller-textarea {
    width: 100%;
    min-height: 110px;
    padding: 13px 14px;
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: "Signika-Regular", sans-serif;
    font-size: 15px;
    resize: vertical;
    outline: none;
}

    [b-77qmej0ukv] .seller-textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px var(--primary-soft);
    }

[b-77qmej0ukv] .validation-message {
    display: block;
    margin-top: 6px;
    color: var(--danger);
    font-family: "Signika-Regular", sans-serif;
    font-size: 13px;
}

.seller-input[b-77qmej0ukv],
.seller-select[b-77qmej0ukv],
.seller-textarea[b-77qmej0ukv] {
    width: 100%;
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: "Signika-Regular", sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.seller-input[b-77qmej0ukv],
.seller-select[b-77qmej0ukv] {
    min-height: 48px;
    padding: 0 14px;
}

.seller-textarea[b-77qmej0ukv] {
    min-height: 110px;
    padding: 13px 14px;
    resize: vertical;
}

    .seller-input[b-77qmej0ukv]::placeholder,
    .seller-textarea[b-77qmej0ukv]::placeholder {
        color: var(--text-muted);
    }

    .seller-input:hover[b-77qmej0ukv],
    .seller-select:hover[b-77qmej0ukv],
    .seller-textarea:hover[b-77qmej0ukv] {
        border-color: #C8D0DA;
    }

    .seller-input:focus[b-77qmej0ukv],
    .seller-select:focus[b-77qmej0ukv],
    .seller-textarea:focus[b-77qmej0ukv] {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px var(--primary-soft);
    }


    /* Blazor validation */

    .seller-input.invalid[b-77qmej0ukv],
    .seller-select.invalid[b-77qmej0ukv],
    .seller-textarea.invalid[b-77qmej0ukv] {
        border-color: var(--danger);
    }

        .seller-input.invalid:focus[b-77qmej0ukv],
        .seller-select.invalid:focus[b-77qmej0ukv],
        .seller-textarea.invalid:focus[b-77qmej0ukv] {
            border-color: var(--danger);
            box-shadow: 0 0 0 3px rgba(194, 65, 65, 0.10);
        }

.validation-message[b-77qmej0ukv] {
    display: block;
    margin-top: 6px;
    color: var(--danger);
    font-family: "Signika-Regular", sans-serif;
    font-size: 13px;
}


/* Grid */

.seller-form-grid[b-77qmej0ukv] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.seller-form-grid-financial[b-77qmej0ukv] {
    display: grid;
    grid-template-columns: 1.3fr 1.3fr 0.8fr;
    gap: 14px;
}


/* Error */

.seller-form-error[b-77qmej0ukv] {
    margin-top: 24px;
    padding: 13px 15px;
    background: #FFF2F2;
    border: 1px solid #F4CACA;
    border-radius: 10px;
    color: var(--danger);
    font-size: 14px;
}


/* Submit */

.seller-form-footer[b-77qmej0ukv] {
    margin-top: 32px;
    padding-top: 26px;
    border-top: 1px solid var(--border-light);
}

.seller-submit-button[b-77qmej0ukv] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 10px;
    background: var(--primary);
    color: #FFFFFF;
    font-family: "Signika-Bold", sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

    .seller-submit-button:hover:not(:disabled)[b-77qmej0ukv] {
        background: var(--primary-hover);
        box-shadow: 0 6px 16px rgba(22, 59, 101, 0.16);
    }

    .seller-submit-button:active:not(:disabled)[b-77qmej0ukv] {
        transform: translateY(1px);
    }

    .seller-submit-button:disabled[b-77qmej0ukv] {
        opacity: 0.65;
        cursor: not-allowed;
    }

.seller-form-note[b-77qmej0ukv] {
    margin: 12px 0 0;
    text-align: center;
    color: var(--text-muted);
    font-family: "Signika-Light", sans-serif;
    font-size: 13px;
}


/* Success */

.seller-success-card[b-77qmej0ukv] {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 54px 36px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.02), 0 8px 24px rgba(16, 24, 40, 0.04);
}

.seller-success-icon[b-77qmej0ukv] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--success);
    font-family: "Signika-Bold", sans-serif;
    font-size: 25px;
}

.seller-success-title[b-77qmej0ukv] {
    margin: 0 0 10px;
    color: var(--text-primary);
    font-family: "Signika-Bold", sans-serif;
    font-size: 27px;
}

.seller-success-description[b-77qmej0ukv] {
    max-width: 500px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.seller-page-footer[b-77qmej0ukv] {
    margin-top: 36px;
    text-align: center;
}

    .seller-page-footer a[b-77qmej0ukv] {
        color: var(--text-muted);
        font-family: "Signika-Regular", sans-serif;
        font-size: 13px;
        text-decoration: none;
        transition: color 0.15s ease;
    }

        .seller-page-footer a:hover[b-77qmej0ukv] {
            color: var(--primary);
        }

/* Mobile */

@media (max-width: 768px) {

    .seller-application-page[b-77qmej0ukv] {
        padding: 40px 16px 60px;
    }

    .seller-application-title[b-77qmej0ukv] {
        font-size: 31px;
    }

    .seller-application-description[b-77qmej0ukv] {
        font-size: 16px;
    }

    .seller-form-card[b-77qmej0ukv] {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .seller-form-grid[b-77qmej0ukv],
    .seller-form-grid-financial[b-77qmej0ukv] {
        grid-template-columns: 1fr;
        gap: 0;
    }

        .seller-form-grid .seller-field[b-77qmej0ukv],
        .seller-form-grid-financial .seller-field[b-77qmej0ukv] {
            margin-bottom: 20px;
        }

    .seller-success-card[b-77qmej0ukv] {
        padding: 42px 24px;
    }
}

@media (max-width: 480px) {

    .seller-application-page[b-77qmej0ukv] {
        padding-left: 12px;
        padding-right: 12px;
    }

    .seller-application-title[b-77qmej0ukv] {
        font-size: 28px;
    }

    .seller-form-card[b-77qmej0ukv] {
        padding: 22px 16px;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* BASE */

*[b-hv83v9vm9t] {
    box-sizing: border-box;
}

.valuation-button[b-hv83v9vm9t] {
    padding: 13px 22px;
    border: 0;
    border-radius: 8px;
    background: var(--success);
    color: white;
    font-family: Signika-Bold;
    font-size: 15px;
    cursor: pointer;
    margin: auto;
    display: block;
}

    .valuation-button:hover[b-hv83v9vm9t] {
        box-shadow: 0 0 10px 0 var(--success);
    }

html[b-hv83v9vm9t] {
    scroll-behavior: smooth;
}

body[b-hv83v9vm9t] {
    margin: 0;
    background: var(--background);
    color: var(--text-primary);
    font-family: Signika-Regular, sans-serif;
}

.landing[b-hv83v9vm9t] {
    min-height: 100vh;
    overflow: hidden;
}

.container[b-hv83v9vm9t] {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* NAV */

.navbar[b-hv83v9vm9t] {
    position: relative;
    z-index: 50;
    background: rgba(246, 248, 251, .95);
    border-bottom: 1px solid var(--border-light);
}

.nav-content[b-hv83v9vm9t] {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand[b-hv83v9vm9t] {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--text-primary);
    text-decoration: none;
    font-family: Signika-Bold, sans-serif;
    font-size: 20px;
}

.brand-logo[b-hv83v9vm9t] {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 12px;
}

.nav-links[b-hv83v9vm9t] {
    display: flex;
    align-items: center;
    gap: 34px;
}

    .nav-links a[b-hv83v9vm9t] {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 15px;
        transition: .2s ease;
    }

        .nav-links a:hover[b-hv83v9vm9t] {
            color: var(--primary);
        }


.insightLink[b-hv83v9vm9t] {
    width: max-content;
    margin: auto;
    display: none;
    font-family: Signika-Bold;
    color: var(--primary);
    background-color: transparent;
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 3px 20px;
    text-decoration: none;
    margin: 20px auto;
}

/* INSIGHTS SUBSCRIBE */

.insights-subscribe[b-hv83v9vm9t] {
    background: var(--surface);
    border-bottom: 1px solid var(--border-light);
}

.insights-subscribe-inner[b-hv83v9vm9t] {
    min-height: 106px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding-top: 19px;
    padding-bottom: 19px;
}

.insights-subscribe-copy[b-hv83v9vm9t] {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 620px;
}

.insights-label[b-hv83v9vm9t] {
    flex-shrink: 0;
    padding: 7px 10px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 6px;
    font-family: Signika-Bold, sans-serif;
    font-size: 10px;
    letter-spacing: .08em;
}

.insights-subscribe-copy strong[b-hv83v9vm9t] {
    display: block;
    color: var(--text-primary);
    font-family: Signika-Bold, sans-serif;
    font-size: 15px;
    line-height: 1.35;
}

.insights-subscribe-copy div > span[b-hv83v9vm9t] {
    display: block;
    margin-top: 4px;
    color: var(--text-secondary);
    font-family: Signika-Light, sans-serif;
    font-size: 13px;
    line-height: 1.4;
}


/* FORM */

.newsletter-form[b-hv83v9vm9t] {
    width: 400px;
    flex-shrink: 0;
}

.newsletter-input-wrapper select[b-hv83v9vm9t] {
    width: 72px;
    flex-shrink: 0;
    padding: 0 10px;
    background: transparent;
    border: 0;
    border-left: 1px solid var(--border);
    outline: 0;
    color: var(--text-primary);
    font-family: Signika-Regular, sans-serif;
    font-size: 13px;
    cursor: pointer;
}

    .newsletter-input-wrapper select:disabled[b-hv83v9vm9t] {
        opacity: .6;
        cursor: default;
    }


.newsletter-input-wrapper[b-hv83v9vm9t] {
    display: flex;
    padding: 4px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

    .newsletter-input-wrapper:focus-within[b-hv83v9vm9t] {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(22, 59, 101, .08);
    }

    .newsletter-input-wrapper input[b-hv83v9vm9t] {
        width: 100%;
        min-width: 0;
        padding: 10px 11px;
        background: transparent;
        border: 0;
        outline: 0;
        color: var(--text-primary);
        font-family: Signika-Regular, sans-serif;
        font-size: 14px;
    }

        .newsletter-input-wrapper input[b-hv83v9vm9t]::placeholder {
            color: var(--text-muted);
        }

        .newsletter-input-wrapper input:disabled[b-hv83v9vm9t] {
            opacity: .6;
        }

    .newsletter-input-wrapper button[b-hv83v9vm9t] {
        flex-shrink: 0;
        padding: 10px 17px;
        background: var(--primary);
        border: 0;
        border-radius: 6px;
        color: #fff;
        cursor: pointer;
        font-family: Signika-Bold, sans-serif;
        font-size: 13px;
        transition: background .2s ease;
    }

        .newsletter-input-wrapper button:hover:not(:disabled)[b-hv83v9vm9t] {
            background: var(--primary-hover);
        }

        .newsletter-input-wrapper button:disabled[b-hv83v9vm9t] {
            opacity: .7;
            cursor: default;
        }

.newsletter-form small[b-hv83v9vm9t] {
    display: block;
    margin-top: 6px;
    color: var(--text-muted);
    font-family: Signika-Light, sans-serif;
    font-size: 10px;
}


/* MESSAGE */

.newsletter-message[b-hv83v9vm9t] {
    margin-top: 6px;
    font-size: 11px;
}

    .newsletter-message.success[b-hv83v9vm9t] {
        color: var(--success);
    }

    .newsletter-message.error[b-hv83v9vm9t] {
        color: var(--danger);
    }


/* SUCCESS */

.newsletter-success[b-hv83v9vm9t] {
    min-width: 350px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    background: var(--accent-soft);
    border-radius: 8px;
}

.newsletter-success-icon[b-hv83v9vm9t] {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    color: #fff;
    font-family: Signika-Bold, sans-serif;
    font-size: 13px;
}

.newsletter-success strong[b-hv83v9vm9t] {
    display: block;
    color: var(--text-primary);
    font-family: Signika-Bold, sans-serif;
    font-size: 13px;
}

.newsletter-success div span[b-hv83v9vm9t] {
    display: block;
    margin-top: 2px;
    color: var(--text-secondary);
    font-size: 11px;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .insights-subscribe-inner[b-hv83v9vm9t] {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .newsletter-form[b-hv83v9vm9t],
    .newsletter-success[b-hv83v9vm9t] {
        width: 100%;
    }
}


@media (max-width: 600px) {
    .newsletter-input-wrapper[b-hv83v9vm9t] {
        grid-template-columns: 1fr 80px;
    }

        .newsletter-input-wrapper input[b-hv83v9vm9t] {
            grid-column: 1;
        }

        .newsletter-input-wrapper select[b-hv83v9vm9t] {
            grid-column: 2;
            width: 100%;
            border-left: 1px solid var(--border);
        }

        .newsletter-input-wrapper button[b-hv83v9vm9t] {
            grid-column: 1 / -1;
        }



    .insights-subscribe-copy[b-hv83v9vm9t] {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .newsletter-input-wrapper[b-hv83v9vm9t] {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
    }

        .newsletter-input-wrapper input[b-hv83v9vm9t] {
            padding: 11px;
        }

        .newsletter-input-wrapper button[b-hv83v9vm9t] {
            width: 100%;
            padding: 12px;
        }

    .newsletter-success[b-hv83v9vm9t] {
        min-width: 0;
    }
}

/* BUTTONS */

.btn[b-hv83v9vm9t] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 12px 20px;
    font-family: Signika-Bold, sans-serif;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    transition: .2s ease;
    border: 1px solid transparent;
}

.btn-primary[b-hv83v9vm9t] {
    color: #fff;
    background: var(--primary);
}

    .btn-primary:hover[b-hv83v9vm9t] {
        background: var(--primary-hover);
        color: #fff;
    }

.btn-secondary[b-hv83v9vm9t] {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text-primary);
}

    .btn-secondary:hover[b-hv83v9vm9t] {
        border-color: var(--primary);
        color: var(--primary);
    }

.btn-light[b-hv83v9vm9t] {
    background: #fff;
    color: var(--primary);
    padding: 14px 22px;
}

    .btn-light:hover[b-hv83v9vm9t] {
        background: var(--primary-soft);
    }

.btn-large[b-hv83v9vm9t] {
    padding: 16px 25px;
    font-size: 16px;
}


/* HERO */

.hero[b-hv83v9vm9t] {
    position: relative;
    padding: 30px 0 110px;
    background: radial-gradient(circle at 90% 20%, rgba(43,111,146,.10), transparent 30%), var(--background);
}

.hero-container[b-hv83v9vm9t] {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(400px, .8fr);
    align-items: center;
    gap: 90px;
    margin-top: 30px;
}

.hero-content[b-hv83v9vm9t] {
    max-width: 670px;
}

.eyebrow[b-hv83v9vm9t],
.section-label[b-hv83v9vm9t] {
    display: inline-block;
    color: var(--secondary);
    font-family: Signika-Bold, sans-serif;
    font-size: 13px;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.eyebrow[b-hv83v9vm9t] {
    padding: 7px 12px;
    background: var(--primary-soft);
    border-radius: 6px;
    margin-bottom: 24px;
}

.hero h1[b-hv83v9vm9t] {
    margin: 0;
    max-width: 650px;
    color: var(--text-primary);
    font-family: Signika-Bold, sans-serif;
    font-size: clamp(48px, 5.2vw, 76px);
    letter-spacing: -.045em;
    line-height: .99;
}

    .hero h1 span[b-hv83v9vm9t] {
        color: var(--primary);
    }

.hero-description[b-hv83v9vm9t] {
    max-width: 610px;
    margin: 27px 0 0;
    color: var(--text-secondary);
    font-family: Signika-Light, sans-serif;
    font-size: 20px;
    line-height: 1.55;
}

.hero-actions[b-hv83v9vm9t] {
    display: flex;
    gap: 12px;
    margin-top: 34px;
}

.hero-note[b-hv83v9vm9t] {
    max-width: 520px;
    margin-top: 19px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}


/* HERO PROCESS */

.hero-panel[b-hv83v9vm9t] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 25px 70px rgba(22, 59, 101, .09);
}

.panel-header[b-hv83v9vm9t] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 21px;
    border-bottom: 1px solid var(--border-light);
}

.panel-label[b-hv83v9vm9t] {
    display: block;
    color: var(--text-muted);
    font-family: Signika-Bold, sans-serif;
    font-size: 10px;
    letter-spacing: .1em;
}

.panel-header h3[b-hv83v9vm9t] {
    margin: 5px 0 0;
    font-family: Signika-Bold, sans-serif;
    font-size: 20px;
}

.verified-badge[b-hv83v9vm9t] {
    padding: 6px 10px;
    color: var(--accent);
    background: var(--accent-soft);
    border-radius: 6px;
    font-family: Signika-Bold, sans-serif;
    font-size: 12px;
}

.process-list[b-hv83v9vm9t] {
    display: flex;
    flex-direction: column;
}

.process-item[b-hv83v9vm9t] {
    display: grid;
    grid-template-columns: 43px 1fr;
    gap: 13px;
    padding: 19px 0;
    border-bottom: 1px solid var(--border-light);
}

    .process-item:last-child[b-hv83v9vm9t] {
        border-bottom: 0;
        padding-bottom: 0;
    }

.process-number[b-hv83v9vm9t] {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: var(--primary-soft);
    color: var(--primary);
    font-family: Signika-Bold, sans-serif;
    font-size: 12px;
}

.process-item strong[b-hv83v9vm9t] {
    display: block;
    font-family: Signika-Bold, sans-serif;
    font-size: 15px;
}

.process-item span[b-hv83v9vm9t] {
    display: block;
    margin-top: 4px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.4;
}


/* TRUST */

.trust-strip[b-hv83v9vm9t] {
    background: var(--surface);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trust-grid[b-hv83v9vm9t] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item[b-hv83v9vm9t] {
    padding: 28px 25px;
    text-align: center;
    border-right: 1px solid var(--border-light);
}

    .trust-item:last-child[b-hv83v9vm9t] {
        border-right: 0;
    }

    .trust-item strong[b-hv83v9vm9t] {
        display: block;
        color: var(--primary);
        font-family: Signika-Bold, sans-serif;
        font-size: 17px;
    }

    .trust-item span[b-hv83v9vm9t] {
        display: block;
        margin-top: 3px;
        color: var(--text-secondary);
        font-size: 13px;
    }


/* SECTIONS */

.section[b-hv83v9vm9t] {
    padding: 110px 0;
}

.section-soft[b-hv83v9vm9t] {
    background: var(--surface);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.section-heading[b-hv83v9vm9t] {
    max-width: 680px;
    margin-bottom: 55px;
}

    .section-heading.narrow[b-hv83v9vm9t] {
        max-width: 610px;
    }

    .section-heading h2[b-hv83v9vm9t],
    .business-copy h2[b-hv83v9vm9t],
    .not-for h2[b-hv83v9vm9t],
    .final-cta h2[b-hv83v9vm9t] {
        margin: 12px 0 0;
        font-family: Signika-Bold, sans-serif;
        font-size: clamp(35px, 4vw, 50px);
        line-height: 1.08;
        letter-spacing: -.025em;
    }

    .section-heading p[b-hv83v9vm9t],
    .business-copy > p[b-hv83v9vm9t],
    .final-cta p[b-hv83v9vm9t] {
        margin: 17px 0 0;
        color: var(--text-secondary);
        font-family: Signika-Light, sans-serif;
        font-size: 18px;
        line-height: 1.6;
    }


/* FEATURES */

.feature-grid[b-hv83v9vm9t] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card[b-hv83v9vm9t] {
    min-height: 240px;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.feature-icon[b-hv83v9vm9t] {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 7px;
    font-family: Signika-Bold, sans-serif;
    font-size: 12px;
}

.feature-card h3[b-hv83v9vm9t] {
    margin: 26px 0 8px;
    font-family: Signika-Bold, sans-serif;
    font-size: 20px;
}

.feature-card p[b-hv83v9vm9t] {
    margin: 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.55;
}


/* STEPS */

.steps[b-hv83v9vm9t] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.step[b-hv83v9vm9t] {
    position: relative;
    padding: 0 28px;
    border-left: 1px solid var(--border);
}

    .step:first-child[b-hv83v9vm9t] {
        padding-left: 0;
        border-left: 0;
    }

    .step > span[b-hv83v9vm9t] {
        color: var(--secondary);
        font-family: Signika-Bold, sans-serif;
        font-size: 13px;
    }

    .step h3[b-hv83v9vm9t] {
        margin: 17px 0 9px;
        font-family: Signika-Bold, sans-serif;
        font-size: 19px;
    }

    .step p[b-hv83v9vm9t] {
        margin: 0;
        color: var(--text-secondary);
        font-size: 14px;
        line-height: 1.55;
    }


/* BUSINESS */

.business-layout[b-hv83v9vm9t] {
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 110px;
    align-items: center;
}

.business-copy[b-hv83v9vm9t] {
    max-width: 480px;
}

    .business-copy h2[b-hv83v9vm9t] {
        margin-top: 15px;
    }

.text-link[b-hv83v9vm9t] {
    display: inline-block;
    margin-top: 27px;
    color: var(--primary);
    font-family: Signika-Bold, sans-serif;
    text-decoration: none;
}

    .text-link:hover[b-hv83v9vm9t] {
        text-decoration: underline;
    }

.business-list[b-hv83v9vm9t] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.business-item[b-hv83v9vm9t] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 19px 22px;
    border-bottom: 1px solid var(--border-light);
}

    .business-item:last-child[b-hv83v9vm9t] {
        border-bottom: 0;
    }

    .business-item > span[b-hv83v9vm9t] {
        width: 27px;
        height: 27px;
        flex: 0 0 27px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--accent-soft);
        color: var(--accent);
        border-radius: 50%;
        font-size: 13px;
    }

    .business-item strong[b-hv83v9vm9t] {
        display: block;
        font-family: Signika-Bold, sans-serif;
        font-size: 16px;
    }

    .business-item small[b-hv83v9vm9t] {
        display: block;
        margin-top: 3px;
        color: var(--text-secondary);
        font-size: 13px;
    }


/* NOT FOR */

.compact-section[b-hv83v9vm9t] {
    padding-top: 0;
}

.not-for[b-hv83v9vm9t] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 50px;
    background: var(--primary-soft);
    border-radius: 14px;
}

    .not-for h2[b-hv83v9vm9t] {
        max-width: 470px;
        font-size: 36px;
    }

.not-for-items[b-hv83v9vm9t] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
}

    .not-for-items span[b-hv83v9vm9t] {
        padding: 12px 14px;
        background: rgba(255,255,255,.75);
        border: 1px solid rgba(22,59,101,.08);
        border-radius: 7px;
        color: var(--text-secondary);
        font-size: 14px;
    }


/* BUYERS */

.section-dark[b-hv83v9vm9t] {
    background: var(--primary);
    color: white;
}

.buyer-layout[b-hv83v9vm9t] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.light-label[b-hv83v9vm9t] {
    color: #9FC2D6;
}

.buyer-layout h2[b-hv83v9vm9t] {
    margin: 13px 0 0;
    font-family: Signika-Bold, sans-serif;
    font-size: clamp(40px, 4vw, 55px);
    line-height: 1.07;
}

.buyer-copy[b-hv83v9vm9t] {
    max-width: 510px;
}

    .buyer-copy p[b-hv83v9vm9t] {
        color: rgba(255,255,255,.72);
        font-family: Signika-Light, sans-serif;
        font-size: 17px;
        line-height: 1.6;
    }

    .buyer-copy .btn[b-hv83v9vm9t] {
        margin-top: 14px;
    }


/* FINAL CTA */

.final-cta[b-hv83v9vm9t] {
    padding: 120px 0;
    background: var(--surface);
    text-align: center;
}

.final-cta-inner[b-hv83v9vm9t] {
    max-width: 720px;
}

.final-cta h2[b-hv83v9vm9t] {
    margin-top: 14px;
}

.final-cta p[b-hv83v9vm9t] {
    max-width: 580px;
    margin: 20px auto 31px;
}


/* FOOTER */

.footer[b-hv83v9vm9t] {
    padding: 34px 0;
    background: var(--background);
    border-top: 1px solid var(--border);
}

.footer-content[b-hv83v9vm9t] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-brand[b-hv83v9vm9t] {
    display: flex;
    align-items: center;
    gap: 11px;
}

.footer-logo[b-hv83v9vm9t] {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 12px;
}

.footer-brand strong[b-hv83v9vm9t] {
    display: block;
    font-family: Signika-Bold, sans-serif;
}

.footer-brand span[b-hv83v9vm9t] {
    display: block;
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 12px;
}

.footer-right[b-hv83v9vm9t] {
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--text-muted);
    font-size: 13px;
}

    .footer-right a[b-hv83v9vm9t] {
        color: var(--text-secondary);
        text-decoration: none;
    }

        .footer-right a:hover[b-hv83v9vm9t] {
            color: var(--primary);
        }


/* RESPONSIVE */

@media (max-width: 1000px) {

    .insightLink[b-hv83v9vm9t] {
        display: block;
    }

    .nav-links[b-hv83v9vm9t] {
        display: none;
    }

    .hero[b-hv83v9vm9t] {
        padding: 70px 0 80px;
    }

    .hero-container[b-hv83v9vm9t] {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .hero-content[b-hv83v9vm9t] {
        max-width: 750px;
    }

    .hero-panel[b-hv83v9vm9t] {
        max-width: 650px;
    }

    .feature-grid[b-hv83v9vm9t] {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps[b-hv83v9vm9t] {
        grid-template-columns: 1fr 1fr;
        gap: 35px 0;
    }

    .step:nth-child(3)[b-hv83v9vm9t],
    .step:nth-child(5)[b-hv83v9vm9t] {
        border-left: 0;
        padding-left: 0;
    }

    .business-layout[b-hv83v9vm9t],
    .buyer-layout[b-hv83v9vm9t],
    .not-for[b-hv83v9vm9t] {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .business-copy[b-hv83v9vm9t] {
        max-width: 650px;
    }

    .not-for-items[b-hv83v9vm9t] {
        max-width: 650px;
    }
}


@media (max-width: 680px) {
    .container[b-hv83v9vm9t] {
        width: min(100% - 32px, 1180px);
    }

    .navbar[b-hv83v9vm9t] {
        background: var(--background);
    }

    .nav-content[b-hv83v9vm9t] {
        height: 68px;
    }

    .brand-logo[b-hv83v9vm9t] {
        width: 34px;
        height: 34px;
    }

    .brand span[b-hv83v9vm9t] {
        font-size: 18px;
    }

    .nav-button[b-hv83v9vm9t] {
        padding: 10px 13px;
        font-size: 13px;
    }

    .hero[b-hv83v9vm9t] {
        padding: 55px 0 65px;
    }

        .hero h1[b-hv83v9vm9t] {
            font-size: 48px;
        }

    .hero-description[b-hv83v9vm9t] {
        font-size: 18px;
    }

    .hero-actions[b-hv83v9vm9t] {
        flex-direction: column;
    }

        .hero-actions .btn[b-hv83v9vm9t] {
            width: 100%;
        }

    .hero-panel[b-hv83v9vm9t] {
        padding: 20px;
    }

    .trust-grid[b-hv83v9vm9t] {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item:nth-child(2)[b-hv83v9vm9t] {
        border-right: 0;
    }

    .trust-item:nth-child(-n+2)[b-hv83v9vm9t] {
        border-bottom: 1px solid var(--border-light);
    }

    .section[b-hv83v9vm9t] {
        padding: 75px 0;
    }

    .section-heading[b-hv83v9vm9t] {
        margin-bottom: 38px;
    }

        .section-heading h2[b-hv83v9vm9t],
        .business-copy h2[b-hv83v9vm9t],
        .final-cta h2[b-hv83v9vm9t] {
            font-size: 36px;
        }

    .feature-grid[b-hv83v9vm9t] {
        grid-template-columns: 1fr;
    }

    .feature-card[b-hv83v9vm9t] {
        min-height: auto;
    }

    .steps[b-hv83v9vm9t] {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .step[b-hv83v9vm9t],
    .step:first-child[b-hv83v9vm9t],
    .step:nth-child(3)[b-hv83v9vm9t],
    .step:nth-child(5)[b-hv83v9vm9t] {
        padding: 25px 0;
        border-left: 0;
        border-bottom: 1px solid var(--border);
    }

        .step:last-child[b-hv83v9vm9t] {
            border-bottom: 0;
        }

    .business-layout[b-hv83v9vm9t] {
        gap: 35px;
    }

    .not-for[b-hv83v9vm9t] {
        padding: 30px 24px;
    }

        .not-for h2[b-hv83v9vm9t] {
            font-size: 31px;
        }

    .not-for-items[b-hv83v9vm9t] {
        grid-template-columns: 1fr;
    }

    .buyer-layout[b-hv83v9vm9t] {
        gap: 28px;
    }

        .buyer-layout h2[b-hv83v9vm9t] {
            font-size: 40px;
        }

    .final-cta[b-hv83v9vm9t] {
        padding: 80px 0;
    }

    .footer-content[b-hv83v9vm9t] {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-right[b-hv83v9vm9t] {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .valuation-button[b-hv83v9vm9t] {
        width: 90%;
    }
}
/* /Components/Pages/InsightCategory.razor.rz.scp.css */
.category-page[b-frckb7lz23] {
    min-height: 100vh;
    background: var(--background);
    color: var(--text-primary);
}

.category-container[b-frckb7lz23] {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* HEADER */

.category-header[b-frckb7lz23] {
    padding: 70px 0 58px;
    border-bottom: 1px solid var(--border);
}

.category-back[b-frckb7lz23] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 45px;
    font-family: 'Signika-Regular';
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
}

    .category-back:hover[b-frckb7lz23] {
        color: var(--primary);
    }

.category-eyebrow[b-frckb7lz23] {
    display: block;
    margin-bottom: 13px;
    font-family: 'Signika-Bold';
    font-size: 12px;
    letter-spacing: .11em;
    color: var(--primary);
}

.category-header h1[b-frckb7lz23] {
    max-width: 850px;
    margin: 0;
    font-family: 'Signika-Bold';
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -.025em;
    color: var(--text-primary);
}

.category-header p[b-frckb7lz23] {
    max-width: 720px;
    margin: 22px 0 0;
    font-family: 'Signika-Light';
    font-size: 19px;
    line-height: 1.65;
    color: var(--text-secondary);
}

.category-count[b-frckb7lz23] {
    margin-top: 26px;
    font-family: 'Signika-Regular';
    font-size: 14px;
    color: var(--text-secondary);
}


/* CONTENT */

.category-content[b-frckb7lz23] {
    padding: 58px 0 90px;
}

.category-grid[b-frckb7lz23] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}


/* EMPTY */

.category-empty[b-frckb7lz23] {
    max-width: 650px;
    padding: 55px 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 17px;
}

    .category-empty h2[b-frckb7lz23] {
        margin: 0 0 10px;
        font-family: 'Signika-Bold';
        font-size: 27px;
        color: var(--text-primary);
    }

    .category-empty p[b-frckb7lz23] {
        margin: 0;
        font-family: 'Signika-Light';
        font-size: 16px;
        line-height: 1.6;
        color: var(--text-secondary);
    }


/* LOADING */

.category-state[b-frckb7lz23] {
    padding: 120px 0;
    font-family: 'Signika-Regular';
    text-align: center;
    color: var(--text-secondary);
}


/* NOT FOUND */

.category-not-found[b-frckb7lz23] {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

    .category-not-found h1[b-frckb7lz23] {
        margin: 14px 0;
        font-family: 'Signika-Bold';
        font-size: 48px;
        color: var(--text-primary);
    }

    .category-not-found p[b-frckb7lz23] {
        max-width: 600px;
        margin: 0 0 28px;
        font-family: 'Signika-Light';
        font-size: 18px;
        line-height: 1.6;
        color: var(--text-secondary);
    }

.category-back-link[b-frckb7lz23] {
    display: inline-flex;
    gap: 8px;
    font-family: 'Signika-Bold';
    color: var(--primary);
    text-decoration: none;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .category-grid[b-frckb7lz23] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 650px) {

    .category-container[b-frckb7lz23] {
        width: calc(100% - 32px);
    }

    .category-header[b-frckb7lz23] {
        padding: 44px 0 38px;
    }

    .category-back[b-frckb7lz23] {
        margin-bottom: 32px;
    }

    .category-header h1[b-frckb7lz23] {
        font-size: 39px;
    }

    .category-header p[b-frckb7lz23] {
        font-size: 17px;
    }

    .category-content[b-frckb7lz23] {
        padding: 40px 0 65px;
    }

    .category-grid[b-frckb7lz23] {
        grid-template-columns: 1fr;
    }

    .category-empty[b-frckb7lz23] {
        padding: 38px 25px;
    }
}
/* /Components/Pages/InsightDetail.razor.rz.scp.css */
.brand[b-70nwh8f0pg] {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--text-primary);
    text-decoration: none;
    font-family: Signika-Bold, sans-serif;
    font-size: 20px;
    width: max-content;
}

.brand-logo[b-70nwh8f0pg] {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 12px;
}

.article-page[b-70nwh8f0pg] {
    min-height: 100vh;
    background: var(--background);
    color: var(--text-primary);
}

.article-container[b-70nwh8f0pg] {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.article-content-container[b-70nwh8f0pg] {
    width: min(760px, calc(100% - 48px));
    margin: 0 auto;
}


/* HEADER */

.article-header[b-70nwh8f0pg] {
    padding: 72px 0 52px;
}

.article-header-inner[b-70nwh8f0pg] {
    max-width: 960px;
}

.article-back[b-70nwh8f0pg] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 48px;
    font-family: 'Signika-Regular';
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color .2s ease;
    margin-top: 20px;
}

    .article-back:hover[b-70nwh8f0pg] {
        color: var(--primary);
    }

.article-meta[b-70nwh8f0pg] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 18px;
    font-family: 'Signika-Regular';
    font-size: 14px;
    color: var(--text-secondary);
}

.article-category[b-70nwh8f0pg] {
    font-family: 'Signika-Bold';
    color: var(--primary);
    text-decoration: none;
}

    .article-category:hover[b-70nwh8f0pg] {
        text-decoration: underline;
    }

.article-header h1[b-70nwh8f0pg] {
    max-width: 900px;
    margin: 0;
    font-family: 'Signika-Bold';
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -.025em;
    color: var(--text-primary);
}

.article-excerpt[b-70nwh8f0pg] {
    max-width: 800px;
    margin: 24px 0 0;
    font-family: 'Signika-Light';
    font-size: 21px;
    line-height: 1.55;
    color: var(--text-secondary);
}


/* COVER */

.article-cover[b-70nwh8f0pg] {
    width: 100%;
    max-height: 620px;
    overflow: hidden;
    border-radius: 22px;
    background: var(--surface);
}

    .article-cover img[b-70nwh8f0pg] {
        display: block;
        width: 100%;
        height: 100%;
        max-height: 620px;
        object-fit: cover;
    }


/* BODY */

.article-body-section[b-70nwh8f0pg] {
    padding: 72px 0 80px;
}

.article-content[b-70nwh8f0pg] {
    font-family: 'Signika-Light';
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
}


    /* Markdown H1 */

    .article-content[b-70nwh8f0pg]  h1 {
        margin: 58px 0 22px;
        font-family: 'Signika-Bold';
        font-size: 38px;
        line-height: 1.15;
        color: var(--text-primary);
    }


    /* Markdown H2 */

    .article-content[b-70nwh8f0pg]  h2 {
        margin: 54px 0 20px;
        font-family: 'Signika-Bold';
        font-size: 31px;
        line-height: 1.2;
        color: var(--text-primary);
    }


    /* Markdown H3 */

    .article-content[b-70nwh8f0pg]  h3 {
        margin: 40px 0 16px;
        font-family: 'Signika-Bold';
        font-size: 24px;
        line-height: 1.3;
        color: var(--text-primary);
    }


    /* Paragraph */

    .article-content[b-70nwh8f0pg]  p {
        margin: 0 0 26px;
    }


    /* Strong */

    .article-content[b-70nwh8f0pg]  strong {
        font-family: 'Signika-Bold';
    }


    /* Links */

    .article-content[b-70nwh8f0pg]  a {
        color: var(--primary);
        text-decoration-thickness: 1px;
        text-underline-offset: 3px;
    }


    /* Lists */

    .article-content[b-70nwh8f0pg]  ul,
    .article-content[b-70nwh8f0pg]  ol {
        margin: 0 0 28px;
        padding-left: 26px;
    }

    .article-content[b-70nwh8f0pg]  li {
        margin-bottom: 9px;
    }

        .article-content[b-70nwh8f0pg]  li::marker {
            color: var(--primary);
        }


    /* Blockquote */

    .article-content[b-70nwh8f0pg]  blockquote {
        margin: 38px 0;
        padding: 22px 26px;
        background: var(--primary-soft);
        border-left: 4px solid var(--primary);
        border-radius: 0 12px 12px 0;
    }

        .article-content[b-70nwh8f0pg]  blockquote p {
            margin: 0;
            font-family: 'Signika-Regular';
            font-size: 18px;
        }


    /* Horizontal Rule */

    .article-content[b-70nwh8f0pg]  hr {
        margin: 50px 0;
        border: none;
        border-top: 1px solid var(--border);
    }


    /* Inline Code */

    .article-content[b-70nwh8f0pg]  code {
        padding: 2px 7px;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 5px;
        font-size: .88em;
    }


    /* Code block */

    .article-content[b-70nwh8f0pg]  pre {
        overflow-x: auto;
        margin: 32px 0;
        padding: 22px;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 14px;
    }

        .article-content[b-70nwh8f0pg]  pre code {
            padding: 0;
            border: none;
            background: transparent;
        }


    /* TABLE */

    .article-content[b-70nwh8f0pg]  table {
        width: 100%;
        margin: 34px 0;
        border-collapse: collapse;
        font-size: 16px;
    }

    .article-content[b-70nwh8f0pg]  th {
        font-family: 'Signika-Bold';
        background: var(--surface);
    }

    .article-content[b-70nwh8f0pg]  th,
    .article-content[b-70nwh8f0pg]  td {
        padding: 13px 15px;
        border: 1px solid var(--border);
        text-align: left;
    }


    /* IMAGES INSIDE MARKDOWN */

    .article-content[b-70nwh8f0pg]  img {
        display: block;
        max-width: 100%;
        margin: 36px auto;
        border-radius: 14px;
    }


/* CTA */

.article-cta-section[b-70nwh8f0pg] {
    padding: 20px 0 80px;
}

.article-cta[b-70nwh8f0pg] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 50px;
    padding: 48px 52px;
    background: var(--primary);
    border-radius: 22px;
}

.article-cta-eyebrow[b-70nwh8f0pg] {
    display: block;
    margin-bottom: 12px;
    font-family: 'Signika-Bold';
    font-size: 12px;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .65);
}

.article-cta h2[b-70nwh8f0pg] {
    max-width: 650px;
    margin: 0 0 12px;
    font-family: 'Signika-Bold';
    font-size: 32px;
    line-height: 1.15;
    color: #fff;
}

.article-cta p[b-70nwh8f0pg] {
    max-width: 650px;
    margin: 0;
    font-family: 'Signika-Light';
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .76);
}

.article-cta-button[b-70nwh8f0pg] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 190px;
    padding: 15px 21px;
    border: none;
    border-radius: 10px;
    background: var(--background);
    font-family: 'Signika-Bold';
    font-size: 15px;
    color: var(--primary);
    cursor: pointer;
    transition: transform .2s ease, opacity .2s ease;
}

    .article-cta-button:hover[b-70nwh8f0pg] {
        transform: translateY(-2px);
    }

    .article-cta-button span[b-70nwh8f0pg] {
        font-size: 20px;
    }


/* FOOTER */

.article-footer[b-70nwh8f0pg] {
    padding: 0 0 90px;
}

.article-footer-link[b-70nwh8f0pg] {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'Signika-Regular';
    font-size: 15px;
    color: var(--primary);
    text-decoration: none;
}


/* STATE */

.article-state[b-70nwh8f0pg] {
    padding: 140px 24px;
    font-family: 'Signika-Regular';
    text-align: center;
    color: var(--text-secondary);
}

.article-not-found[b-70nwh8f0pg] {
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.article-eyebrow[b-70nwh8f0pg] {
    font-family: 'Signika-Bold';
    font-size: 12px;
    letter-spacing: .1em;
    color: var(--primary);
}

.article-not-found h1[b-70nwh8f0pg] {
    margin: 14px 0;
    font-family: 'Signika-Bold';
    font-size: 48px;
    color: var(--text-primary);
}

.article-not-found p[b-70nwh8f0pg] {
    max-width: 580px;
    margin-bottom: 28px;
    font-family: 'Signika-Light';
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.article-back-button[b-70nwh8f0pg] {
    display: inline-flex;
    gap: 8px;
    font-family: 'Signika-Bold';
    color: var(--primary);
    text-decoration: none;
}


/* RESPONSIVE */

@media (max-width: 850px) {

    .article-cta[b-70nwh8f0pg] {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .article-cta-action[b-70nwh8f0pg] {
        justify-self: start;
    }
}


@media (max-width: 650px) {

    .article-container[b-70nwh8f0pg],
    .article-content-container[b-70nwh8f0pg] {
        width: min(100% - 32px, 1180px);
    }

    .article-header[b-70nwh8f0pg] {
        padding: 44px 0 36px;
    }

    .article-back[b-70nwh8f0pg] {
        margin-bottom: 34px;
    }

    .article-header h1[b-70nwh8f0pg] {
        font-size: 38px;
    }

    .article-excerpt[b-70nwh8f0pg] {
        font-size: 18px;
    }

    .article-cover[b-70nwh8f0pg] {
        border-radius: 14px;
    }

    .article-body-section[b-70nwh8f0pg] {
        padding: 48px 0 58px;
    }

    .article-content[b-70nwh8f0pg] {
        font-size: 17px;
        line-height: 1.75;
    }

        .article-content[b-70nwh8f0pg]  h1 {
            font-size: 31px;
        }

        .article-content[b-70nwh8f0pg]  h2 {
            margin-top: 44px;
            font-size: 27px;
        }

        .article-content[b-70nwh8f0pg]  h3 {
            font-size: 22px;
        }

        .article-content[b-70nwh8f0pg]  table {
            display: block;
            overflow-x: auto;
        }

    .article-cta[b-70nwh8f0pg] {
        padding: 30px 26px;
    }

        .article-cta h2[b-70nwh8f0pg] {
            font-size: 27px;
        }

    .article-cta-button[b-70nwh8f0pg] {
        width: 100%;
    }

    .article-footer[b-70nwh8f0pg] {
        padding-bottom: 60px;
    }
}
/* /Components/Pages/Insights.razor.rz.scp.css */
.brand[b-8nhslk3r9g] {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--text-primary);
    text-decoration: none;
    font-family: Signika-Bold, sans-serif;
    font-size: 20px;
    width: max-content;
}

.brand-logo[b-8nhslk3r9g] {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 12px;
}

.insights-page[b-8nhslk3r9g] {
    min-height: 100vh;
    background: var(--background);
    color: var(--text-primary);
}

.insights-container[b-8nhslk3r9g] {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* HERO */

.insights-hero[b-8nhslk3r9g] {
    padding: 100px 0 72px;
}

.insights-eyebrow[b-8nhslk3r9g]{
    margin-top: 20px;
}

.insights-eyebrow[b-8nhslk3r9g],
.section-eyebrow[b-8nhslk3r9g] {
    display: block;
    margin-bottom: 14px;
    font-family: 'Signika-Bold';
    font-size: 12px;
    letter-spacing: .11em;
    color: var(--primary);
}

.insights-hero h1[b-8nhslk3r9g] {
    max-width: 820px;
    margin: 0;
    font-family: 'Signika-Bold';
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.03;
    letter-spacing: -.025em;
    color: var(--text-primary);
}

.insights-hero p[b-8nhslk3r9g] {
    max-width: 720px;
    margin: 24px 0 0;
    font-family: 'Signika-Light';
    font-size: 19px;
    line-height: 1.65;
    color: var(--text-secondary);
}


/* SECTIONS */

.insights-section[b-8nhslk3r9g],
.featured-section[b-8nhslk3r9g] {
    padding: 42px 0 72px;
}

.category-section[b-8nhslk3r9g] {
    border-top: 1px solid var(--border);
}

.section-heading[b-8nhslk3r9g] {
    margin-bottom: 20px;
    font-family: 'Signika-Bold';
    font-size: 13px;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--primary);
}

.section-header[b-8nhslk3r9g] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 28px;
}

    .section-header h2[b-8nhslk3r9g] {
        margin: 0;
        font-family: 'Signika-Bold';
        font-size: 34px;
        line-height: 1.1;
        color: var(--text-primary);
    }

.section-link[b-8nhslk3r9g] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 3px;
    font-family: 'Signika-Regular';
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
}

    .section-link span[b-8nhslk3r9g] {
        font-size: 19px;
        transition: transform .2s ease;
    }

    .section-link:hover span[b-8nhslk3r9g] {
        transform: translateX(4px);
    }


/* GRID */

.insight-grid[b-8nhslk3r9g] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}


/* EMPTY / LOADING */

.insights-loading[b-8nhslk3r9g] {
    padding: 80px 0;
    font-family: 'Signika-Regular';
    text-align: center;
    color: var(--text-secondary);
}

.insights-empty[b-8nhslk3r9g] {
    max-width: 650px;
    margin: 20px auto 120px;
    padding: 60px 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
}

    .insights-empty h2[b-8nhslk3r9g] {
        margin: 0 0 12px;
        font-family: 'Signika-Bold';
        font-size: 26px;
        color: var(--text-primary);
    }

    .insights-empty p[b-8nhslk3r9g] {
        margin: 0;
        font-family: 'Signika-Light';
        font-size: 16px;
        line-height: 1.6;
        color: var(--text-secondary);
    }


/* RESPONSIVE */

@media (max-width: 950px) {

    .insight-grid[b-8nhslk3r9g] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 650px) {

    .insights-container[b-8nhslk3r9g] {
        width: min(100% - 32px, 1180px);
    }

    .insights-hero[b-8nhslk3r9g] {
        padding: 65px 0 42px;
    }

        .insights-hero h1[b-8nhslk3r9g] {
            font-size: 39px;
        }

        .insights-hero p[b-8nhslk3r9g] {
            margin-top: 18px;
            font-size: 17px;
        }

    .insights-section[b-8nhslk3r9g],
    .featured-section[b-8nhslk3r9g] {
        padding: 30px 0 52px;
    }

    .section-header[b-8nhslk3r9g] {
        align-items: center;
    }

        .section-header h2[b-8nhslk3r9g] {
            font-size: 28px;
        }

    .insight-grid[b-8nhslk3r9g] {
        grid-template-columns: 1fr;
    }

    .section-eyebrow[b-8nhslk3r9g] {
        margin-bottom: 8px;
    }
}
/* /Components/Pages/ValuationPopup.razor.rz.scp.css */
.valuation-overlay[b-f56he87tx1] {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(10, 24, 40, 0.72);
    backdrop-filter: blur(4px);
}

.valuation-popup[b-f56he87tx1] {
    position: relative;
    width: 100%;
    max-width: 720px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--text-primary);
    font-family: Signika-Regular;
}

.close-button[b-f56he87tx1] {
    position: absolute;
    top: 14px;
    right: 16px;
    border: 0;
    background: transparent;
    color: var(--text-secondary);
    font-family: Signika-Regular;
    font-size: 28px;
    cursor: pointer;
}

    .close-button:hover[b-f56he87tx1] {
        color: var(--primary);
    }

.valuation-header[b-f56he87tx1] {
    margin-bottom: 28px;
}

.valuation-label[b-f56he87tx1] {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-family: Signika-Bold;
    font-size: 12px;
    letter-spacing: 1.2px;
}

.valuation-header h2[b-f56he87tx1],
.valuation-success h2[b-f56he87tx1] {
    margin: 0 0 10px;
    color: var(--text-primary);
    font-family: Signika-Bold;
    font-size: 30px;
}

.valuation-header p[b-f56he87tx1],
.valuation-success p[b-f56he87tx1] {
    margin: 0;
    color: var(--text-secondary);
    font-family: Signika-Light;
    font-size: 15px;
    line-height: 1.55;
}

.valuation-form[b-f56he87tx1] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group[b-f56he87tx1] {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.full[b-f56he87tx1] {
    grid-column: 1 / -1;
}

.form-group label[b-f56he87tx1] {
    color: var(--text-primary);
    font-family: Signika-Bold;
    font-size: 14px;
}

.optional[b-f56he87tx1] {
    margin-left: 4px;
    color: var(--text-secondary);
    font-family: Signika-Light;
    font-size: 12px;
}

.form-control[b-f56he87tx1] {
    width: 100%;
    height: 46px;
    padding: 0 13px;
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
    background: var(--background);
    color: var(--text-primary);
    font-family: Signika-Regular;
    font-size: 14px;
    transition: 0.15s;
}

    .form-control:focus[b-f56he87tx1] {
        border-color: var(--primary);
    }

.currency-info[b-f56he87tx1] {
    margin-top: -7px;
    color: var(--text-secondary);
    font-family: Signika-Light;
    font-size: 12px;
}

.form-divider[b-f56he87tx1] {
    grid-column: 1 / -1;
    height: 1px;
    margin: 4px 0;
    background: var(--border);
}

.submit-button[b-f56he87tx1] {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 8px;
    background: var(--primary);
    color: var(--surface);
    font-family: Signika-Bold;
    font-size: 15px;
    cursor: pointer;
    transition: 0.15s;
}

    .submit-button:hover:not(:disabled)[b-f56he87tx1] {
        background: var(--primary-hover);
    }

    .submit-button:disabled[b-f56he87tx1] {
        opacity: 0.6;
        cursor: default;
    }

.result-info[b-f56he87tx1] {
    margin-top: 10px;
    color: var(--text-secondary);
    font-family: Signika-Light;
    font-size: 12px;
    text-align: center;
}

.validation-message[b-f56he87tx1],
.error-message[b-f56he87tx1] {
    color: #b42318;
    font-family: Signika-Regular;
    font-size: 12px;
}

.error-message[b-f56he87tx1] {
    padding: 10px 12px;
    border-radius: 8px;
    background: #fef3f2;
}

.valuation-success[b-f56he87tx1] {
    padding: 35px 10px 15px;
    text-align: center;
}

.success-icon[b-f56he87tx1] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--background);
    color: var(--primary);
    font-family: Signika-Bold;
    font-size: 24px;
}

.valuation-success p[b-f56he87tx1] {
    margin-bottom: 25px;
}

@media (max-width: 650px) {

    .valuation-overlay[b-f56he87tx1] {
        align-items: flex-start;
        padding: 10px;
    }

    .valuation-popup[b-f56he87tx1] {
        max-height: calc(100vh - 20px);
        padding: 32px 20px 24px;
    }

    .valuation-form[b-f56he87tx1] {
        grid-template-columns: 1fr;
    }

    .full[b-f56he87tx1],
    .form-divider[b-f56he87tx1] {
        grid-column: auto;
    }

    .valuation-header h2[b-f56he87tx1],
    .valuation-success h2[b-f56he87tx1] {
        font-size: 26px;
    }
}
