body.page-salary-check {
    background: #f9f9f9;
}

body.page-salary-check header nav,
body.page-salary-check .session-btns,
body.page-salary-check .small-menu,
body.page-salary-check .small-menu-content,
body.page-salary-check footer {
    display: none;
}

body.page-salary-check header {
    border-bottom: none;
}

.salary-check-shell {
    max-width: 760px;
    margin: 0 auto;
    padding: 24px 16px 48px;
}

.salary-check-hero h1 {
    margin: 0 0 8px;
    font-size: 2rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.salary-check-hero p {
    margin: 0 0 16px;
    color: #475569;
    font-size: 1rem;
}

.salary-check-form {
    display: block;
}

.salary-check-label {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 6px;
}

.salary-check-form-row {
    display: flex;
    gap: 10px;
}

.salary-check-input {
    flex: 1;
    min-height: 46px;
    border: 1px solid #d9e0e8;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 1rem;
    background: #fff;
}

.salary-submit-btn {
    min-height: 46px;
    border: 0;
    border-radius: 10px;
    background: #0f172a;
    color: #fff;
    font-weight: 600;
    padding: 0 18px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 180ms ease, transform 180ms ease;
}

.salary-submit-btn:hover {
    background: #1e293b;
}

.salary-submit-btn:active {
    transform: translateY(1px);
}

.salary-check-result {
    margin-top: 18px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
    transition: opacity 220ms ease, transform 220ms ease;
}

.salary-check-result.hidden {
    display: none;
}

.salary-check-result.visible-loading .salary-check-card {
    display: none;
}

.salary-check-result:not(.visible-loading) .salary-check-loader-wrap {
    display: none;
}

.salary-check-loader-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    min-height: 80px;
}

.salary-check-loader-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2abb51;
    animation: salary-check-pulse 900ms infinite ease-in-out;
}

@keyframes salary-check-pulse {
    0%, 100% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

.salary-check-card {
    opacity: 1;
    transform: translateY(0);
}

.salary-check-assistant {
    margin-top: 10px;
    padding: 10px 12px;
    border: 1px solid #dbe6f1;
    border-radius: 10px;
    background: #f8fbff;
}

.salary-assistant-lead {
    margin: 0;
    color: #0f172a;
    font-weight: 500;
}

.salary-assistant-followup {
    margin: 4px 0 0;
    color: #475569;
}

.salary-check-result.reveal .salary-check-card {
    animation: salary-check-reveal 260ms ease;
}

@keyframes salary-check-reveal {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.salary-check-headline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.salary-check-headline-row h2 {
    margin: 0;
    font-size: 1.1rem;
}

.salary-check-toggle {
    display: inline-flex;
    border: 1px solid #d9e0e8;
    border-radius: 999px;
    overflow: hidden;
}

.salary-toggle-btn {
    border: 0;
    background: transparent;
    font-size: 0.8rem;
    padding: 6px 10px;
    color: #475569;
    cursor: pointer;
}

.salary-toggle-btn.active {
    background: #0f172a;
    color: #fff;
}

.salary-check-range {
    margin: 12px 0 4px;
    font-size: 1.8rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.salary-check-indicator,
.salary-check-confidence,
.salary-check-explanation {
    margin: 4px 0;
    color: #334155;
}

.salary-check-refinements {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
}

.salary-refine-question {
    margin: 0 0 8px;
    color: #334155;
}

.salary-refine-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.salary-refine-btn {
    border: 1px solid #d5deea;
    background: #fff;
    color: #0f172a;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 0.84rem;
    cursor: pointer;
    transition: all 180ms ease;
}

.salary-refine-btn:hover {
    border-color: #2abb51;
    color: #1d7d38;
    background: #f3fcf6;
}

.salary-check-actions {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.salary-primary-btn,
.salary-secondary-btn {
    min-height: 42px;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 180ms ease;
}

.salary-primary-btn {
    border: 0;
    background: #2abb51;
    color: #08200e;
    font-weight: 600;
    flex: 1 1 260px;
}

.salary-primary-btn:hover {
    background: #24a546;
}

.salary-secondary-btn {
    border: 1px solid #d3dce8;
    background: #fff;
    color: #0f172a;
    flex: 0 0 auto;
}

.salary-secondary-btn:hover {
    border-color: #9fb3c8;
    background: #f8fafc;
}

.salary-check-feedback {
    margin: 8px 0 0;
    color: #64748b;
    font-size: 0.84rem;
    min-height: 1rem;
}

@media (max-width: 680px) {
    .salary-check-shell {
        padding: 18px 12px 28px;
    }

    .salary-check-hero h1 {
        font-size: 1.55rem;
    }

    .salary-check-form-row {
        flex-direction: column;
    }

    .salary-submit-btn,
    .salary-primary-btn,
    .salary-secondary-btn {
        width: 100%;
    }

    .salary-check-range {
        font-size: 1.45rem;
    }
}
