.pill {
    display: inline-block;
    padding: .5rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .9rem;
    color: #fff;
}

.card-soft {
    border-radius: 1.25rem;
    border: 1px solid #eef0f2;
    background: #fff;
    transition: all .25s ease;
    will-change: transform, box-shadow;
}

.card-soft:hover {
    transform: translateY(-2px);
    box-shadow: 0 .75rem 2rem rgba(0, 0, 0, .08);
    border-color: #e6e8eb;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-xl {
    padding: 1rem 1.5rem;
    border-radius: 14px;
    font-weight: 700;
}

.section-pad {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.card-link:hover {
    text-decoration: none;
    color: inherit;
}

/* UX */
.card-link:hover .card-soft {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
    cursor: pointer;
}

.card-link:focus-visible .card-soft {
    outline: 3px solid rgba(0, 72, 70, .35);
    outline-offset: 4px;
}