can_use(plan, feature) given the entitlement map — free: export_csv; pro adds api_access, custom_reports; enterprise adds sso, audit_log. Higher plans include everything below. Return a boolean.can_use('pro', 'export_csv')True
Pro inherits every free feature.
can_use('pro', 'sso')False
SSO is enterprise-only.
An ordered list of (plan, features) lets you accumulate.
Union sets up to the requested plan.