:root {
    --hn-font: system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

body {
    font-family: var(--hn-font);
}

:root {
    --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

body {
    font-family: var(--font-sans);
}

.money, .currency, .kpi-value, .card .display-6, .card .fs-1, .card .fs-2, .card .fs-3, .card .fs-4 {
    font-family: var(--font-sans);
}
/* Checklist UI */
.hn-checklist-card {
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .hn-checklist-card:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 24px rgba(0,0,0,.06);
    }

.hn-checklist-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.hn-muted {
    color: rgba(0,0,0,.55);
}

.hn-note {
    min-height: 44px;
}
