/* ---- Checklist mockup (tasks) ---- */
.feature-page .feature-mock-checklist {
    padding: var(--h-space-5);
}

.feature-page .feature-mock-checklist-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.feature-page .feature-mock-checklist-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--h-navy);
}

.feature-page .feature-mock-checklist-progress {
    font-family: var(--h-font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--h-teal);
    font-variant-numeric: tabular-nums;
}

.feature-page .feature-mock-checklist-bar {
    height: 6px;
    background: var(--h-gray-100);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: var(--h-space-4);
}

.feature-page .feature-mock-checklist-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--h-teal), #34d399);
    border-radius: 999px;
}

.feature-page .feature-mock-checklist-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--h-space-1);
}

.feature-page .feature-mock-checklist-items li {
    display: grid;
    grid-template-columns: 20px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: var(--h-space-2) 10px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--h-navy);
}

.feature-page .feature-mock-checklist-items li ion-icon {
    color: var(--h-gray-300);
    font-size: 18px;
}

.feature-page .feature-mock-checklist-items li.is-done {
    color: var(--h-text-muted);
}

.feature-page .feature-mock-checklist-items li.is-done ion-icon {
    color: var(--h-teal);
}

.feature-page .feature-mock-checklist-items li.is-doing {
    background: var(--h-blue-pale);
    font-weight: 600;
}

.feature-page .feature-mock-checklist-items li.is-doing ion-icon {
    color: var(--h-blue-myhr);
}

.feature-page .feature-mock-checklist-who {
    font-size: 10.5px;
    font-weight: 700;
    padding: 2px var(--h-space-2);
    border-radius: 999px;
    background: var(--h-gray-100);
    color: var(--h-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

